-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Expand file tree
/
Copy pathutil_test.py
More file actions
308 lines (272 loc) · 11.5 KB
/
util_test.py
File metadata and controls
308 lines (272 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""Unit tests for testing utilities."""
# pytype: skip-file
import unittest
from typing import NamedTuple
import apache_beam as beam
from apache_beam import Create
from apache_beam.options.pipeline_options import StandardOptions
from apache_beam.testing.test_pipeline import TestPipeline
from apache_beam.testing.util import TestWindowedValue
from apache_beam.testing.util import assert_that
from apache_beam.testing.util import equal_to
from apache_beam.testing.util import equal_to_per_window
from apache_beam.testing.util import is_empty
from apache_beam.testing.util import is_not_empty
from apache_beam.testing.util import row_namedtuple_equals_fn
from apache_beam.transforms import trigger
from apache_beam.transforms import window
from apache_beam.transforms.window import FixedWindows
from apache_beam.transforms.window import GlobalWindow
from apache_beam.transforms.window import IntervalWindow
from apache_beam.utils.timestamp import MIN_TIMESTAMP
class UtilTest(unittest.TestCase):
def test_assert_that_passes(self):
with TestPipeline() as p:
assert_that(p | Create([1, 2, 3]), equal_to([1, 2, 3]))
def test_assert_that_passes_order_does_not_matter(self):
with TestPipeline() as p:
assert_that(p | Create([1, 2, 3]), equal_to([2, 1, 3]))
def test_assert_that_passes_order_does_not_matter_with_negatives(self):
with TestPipeline() as p:
assert_that(p | Create([1, -2, 3]), equal_to([-2, 1, 3]))
def test_assert_that_passes_empty_equal_to(self):
with TestPipeline() as p:
assert_that(p | Create([]), equal_to([]))
def test_assert_that_passes_empty_is_empty(self):
with TestPipeline() as p:
assert_that(p | Create([]), is_empty())
def test_assert_that_fails(self):
with self.assertRaises(Exception):
with TestPipeline() as p:
assert_that(p | Create([1, 10, 100]), equal_to([1, 2, 3]))
def test_assert_missing(self):
with self.assertRaisesRegex(Exception, r".*missing elements \['c'\]"):
with TestPipeline() as p:
assert_that(p | Create(['a', 'b']), equal_to(['a', 'b', 'c']))
def test_assert_unexpected(self):
with self.assertRaisesRegex(Exception,
r".*unexpected elements \['c', 'd'\]|"
r"unexpected elements \['d', 'c'\]"):
with TestPipeline() as p:
assert_that(p | Create(['a', 'b', 'c', 'd']), equal_to(['a', 'b']))
def test_assert_missing_and_unexpected(self):
with self.assertRaisesRegex(Exception,
r".*unexpected elements \["
r"'c'\].*missing elements"
r" \['d'\]"):
with TestPipeline() as p:
assert_that(p | Create(['a', 'b', 'c']), equal_to(['a', 'b', 'd']))
def test_assert_with_custom_comparator(self):
with TestPipeline() as p:
assert_that(
p | Create([1, 2, 3]),
equal_to(['1', '2', '3'], equals_fn=lambda e, a: int(e) == int(a)))
def test_reified_value_passes(self):
expected = [
TestWindowedValue(v, MIN_TIMESTAMP, [GlobalWindow()])
for v in [1, 2, 3]
]
with TestPipeline() as p:
assert_that(p | Create([2, 3, 1]), equal_to(expected), reify_windows=True)
def test_reified_value_assert_fail_unmatched_value(self):
expected = [
TestWindowedValue(v + 1, MIN_TIMESTAMP, [GlobalWindow()])
for v in [1, 2, 3]
]
with self.assertRaises(Exception):
with TestPipeline() as p:
assert_that(
p | Create([2, 3, 1]), equal_to(expected), reify_windows=True)
def test_reified_value_assert_fail_unmatched_timestamp(self):
expected = [TestWindowedValue(v, 1, [GlobalWindow()]) for v in [1, 2, 3]]
with self.assertRaises(Exception):
with TestPipeline() as p:
assert_that(
p | Create([2, 3, 1]), equal_to(expected), reify_windows=True)
def test_reified_value_assert_fail_unmatched_window(self):
expected = [
TestWindowedValue(v, MIN_TIMESTAMP, [IntervalWindow(0, 1)])
for v in [1, 2, 3]
]
with self.assertRaises(Exception):
with TestPipeline() as p:
assert_that(
p | Create([2, 3, 1]), equal_to(expected), reify_windows=True)
def test_assert_that_fails_on_empty_input(self):
with self.assertRaises(Exception):
with TestPipeline() as p:
assert_that(p | Create([]), equal_to([1, 2, 3]))
def test_assert_that_fails_on_empty_expected(self):
with self.assertRaises(Exception):
with TestPipeline() as p:
assert_that(p | Create([1, 2, 3]), is_empty())
def test_assert_that_passes_is_not_empty(self):
with TestPipeline() as p:
assert_that(p | Create([1, 2, 3]), is_not_empty())
def test_assert_that_fails_on_is_not_empty_expected(self):
with self.assertRaisesRegex(Exception, "pcol is empty"):
with TestPipeline() as p:
assert_that(p | Create([]), is_not_empty())
def test_equal_to_per_window_passes(self):
start = int(MIN_TIMESTAMP.micros // 1e6) - 5
end = start + 20
expected = {
window.IntervalWindow(start, end): [('k', [1])],
}
with TestPipeline(options=StandardOptions(streaming=True)) as p:
assert_that((
p
| Create([1])
| beam.WindowInto(
FixedWindows(20),
trigger=trigger.AfterWatermark(),
accumulation_mode=trigger.AccumulationMode.DISCARDING)
| beam.Map(lambda x: ('k', x))
| beam.GroupByKey()),
equal_to_per_window(expected),
reify_windows=True)
def test_equal_to_per_window_fail_unmatched_window(self):
with self.assertRaisesRegex(Exception, "not found in any expected"):
expected = {
window.IntervalWindow(50, 100): [('k', [1])],
}
with TestPipeline(options=StandardOptions(streaming=True)) as p:
assert_that((
p
| Create([1])
| beam.WindowInto(
FixedWindows(20),
trigger=trigger.AfterWatermark(),
accumulation_mode=trigger.AccumulationMode.DISCARDING)
| beam.Map(lambda x: ('k', x))
| beam.GroupByKey()),
equal_to_per_window(expected),
reify_windows=True)
def test_runtimeerror_outside_of_context(self):
with beam.Pipeline() as p:
outputs = (p | beam.Create([1, 2, 3]) | beam.Map(lambda x: x + 1))
with self.assertRaises(RuntimeError):
assert_that(outputs, equal_to([2, 3, 4]))
def test_multiple_assert_that_labels(self):
with beam.Pipeline() as p:
outputs = (p | beam.Create([1, 2, 3]) | beam.Map(lambda x: x + 1))
assert_that(outputs, equal_to([2, 3, 4]))
assert_that(outputs, equal_to([2, 3, 4]))
assert_that(outputs, equal_to([2, 3, 4]))
def test_equal_to_per_window_fail_unmatched_element(self):
with self.assertRaisesRegex(Exception, "unmatched elements"):
start = int(MIN_TIMESTAMP.micros // 1e6) - 5
end = start + 20
expected = {
window.IntervalWindow(start, end): [('k', [1]), ('k', [2])],
}
with TestPipeline(options=StandardOptions(streaming=True)) as p:
assert_that((
p
| Create([1])
| beam.WindowInto(
FixedWindows(20),
trigger=trigger.AfterWatermark(),
accumulation_mode=trigger.AccumulationMode.DISCARDING)
| beam.Map(lambda x: ('k', x))
| beam.GroupByKey()),
equal_to_per_window(expected),
reify_windows=True)
def test_equal_to_per_window_succeeds_no_reify_windows(self):
start = int(MIN_TIMESTAMP.micros // 1e6) - 5
end = start + 20
expected = {
window.IntervalWindow(start, end): [('k', [1])],
}
with TestPipeline(options=StandardOptions(streaming=True)) as p:
assert_that((
p
| Create([1])
| beam.WindowInto(
FixedWindows(20),
trigger=trigger.AfterWatermark(),
accumulation_mode=trigger.AccumulationMode.DISCARDING)
| beam.Map(lambda x: ('k', x))
| beam.GroupByKey()),
equal_to_per_window(expected))
def test_equal_to_per_window_fail_unexpected_element(self):
with self.assertRaisesRegex(Exception, "not found in window"):
start = int(MIN_TIMESTAMP.micros // 1e6) - 5
end = start + 20
expected = {
window.IntervalWindow(start, end): [('k', [1])],
}
with TestPipeline(options=StandardOptions(streaming=True)) as p:
assert_that((
p
| Create([1, 2])
| beam.WindowInto(
FixedWindows(20),
trigger=trigger.AfterWatermark(),
accumulation_mode=trigger.AccumulationMode.DISCARDING)
| beam.Map(lambda x: ('k', x))
| beam.GroupByKey()),
equal_to_per_window(expected),
reify_windows=True)
def test_row_namedtuple_equals(self):
class RowTuple(NamedTuple):
a: str
b: int
self.assertTrue(
row_namedtuple_equals_fn(
beam.Row(a='123', b=456), beam.Row(a='123', b=456)))
self.assertTrue(
row_namedtuple_equals_fn(
beam.Row(a='123', b=456), RowTuple(a='123', b=456)))
self.assertTrue(
row_namedtuple_equals_fn(
RowTuple(a='123', b=456), RowTuple(a='123', b=456)))
self.assertTrue(
row_namedtuple_equals_fn(
RowTuple(a='123', b=456), beam.Row(a='123', b=456)))
self.assertTrue(row_namedtuple_equals_fn('foo', 'foo'))
self.assertFalse(
row_namedtuple_equals_fn(
beam.Row(a='123', b=456), beam.Row(a='123', b=4567)))
self.assertFalse(
row_namedtuple_equals_fn(
beam.Row(a='123', b=456), beam.Row(a='123', b=456, c='a')))
self.assertFalse(
row_namedtuple_equals_fn(
beam.Row(a='123', b=456), RowTuple(a='123', b=4567)))
self.assertFalse(
row_namedtuple_equals_fn(
beam.Row(a='123', b=456, c='foo'), RowTuple(a='123', b=4567)))
self.assertFalse(
row_namedtuple_equals_fn(beam.Row(a='123'), RowTuple(a='123', b=4567)))
self.assertFalse(row_namedtuple_equals_fn(beam.Row(a='123'), '123'))
self.assertFalse(row_namedtuple_equals_fn('123', RowTuple(a='123', b=4567)))
class NestedNamedTuple(NamedTuple):
a: str
b: RowTuple
self.assertTrue(
row_namedtuple_equals_fn(
beam.Row(a='foo', b=beam.Row(a='123', b=456)),
NestedNamedTuple(a='foo', b=RowTuple(a='123', b=456))))
self.assertTrue(
row_namedtuple_equals_fn(
beam.Row(a='foo', b=beam.Row(a='123', b=456)),
beam.Row(a='foo', b=RowTuple(a='123', b=456))))
if __name__ == '__main__':
unittest.main()