Provides utilities for testing Versatile Data Kit SDK plugins.
Project description
This plugin provides utility tools used for the testing of vdk-core and vdk-core plugins.
Usage
CliEntryBasedTestRunner
CliEntryBasedTestRunner provides an easy way to create unit or functional tests for your plugins in isolated environment. Similarly this can be used to unit tests data jobs.
For example , let's say we want to test newly developed AtlasLineagePlugin
db_plugin = AtlasLineagePlugin()
# we pass the plugin to the runner that will make sure to register it
runner = CliEntryBasedTestRunner(db_plugin)
# and then invoke the command we want to test -
# in this case data job run
result: Result = runner.invoke(
[ "run", util_funcs.jobs_path_from_caller_directory("simple-create-insert") ]
)
cli_assert_equal(0, result)
assert 'expected_schema' in result.output
Testing plugins
Some useful plugins that can be used during testing can be seen in util_plugins.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file vdk-test-utils-0.2.715017056.tar.gz
.
File metadata
- Download URL: vdk-test-utils-0.2.715017056.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee4f6bf68fd45b6feeb1235d54eb2a15f1e5a34249c7d78c486ec1668efb2ac2 |
|
MD5 | 0b4939cd75bd5a0c087f50ea4a983a2c |
|
BLAKE2b-256 | 25a55ed78ed7b17d39d3e4ca28b97283fd48fa8215bda1b1857d74a0d4032f31 |