Testing Framework for SparkPipelineFramework
Project description
SparkPipelineFramework.Tests
Testing framework that can tests SparkPipelineFramework library by just providing input files to setup before running the transformer and output files to use for verifying the output
Usage
- Create a folder structure similar to the folder structure of your library in SparkPipelineFramework (This is how the Testing Framework finds the Transformer to run)
- Create an input folder and put in files that represent the input views. These files can be csv, json or parquet
- (Optionally) Create an input_schema folder and put in any schemas you want applied to the above views. This follows the Spark Json Schema format.
- (Optional) Create an output folder and put in files that represent the output views you expect. These files can be csv, json or parquet
- (Optional) Create an output_schema folder and put in any schemas you want applied to the output views
- Copy the following test code and put it in a test file in this folder
from pathlib import Path
from pyspark.sql import SparkSession
from spark_pipeline_framework_testing.test_runner import SparkPipelineFrameworkTestRunner
def test_folder(spark_session: SparkSession) -> None:
data_dir: Path = Path(__file__).parent.joinpath('./')
SparkPipelineFrameworkTestRunner.run_tests(spark_session=spark_session, folder_path=data_dir)
- Now just run this test.
Note: the test finds files in sub-folders too.
Example
For the transformer defined here: https://github.com/imranq2/SparkPipelineFramework.Testing/tree/main/library/features/people/my_people_feature You can find the test here: https://github.com/imranq2/SparkPipelineFramework.Testing/tree/main/tests/library/features/people/my_people_feature
Publishing a new package
- Create a new release
- The GitHub Action should automatically kick in and publish the package
- You can see the status in the Actions tab
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
Built Distribution
Close
Hashes for sparkpipelineframework_testing-3.0.7.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffc46133c746c2b9ed472d060cac03ec6a082b43cde0102b86d432f39c570246 |
|
MD5 | 0f9420b66e96102bce28da35c3c91ce1 |
|
BLAKE2b-256 | 70eccc288bf4783fafc8ab87fd9f671eabc9b190fb2594a77320c51580bcc8bf |
Close
Hashes for sparkpipelineframework.testing-3.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36a15add51d0bbe192096dc3c5754e395b833bbec3db793e6a4138479aaca4ce |
|
MD5 | 573c43e10867da17cdf746782e09b58c |
|
BLAKE2b-256 | 819729a914ea567e56abbeb909790aab2b9f04e90d913a1a40fd49e231347f8f |