public class PAssert extends Object
PCollection incorporated into the pipeline. Such an
assertion can be checked no matter what kind of PipelineRunner is used.
Note that the PAssert call must precede the call to Pipeline.run().
Examples of use:
Pipeline p = TestPipeline.create();
...
PCollection<String> output =
input
.apply(ParDo.of(new TestDoFn()));
PAssert.that(output)
.containsInAnyOrder("out1", "out2", "out3");
...
PCollection<Integer> ints = ...
PCollection<Integer> sum =
ints
.apply(Combine.globally(new SumInts()));
PAssert.that(sum)
.is(42);
...
p.run();
JUnit and Hamcrest must be linked in by any code that uses PAssert.
| Modifier and Type | Class and Description |
|---|---|
static class |
PAssert.GroupThenAssert<T>
A transform that applies an assertion-checking function over iterables of
ActualT to
the entirety of the contents of its input. |
static class |
PAssert.GroupThenAssertForSingleton<T>
A transform that applies an assertion-checking function to a single iterable contained as the
sole element of a
PCollection. |
static interface |
PAssert.IterableAssert<T>
Builder interface for assertions applicable to iterables and PCollection contents.
|
static class |
PAssert.OneSideInputAssert<ActualT>
An assertion checker that takes a single
PCollectionView<ActualT> and an assertion over ActualT, and checks it within a
Beam pipeline. |
static interface |
PAssert.SingletonAssert<T>
Builder interface for assertions applicable to a single value.
|
| Modifier and Type | Field and Description |
|---|---|
static String |
FAILURE_COUNTER |
static String |
SUCCESS_COUNTER |
| Modifier and Type | Method and Description |
|---|---|
static <T> PAssert.IterableAssert<T> |
that(PCollection<T> actual)
Constructs an
PAssert.IterableAssert for the elements of the provided PCollection. |
static <K,V> PAssert.SingletonAssert<Map<K,V>> |
thatMap(PCollection<KV<K,V>> actual)
Constructs a
PAssert.SingletonAssert for the value of the provided PCollection, which
must have at most one value per key. |
static <K,V> PAssert.SingletonAssert<Map<K,Iterable<V>>> |
thatMultimap(PCollection<KV<K,V>> actual)
Constructs a
PAssert.SingletonAssert for the value of the provided PCollection. |
static <T> PAssert.SingletonAssert<T> |
thatSingleton(PCollection<T> actual)
Constructs a
PAssert.SingletonAssert for the value of the provided
PCollection PCollection<T>, which must be a singleton. |
static <T> PAssert.IterableAssert<T> |
thatSingletonIterable(PCollection<? extends Iterable<T>> actual)
Constructs an
PAssert.IterableAssert for the value of the provided PCollection which
must contain a single Iterable<T> value. |
public static final String SUCCESS_COUNTER
public static final String FAILURE_COUNTER
public static <T> PAssert.IterableAssert<T> that(PCollection<T> actual)
PAssert.IterableAssert for the elements of the provided PCollection.public static <T> PAssert.IterableAssert<T> thatSingletonIterable(PCollection<? extends Iterable<T>> actual)
PAssert.IterableAssert for the value of the provided PCollection which
must contain a single Iterable<T> value.public static <T> PAssert.SingletonAssert<T> thatSingleton(PCollection<T> actual)
PAssert.SingletonAssert for the value of the provided
PCollection PCollection<T>, which must be a singleton.public static <K,V> PAssert.SingletonAssert<Map<K,Iterable<V>>> thatMultimap(PCollection<KV<K,V>> actual)
PAssert.SingletonAssert for the value of the provided PCollection.
Note that the actual value must be coded by a KvCoder, not just any
Coder<K, V>.
public static <K,V> PAssert.SingletonAssert<Map<K,V>> thatMap(PCollection<KV<K,V>> actual)
PAssert.SingletonAssert for the value of the provided PCollection, which
must have at most one value per key.
Note that the actual value must be coded by a KvCoder, not just any
Coder<K, V>.