forked from apache/beam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubprocess_server_test.py
More file actions
469 lines (390 loc) · 15.9 KB
/
Copy pathsubprocess_server_test.py
File metadata and controls
469 lines (390 loc) · 15.9 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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#
# 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 the processes module."""
# pytype: skip-file
import atexit
import glob
import os
import random
import re
import shutil
import socketserver
import subprocess
import tempfile
import threading
import unittest
from unittest.mock import patch
from apache_beam.runners.portability import job_server
from apache_beam.utils import subprocess_server
class JavaJarServerTest(unittest.TestCase):
# TODO(https://github.com/grpc/grpc/issues/37710): Remove once fixed.
@classmethod
def setUpClass(cls):
cls._old_fork_support = os.environ.get('GRPC_ENABLE_FORK_SUPPORT')
os.environ['GRPC_ENABLE_FORK_SUPPORT'] = 'false'
super().setUpClass()
# TODO(https://github.com/grpc/grpc/issues/37710): Remove once fixed.
@classmethod
def tearDownClass(cls):
if cls._old_fork_support is None:
os.environ.pop('GRPC_ENABLE_FORK_SUPPORT', None)
else:
os.environ['GRPC_ENABLE_FORK_SUPPORT'] = cls._old_fork_support
super().tearDownClass()
def test_gradle_jar_release(self):
self.assertEqual(
'https://repo.maven.apache.org/maven2/org/apache/beam/'
'beam-sdks-java-fake/VERSION/beam-sdks-java-fake-VERSION.jar',
subprocess_server.JavaJarServer.path_to_beam_jar(
':sdks:java:fake:fatJar', version='VERSION'))
self.assertEqual(
'https://repo.maven.apache.org/maven2/org/apache/beam/'
'beam-sdks-java-fake/VERSION/beam-sdks-java-fake-A-VERSION.jar',
subprocess_server.JavaJarServer.path_to_beam_jar(
':sdks:java:fake:fatJar', appendix='A', version='VERSION'))
self.assertEqual(
'https://repo.maven.apache.org/maven2/org/apache/beam/'
'beam-sdks-java-fake/VERSION/beam-sdks-java-fake-A-VERSION.jar',
subprocess_server.JavaJarServer.path_to_beam_jar(
':gradle:target:doesnt:matter',
appendix='A',
version='VERSION',
artifact_id='beam-sdks-java-fake'))
self.assertEqual(
'https://repository.apache.org/content/groups/staging/org/apache/beam/'
'beam-sdks-java-fake/2.99.9/beam-sdks-java-fake-2.99.9.jar',
subprocess_server.JavaJarServer.path_to_beam_jar(
':sdks:java:fake:fatJar', version='2.99.9rc2'))
def test_gradle_jar_dev(self):
with self.assertRaisesRegex(
Exception,
re.escape(os.path.join('sdks',
'java',
'fake',
'build',
'libs',
'beam-sdks-java-fake-VERSION-SNAPSHOT.jar')) +
' not found.'):
subprocess_server.JavaJarServer.path_to_beam_jar(
':sdks:java:fake:fatJar', version='VERSION.dev')
with self.assertRaisesRegex(
Exception,
re.escape(os.path.join('sdks',
'java',
'fake',
'build',
'libs',
'beam-sdks-java-fake-A-VERSION-SNAPSHOT.jar')) +
' not found.'):
subprocess_server.JavaJarServer.path_to_beam_jar(
':sdks:java:fake:fatJar', appendix='A', version='VERSION.dev')
with self.assertRaisesRegex(
Exception,
re.escape(os.path.join('sdks',
'java',
'fake',
'build',
'libs',
'fake-artifact-id-A-VERSION-SNAPSHOT.jar')) +
' not found.'):
subprocess_server.JavaJarServer.path_to_beam_jar(
':sdks:java:fake:fatJar',
appendix='A',
version='VERSION.dev',
artifact_id='fake-artifact-id')
def test_beam_services(self):
with subprocess_server.JavaJarServer.beam_services({':some:target': 'foo'}):
self.assertEqual(
'foo',
subprocess_server.JavaJarServer.path_to_beam_jar(':some:target'))
def test_local_jar(self):
class Handler(socketserver.BaseRequestHandler):
timeout = 1
def handle(self):
data = self.request.recv(1024)
if 'User-Agent: Apache Beam SDK for Python' in str(data):
self.request.sendall(b'HTTP/1.1 200 OK\n\ndata')
else:
self.request.sendall(b'HTTP/1.1 400 BAD REQUEST\n\n')
port, = subprocess_server.pick_port(None)
server = socketserver.TCPServer(('localhost', port), Handler)
t = threading.Thread(target=server.handle_request)
t.daemon = True
t.start()
with tempfile.TemporaryDirectory() as temp_dir:
subprocess_server.JavaJarServer.local_jar(
'http://localhost:%s/path/to/file.jar' % port, temp_dir)
with open(os.path.join(temp_dir, 'file.jar')) as fin:
self.assertEqual(fin.read(), 'data')
def test_local_jar_fallback_to_google_maven_mirror(self):
"""Test that Google Maven mirror is used as fallback
when Maven Central fails."""
class MavenCentralHandler(socketserver.BaseRequestHandler):
timeout = 1
def handle(self):
# Simulate Maven Central returning 403 Forbidden
self.request.sendall(b'HTTP/1.1 403 Forbidden\n\n')
# Set up Maven Central server (will return 403)
maven_port, = subprocess_server.pick_port(None)
maven_server = socketserver.TCPServer(('localhost', maven_port),
MavenCentralHandler)
maven_thread = threading.Thread(target=maven_server.handle_request)
maven_thread.daemon = True
maven_thread.start()
# Temporarily replace the Maven Central constant to use our test server
original_maven_central = (
subprocess_server.JavaJarServer.MAVEN_CENTRAL_REPOSITORY)
try:
subprocess_server.JavaJarServer.MAVEN_CENTRAL_REPOSITORY = (
f'http://localhost:{maven_port}/maven2')
with tempfile.TemporaryDirectory() as temp_dir:
# Use a Maven Central URL that will trigger the fallback to real
# Google mirror
maven_url = (
f'http://localhost:{maven_port}/maven2/org/apache/beam/'
f'beam-sdks-java-extensions-schemaio-expansion-service/2.63.0/'
f'beam-sdks-java-extensions-schemaio-expansion-service-2.63.0.jar')
# This should fail on our mock Maven Central and fallback to the
# real Google mirror
jar_path = subprocess_server.JavaJarServer.local_jar(
maven_url, temp_dir)
# Verify the file was downloaded successfully (from the real Google
# mirror)
self.assertTrue(os.path.exists(jar_path))
jar_size = os.path.getsize(jar_path)
self.assertTrue(jar_size > 0) # Should have actual content
finally:
# Restore original constants
subprocess_server.JavaJarServer.MAVEN_CENTRAL_REPOSITORY = (
original_maven_central)
@unittest.skipUnless(shutil.which('javac'), 'missing java jdk')
def test_classpath_jar(self):
with tempfile.TemporaryDirectory() as temp_dir:
try:
# Avoid having to prefix everything in our test strings.
oldwd = os.getcwd()
os.chdir(temp_dir)
with open('Main.java', 'w') as fout:
fout.write(
"""
public class Main {
public static void main(String[] args) { Other.greet(); }
}
""")
with open('Other.java', 'w') as fout:
fout.write(
"""
public class Other {
public static void greet() { System.out.println("You got me!"); }
}
""")
os.mkdir('jars')
# Using split just for readability/copyability.
subprocess.check_call('javac Main.java Other.java'.split())
subprocess.check_call('jar cfe jars/Main.jar Main Main.class'.split())
subprocess.check_call('jar cf jars/Other.jar Other.class'.split())
# Make sure the java and class files don't get picked up.
for path in glob.glob('*.*'):
os.unlink(path)
# These should fail.
self.assertNotEqual(
subprocess.call('java -jar jars/Main.jar'.split()), 0)
self.assertNotEqual(
subprocess.call('java -jar jars/Other.jar'.split()), 0)
os.mkdir('beam_temp')
composite_jar = subprocess_server.JavaJarServer.make_classpath_jar(
'jars/Main.jar', ['jars/Other.jar'], cache_dir='beam_temp')
# This, however, should work.
subprocess.check_call(f'java -jar {composite_jar}'.split())
finally:
os.chdir(oldwd)
class CacheTest(unittest.TestCase):
@staticmethod
def with_prefix(prefix):
return '%s-%s' % (prefix, random.random())
def test_memoization(self):
cache = subprocess_server._SharedCache(self.with_prefix, lambda x: None)
try:
token = cache.register()
a = cache.get('a')
self.assertEqual(a[0], 'a')
self.assertEqual(cache.get('a'), a)
b = cache.get('b')
self.assertEqual(b[0], 'b')
self.assertEqual(cache.get('b'), b)
finally:
cache.purge(token)
def test_purged(self):
cache = subprocess_server._SharedCache(self.with_prefix, lambda x: None)
try:
token = cache.register()
a = cache.get('a')
self.assertEqual(cache.get('a'), a)
finally:
cache.purge(token)
try:
token = cache.register()
new_a = cache.get('a')
self.assertNotEqual(new_a, a)
finally:
cache.purge(token)
def test_multiple_owners(self):
cache = subprocess_server._SharedCache(self.with_prefix, lambda x: None)
try:
owner1 = cache.register()
a = cache.get('a')
try:
self.assertEqual(cache.get('a'), a)
owner2 = cache.register()
b = cache.get('b')
self.assertEqual(cache.get('b'), b)
finally:
cache.purge(owner2)
self.assertEqual(cache.get('a'), a)
self.assertEqual(cache.get('b'), b)
finally:
cache.purge(owner1)
try:
owner3 = cache.register()
self.assertNotEqual(cache.get('a'), a)
self.assertNotEqual(cache.get('b'), b)
finally:
cache.purge(owner3)
def test_interleaved_owners(self):
cache = subprocess_server._SharedCache(self.with_prefix, lambda x: None)
owner1 = cache.register()
a = cache.get('a')
self.assertEqual(cache.get('a'), a)
owner2 = cache.register()
b = cache.get('b')
self.assertEqual(cache.get('b'), b)
cache.purge(owner1)
self.assertNotEqual(cache.get('a'), a)
self.assertEqual(cache.get('b'), b)
cache.purge(owner2)
owner3 = cache.register()
self.assertNotEqual(cache.get('b'), b)
cache.purge(owner3)
def test_destructor_exception_partial_state(self):
# In SubprocessServer.stop_process(), we need to make sure self._owner_id is always
# set to None if it is not already set, even if a destructor exception happens
# during purge(owner_id).
destructor_calls = []
def faulty_destructor(obj):
destructor_calls.append(obj)
raise RuntimeError("Destructor failed")
custom_cache = subprocess_server._SharedCache(
lambda *args: "process_obj", faulty_destructor)
class CustomServer(subprocess_server.SubprocessServer):
_cache = custom_cache
def __init__(self):
super().__init__(lambda channel: None, ["dummy_cmd"], port=12345)
server = CustomServer()
server.start_process()
owner_id = server._owner_id
self.assertIsNotNone(owner_id)
self.assertIn(owner_id, custom_cache._live_owners)
# First stop attempt fails in the destructor
with self.assertRaises(RuntimeError):
server.stop_process()
# Verify fixed state: owner is purged from cache set, AND self._owner_id is successfully cleared to None
self.assertNotIn(owner_id, custom_cache._live_owners)
self.assertIsNone(server._owner_id)
# Second stop attempt safely does nothing (no ValueError raised)
try:
server.stop_process()
except ValueError:
self.fail("ValueError should not be raised here.")
def test_duplicate_atexit_registration_on_restart(self):
# Make sure we don't have duplicate atexit registration when reusing a
# StopOnExistJobServer instance.
class DummyJobServer(job_server.JobServer):
def start(self):
return "localhost:8080"
def stop(self):
pass
wrapper = job_server.StopOnExitJobServer(DummyJobServer())
registered_callbacks = []
def mock_register(cb):
registered_callbacks.append(cb)
def mock_unregister(cb):
if cb in registered_callbacks:
registered_callbacks.remove(cb)
with patch('atexit.register', side_effect=mock_register), \
patch('atexit.unregister', side_effect=mock_unregister, create=True):
# First start registers stop callback
wrapper.start()
self.assertTrue(wrapper._started)
self.assertEqual(len(registered_callbacks), 1)
# Explicit stop clears _started AND unregisters the callback
wrapper.stop()
self.assertFalse(wrapper._started)
self.assertEqual(len(registered_callbacks), 0)
# Re-starting registers the callback again, leaving exactly 1 active callback
wrapper.start()
self.assertTrue(wrapper._started)
self.assertEqual(len(registered_callbacks), 1)
def test_concurrent_purge_race_condition(self):
# Concurrent threads attempting to check memebership and call purge for the same owner.
# Here we explicitly define a synchronized set to mimic the behavior of _live_owners.
# This set will block two threads on __contains__, allowing us to test the race condition.
cache = subprocess_server._SharedCache(lambda x: "obj", lambda x: None)
owner = cache.register()
barrier = threading.Barrier(2)
exceptions = []
class SynchronizedSet(set):
def __contains__(self, item):
res = super().__contains__(item)
try:
# Force both threads to align right after checking membership but before removal
barrier.wait(timeout=0.2)
except threading.BrokenBarrierError:
pass
return res
cache._live_owners = SynchronizedSet(cache._live_owners)
def purge_worker():
try:
cache.purge(owner)
except Exception as e:
exceptions.append(e)
t1 = threading.Thread(target=purge_worker)
t2 = threading.Thread(target=purge_worker)
t1.start()
t2.start()
t1.join()
t2.join()
# Both threads should succeed cleanly without raising an exception under idempotent purging.
self.assertEqual(len(exceptions), 0)
def test_stop_process_after_cache_purged(self):
# Reproduce the ValueError when stop_process() (called by atexit)
# runs after the cache/owner was already purged during test teardown.
cache = subprocess_server._SharedCache(
lambda *args: "dummy_process", lambda obj: None)
class DummySubprocessServer(subprocess_server.SubprocessServer):
_cache = cache
def __init__(self):
super().__init__(lambda channel: None, ["dummy_cmd"], port=12345)
server = DummySubprocessServer()
server.start_process()
owner_id = server._owner_id
# Simulate pipeline context exit or test teardown purging the cache directly
cache.purge(owner_id)
# Calling stop_process() (which happens during atexit) should succeed cleanly
# without raising ValueError.
server.stop_process()
if __name__ == '__main__':
unittest.main()