Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Engine for creating and running validations for general purposes.
Source | Downloads | Page | Installation Command |
---|---|---|---|
PyPi | Link | pip install validations-engine |
Develop | Stable | Documentation | Sonar |
---|---|---|---|
This automation engine was conceived to simulate key communication/integration lines between services that compose the core jobs of the data engineering pipeline at QuintoAndar, to guarantee there is no failures in the pipeline (and early catch eventual failures). But it can execute validations for general purposes.
This engine is composed by the Executors and the ValidationSuites.
Executors
Executors are responsible for executing all the respective validation suites that inherit them.
A suite can inherit a custom executor or the BaseValidationSuitesExecutor
.
The executor may contain default and generic code and tests for a group of suites. For example, we may have one executor
with features for validating a group of Databases and another for validating some APIs.
Validation Suites
A validation suite works like a Python unit test class. Once you define the validation methods (following the name pattern), these methods will be run by the engine.
Inside the validation suite class, you may implement into the validation methods the validations you want to perform.
You can implement a custom validation inside your suite or if it is a common validation you may want to generalize it
and use a custom executor like DatabaseValidationSuitesExecutor
for sharing the same validation among other suites that inherits it.
Every suite must inherit from an executor, in order to be parsed and run. So it should inherit from the
BaseValidationSuitesExecutor
or from a custom one (that inherits from the base executor).
The validation_*
methods inside the suite and inside the executor classes will run automatically by the validation engine.
To check library main features and full documentation you can check the Validations Engine's Documentation, which is hosted by Read the Docs.
All contributions are welcome! Feel free to open Pull Requests. Check the development and contributing guidelines described in CONTRIBUTING.md
Made with :heart: by the Data Engineering team from QuintoAndar
FAQs
Engine for creating and running validation suites for general purposes
We found that validations-engine demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.