apache_beam.testing.test_pipeline module¶
Test Pipeline, a wrapper of Pipeline for test purpose
- 
class apache_beam.testing.test_pipeline.TestPipeline(runner=None, options=None, argv=None, is_integration_test=False, blocking=True)[source]¶
- Bases: - apache_beam.pipeline.Pipeline- TestPipelineclass is used inside of Beam tests that can be configured to run against pipeline runner.- It has a functionality to parse arguments from command line and build pipeline options for tests who runs against a pipeline runner and utilizes resources of the pipeline runner. Those test functions are recommended to be tagged by - @attr("ValidatesRunner")annotation.- In order to configure the test with customized pipeline options from command line, system argument - --test-pipeline-optionscan be used to obtains a list of pipeline options. If no options specified, default value will be used.- For example, use following command line to execute all ValidatesRunner tests: - python setup.py nosetests -a ValidatesRunner \ --test-pipeline-options="--runner=DirectRunner \ --job_name=myJobName \ --num_workers=1" - For example, use assert_that for test validation: - pipeline = TestPipeline() pcoll = ... assert_that(pcoll, equal_to(...)) pipeline.run() - Initialize a pipeline object for test. - Parameters: - runner (PipelineRunner) – An object of type
PipelineRunnerthat will be used to execute the pipeline. For registered runners, the runner name can be specified, otherwise a runner object must be supplied.
- options (PipelineOptions) – A configured
PipelineOptionsobject containing arguments that should be used for running the pipeline job.
- argv (List[str]) – A list of arguments (such as sys.argv) to be used for building aPipelineOptionsobject. This will only be used if argument options isNone.
- is_integration_test (bool) – Trueif the test is an integration test,Falseotherwise.
- blocking (bool) – Run method will wait until pipeline execution is completed.
 - Raises: - ValueError– if either the runner or options argument is not of the expected type.
- runner (PipelineRunner) – An object of type