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
build / android / fast_local_dev_server_test.py [blame]
#!/usr/bin/env vpython3
# Copyright 2024 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import contextlib
import datetime
import json
import pathlib
import unittest
import os
import signal
import socket
import subprocess
import sys
import time
import uuid
import fast_local_dev_server as server
sys.path.append(os.path.join(os.path.dirname(__file__), 'gyp'))
from util import server_utils
class RegexTest(unittest.TestCase):
def testBuildIdRegex(self):
self.assertRegex(server.FIRST_LOG_LINE.format(build_id='abc'),
server.BUILD_ID_RE)
def sendMessage(message_dict):
with contextlib.closing(socket.socket(socket.AF_UNIX)) as sock:
sock.settimeout(1)
sock.connect(server_utils.SOCKET_ADDRESS)
server_utils.SendMessage(sock, json.dumps(message_dict).encode('utf-8'))
def pollServer():
try:
sendMessage({'message_type': server_utils.POLL_HEARTBEAT})
return True
except ConnectionRefusedError:
return False
def callServer(args, check=True):
return subprocess.run([str(server_utils.SERVER_SCRIPT.absolute())] + args,
cwd=pathlib.Path(__file__).parent,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
check=check,
text=True)
@contextlib.contextmanager
def blockingFifo(fifo_path='/tmp/.fast_local_dev_server_test.fifo'):
fifo_path = pathlib.Path(fifo_path)
try:
if not fifo_path.exists():
os.mkfifo(fifo_path)
yield fifo_path
finally:
# Write to the fifo nonblocking to unblock other end.
try:
pipe = os.open(fifo_path, os.O_WRONLY | os.O_NONBLOCK)
os.write(pipe, b'')
os.close(pipe)
except OSError:
# Can't open non-blocking an unconnected pipe for writing.
pass
fifo_path.unlink(missing_ok=True)
class ServerStartedTest(unittest.TestCase):
def setUp(self):
self._TTY_FILE = '/tmp/fast_local_dev_server_test_tty'
if pollServer():
# TODO(mheikal): Support overriding the standard named pipe for
# communicating with the server so that we can run an instance just for
# this test even if a real one is running.
self.skipTest("Cannot run test when server already running.")
self._process = subprocess.Popen(
[server_utils.SERVER_SCRIPT.absolute(), '--exit-on-idle', '--quiet'],
start_new_session=True,
cwd=pathlib.Path(__file__).parent,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True)
# pylint: disable=unused-variable
for attempt in range(5):
if pollServer():
break
time.sleep(0.05)
def tearDown(self):
if os.path.exists(self._TTY_FILE):
os.unlink(self._TTY_FILE)
self._process.terminate()
stdout, _ = self._process.communicate()
if stdout != '':
self.fail(f'build server should be silent but it output:\n{stdout}')
def sendTask(self, cmd, stamp_path=None):
if stamp_path:
_stamp_file = pathlib.Path(stamp_path)
else:
_stamp_file = pathlib.Path('/tmp/.test.stamp')
_stamp_file.touch()
sendMessage({
'name': f'{self.id()}({uuid.uuid4()}): {" ".join(cmd)}',
'message_type': server_utils.ADD_TASK,
'cmd': cmd,
# So that logfiles do not clutter cwd.
'cwd': '/tmp/',
'tty': self._TTY_FILE,
'build_id': self.id(),
'stamp_file': _stamp_file.name,
})
def getTtyContents(self):
if os.path.exists(self._TTY_FILE):
with open(self._TTY_FILE, 'rt') as tty:
return tty.read()
return ''
def getBuildInfo(self):
build_info = server.query_build_info(self.id())['builds'][0]
pending_tasks = build_info['pending_tasks']
completed_tasks = build_info['completed_tasks']
return pending_tasks, completed_tasks
def waitForTasksDone(self, timeout_seconds=3):
timeout_duration = datetime.timedelta(seconds=timeout_seconds)
start_time = datetime.datetime.now()
while True:
pending_tasks, completed_tasks = self.getBuildInfo()
if completed_tasks > 0 and pending_tasks == 0:
return
current_time = datetime.datetime.now()
duration = current_time - start_time
if duration > timeout_duration:
raise TimeoutError(
f'Timed out waiting for pending tasks [{pending_tasks}/{pending_tasks+completed_tasks}]'
)
time.sleep(0.1)
def testRunsQuietTask(self):
self.sendTask(['true'])
self.waitForTasksDone()
self.assertEqual(self.getTtyContents(), '')
def testRunsNoisyTask(self):
self.sendTask(['echo', 'some_output'])
self.waitForTasksDone()
tty_contents = self.getTtyContents()
self.assertIn('some_output', tty_contents)
def testStampFileDeletedOnFailedTask(self):
stamp_file = pathlib.Path('/tmp/.failed_task.stamp')
self.sendTask(['echo', 'some_output'], stamp_path=stamp_file)
self.waitForTasksDone()
self.assertFalse(stamp_file.exists())
def testStampFileNotDeletedOnSuccess(self):
stamp_file = pathlib.Path('/tmp/.successful_task.stamp')
self.sendTask(['true'], stamp_path=stamp_file)
self.waitForTasksDone()
self.assertTrue(stamp_file.exists())
def testRegisterBuilderMessage(self):
sendMessage({
'message_type': server_utils.REGISTER_BUILDER,
'build_id': self.id(),
'builder_pid': os.getpid(),
})
pollServer()
self.assertEqual(self.getTtyContents(), '')
def testRegisterBuilderServerCall(self):
callServer(
['--register-build',
self.id(), '--builder-pid',
str(os.getpid())])
self.assertEqual(self.getTtyContents(), '')
def testWaitForBuildServerCall(self):
callServer(['--wait-for-build', self.id()])
self.assertEqual(self.getTtyContents(), '')
def testCancelBuildServerCall(self):
callServer(['--cancel-build', self.id()])
self.assertEqual(self.getTtyContents(), '')
def testBuildStatusServerCall(self):
proc_result = callServer(['--print-status', self.id()])
self.assertEqual(proc_result.stdout, '')
proc_result = callServer(['--print-status-all'])
self.assertIn(self.id(), proc_result.stdout)
self.sendTask(['true'])
self.waitForTasksDone()
proc_result = callServer(['--print-status', self.id()])
self.assertIn('[1/1]', proc_result.stdout)
proc_result = callServer(['--print-status-all'])
self.assertIn('has 1 registered build', proc_result.stdout)
self.assertIn('[1/1]', proc_result.stdout)
with blockingFifo() as fifo_path:
# cat gets stuck until we open the other end of the fifo.
self.sendTask(['cat', str(fifo_path)])
proc_result = callServer(['--print-status', self.id()])
self.assertIn('[1/2]', proc_result.stdout)
self.assertIn(f'--wait-for-build {self.id()}', proc_result.stdout)
self.waitForTasksDone()
callServer(['--cancel-build', self.id()])
self.waitForTasksDone()
proc_result = callServer(['--print-status', self.id()])
self.assertIn('[2/2]', proc_result.stdout)
proc_result = callServer(['--print-status-all'])
self.assertIn('Siso finished', proc_result.stdout)
def testServerCancelsRunningTasks(self):
output_stamp = pathlib.Path('/tmp/.deleteme.stamp')
with blockingFifo() as fifo_path:
self.assertFalse(output_stamp.exists())
# dd blocks on fifo so task never finishes inside with block.
self.sendTask(['dd', f'if={str(fifo_path)}', f'of={str(output_stamp)}'])
callServer(['--cancel-build', self.id()])
self.waitForTasksDone()
self.assertFalse(output_stamp.exists())
def testKeyboardInterrupt(self):
os.kill(self._process.pid, signal.SIGINT)
self._process.wait(timeout=1)
class ServerNotStartedTest(unittest.TestCase):
def testWaitForBuildServerCall(self):
proc_result = callServer(['--wait-for-build', self.id()])
self.assertIn('No server running', proc_result.stdout)
def testBuildStatusServerCall(self):
proc_result = callServer(['--print-status-all'])
self.assertIn('No server running', proc_result.stdout)
if __name__ == '__main__':
# Suppress logging messages.
unittest.main(buffer=True)