apache_beam.testing.test_stream module¶
Provides TestStream for verifying streaming runner semantics.
For internal use only; no backwards-compatibility guarantees.
- 
class apache_beam.testing.test_stream.Event[source]¶
- Bases: - object- Test stream event to be emitted during execution of a TestStream. 
- 
class apache_beam.testing.test_stream.ElementEvent(timestamped_values)[source]¶
- Bases: - apache_beam.testing.test_stream.Event- Element-producing test stream event. 
- 
class apache_beam.testing.test_stream.WatermarkEvent(new_watermark)[source]¶
- Bases: - apache_beam.testing.test_stream.Event- Watermark-advancing test stream event. 
- 
class apache_beam.testing.test_stream.ProcessingTimeEvent(advance_by)[source]¶
- Bases: - apache_beam.testing.test_stream.Event- Processing time-advancing test stream event. 
- 
class apache_beam.testing.test_stream.TestStream(coder=<class 'apache_beam.coders.coders.FastPrimitivesCoder'>)[source]¶
- Bases: - apache_beam.transforms.ptransform.PTransform- Test stream that generates events on an unbounded PCollection of elements. - Each event emits elements, advances the watermark or advances the processing time. After all of the specified elements are emitted, ceases to produce output. - 
add_elements(elements)[source]¶
- Add elements to the TestStream. - Elements added to the TestStream will be produced during pipeline execution. These elements can be TimestampedValue, WindowedValue or raw unwrapped elements that are serializable using the TestStream’s specified Coder. When a TimestampedValue or a WindowedValue element is used, the timestamp of the TimestampedValue or WindowedValue will be the timestamp of the produced element; otherwise, the current watermark timestamp will be used for that element. The windows of a given WindowedValue are ignored by the TestStream. 
 
-