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, additional_pipeline_args=None, display_data=None)[source]¶ Bases:
apache_beam.pipeline.Pipeline
TestPipeline
class 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
@pytest.mark.it_validatesrunner
annotation.In order to configure the test with customized pipeline options from command line, system argument
--test-pipeline-options
can 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:
pytest -m it_validatesrunner \ --test-pipeline-options="--runner=DirectRunner \ --job_name=myJobName \ --num_workers=1"
For example, use assert_that for test validation:
with TestPipeline() as pipeline: pcoll = ... assert_that(pcoll, equal_to(...))
Initialize a pipeline object for test.
Parameters: - runner (PipelineRunner) – An object of type
PipelineRunner
that 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
PipelineOptions
object 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 aPipelineOptions
object. This will only be used if argument options isNone
. - is_integration_test (bool) –
True
if the test is an integration test,False
otherwise. - blocking (bool) – Run method will wait until pipeline execution is completed.
- additional_pipeline_args (List[str]) – additional pipeline arguments to be included when construction the pipeline options object.
- display_data (Dict[str, Any]) – a dictionary of static data associated with this pipeline that can be displayed when it runs.
Raises: ValueError
– if either the runner or options argument is not of the expected type.-
pytest_test_pipeline_options
= None¶
- runner (PipelineRunner) – An object of type