Utility to generate test queries
Generates SQL script that can be used with Test runner: Utility to run generated tests. These scripts are used by The gen_dbt_cwl Module.
Usage
python -m dorieh.platform.dbt.create_test --script SCRIPT [SCRIPT ...]
[--table TABLE]
[--db DB]
[--connection CONNECTION]
[--autocommit]
[-h]
[--verbose]
Options:
Option |
Alias |
Description |
---|---|---|
|
|
Show this help message and exit |
|
|
Path to the file to write the test scripts |
|
Use autocommit, default: False |
|
|
|
Path to a database connection parameters file, default: database.ini (in the working directory |
|
|
Section in the database connection parameters file |
|
|
Name of the table to being tested, default: None |
|
Verbose output, default: False |
Details
A utility to generate a test based on a sample table.
The tool introspects a table, given as an input and generates a set of queries each of which tests that the data in a certain column has not changed.
The queries are output into a file that can be executed as a single SQL query producing a table with the following columns:
Name of the column being tested
What value is being tested not to change: MD5 hash, number of distinct records, mean value or variance
Whether the value has changed (indicated by string failed) or remained the same (indicated by string passed)
Individual queries are separated by a comment strings:
– Test case end
– Test case start
so a test runner can execute them individually if desired
- class CType(value)[source]
An enumeration.
- categorical = 'categorical'
- text = 'text'
- integral = 'integral'
- numeric = 'numeric'
- date = 'date'