green-spider/checks/abstract_checker.py
Marian Steinbach d0e3a4210f
Fix link raters (social media links, contact link) (#95)
* Fix rating for contact_link and social_media_link

* Skip checks when dependencies not met
2018-11-28 23:46:40 +01:00

31 lines
820 B
Python

class AbstractChecker(object):
"""
Our blueprint for checks
"""
def __init__(self, config, previous_results=None):
self._config = config
# A dictionary of results from previous checkers.
# Key is the name of the checker that has generated the result.
self._previous_results = previous_results
def depends_on_results(self):
"""
Should return the name(s) of checks this one depends on.
Empty list means this check has no prerequisites.
"""
return []
def run(self):
"""Executes the check routine, returns result dict"""
raise NotImplementedError()
@property
def config(self):
return self._config
@property
def previous_results(self):
return self._previous_results