-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathrun_server_unsaved_changes_test.py
351 lines (305 loc) · 12.8 KB
/
run_server_unsaved_changes_test.py
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
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
# pyre-strict
"""
Run an integration test of the pyre server's unsaved changes logic.
You can run this from the pyre-check repository root as follows:
```
# First, set your PYRE_CLIENT to point to the local build of an
# (open-source) pyre client and your PYRE_BINARY to a locally built
# pyre binary.
python3 scripts/run_server_unsaved_changes_test.py \
--typeshed-path stubs/typeshed/typeshed \
source/command/test/integration/fake_repository/
```
"""
import argparse
import contextlib
import io
import json
import logging
import os
import pathlib
import socket
import subprocess
import sys
import tempfile
from argparse import Namespace
from dataclasses import dataclass
from logging import Logger
from typing import BinaryIO, Dict, Generator, Iterable, List, TextIO, Tuple
LOG: Logger = logging.getLogger(__name__)
class ConnectionFailure(Exception):
pass
@contextlib.contextmanager
def connect_in_text_mode(
socket_path: pathlib.Path,
) -> Generator[Tuple[TextIO, TextIO], None, None]:
"""
This is a line-oriented higher-level API than `connect`. It can be used
when the caller does not want to deal with the complexity of binary I/O.
The behavior is the same as `connect`, except the streams that are created
operates in text mode. Read/write APIs of the streams uses UTF-8 encoded
`str` instead of `bytes`. Those operations are also line-buffered, meaning
that the streams will automatically be flushed once the newline character
is encountered.
"""
with connect(socket_path) as (input_channel, output_channel):
yield (
io.TextIOWrapper(
input_channel,
line_buffering=True,
errors="replace",
),
io.TextIOWrapper(
output_channel,
line_buffering=True,
errors="replace",
),
)
@contextlib.contextmanager
def connect(
socket_path: pathlib.Path,
) -> Generator[Tuple[BinaryIO, BinaryIO], None, None]:
"""
Connect to the socket at given path. Once connected, create an input and
an output stream from the socket. Both the input stream and the output
stream are in raw binary mode: read/write APIs of the streams need to use
`bytes` rather than `str`. The API is intended to be used like this:
```
with connect(socket_path) as (input_stream, output_stream):
# Read from input_stream and write into output_stream here
...
```
Socket creation, connection, and closure will be automatically handled
inside this context manager. If any of the socket operations fail, raise
`ConnectionFailure`.
"""
try:
with socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) as client_socket:
client_socket.connect(str(socket_path))
with client_socket.makefile(
mode="rb"
) as input_channel, client_socket.makefile(mode="wb") as output_channel:
yield (input_channel, output_channel)
except OSError as error:
raise ConnectionFailure() from error
def _fetch_commit_paths(repository_path: str) -> Iterable[pathlib.Path]:
return sorted(pathlib.Path(repository_path).iterdir())
class Repository:
# Background: A specific test file has 2 potential locations where it may live.
# 1. Original repository: paths containing the original file. E.g: (.../pyre/source/command/test/integration/fake_repository/commit_000/a.py)
# 2. Execution repository: where the file is being copied. E.g: (/tmp/tmp84sk75h4/repository/a.py), and where the actual incremental/overlay updates & checks will occur.
# The methods in this class will accept file paths of the original repository (category 1).
# Meanwhile, the purpose of the pyre_directory variable is to store the location of the execution repository (category 2).
def __init__(
self,
typeshed_path: pathlib.Path,
base_directory: str,
repository_path: str,
debug: bool,
) -> None:
self._commit_paths: Iterable[pathlib.Path] = _fetch_commit_paths(
repository_path
)
self._pyre_directory: pathlib.Path = pathlib.Path(base_directory) / "repository"
self.debug: bool = debug
self._initialize_pyre_directory(
self._pyre_directory, typeshed_path, base_directory
)
self.socket_path: pathlib.Path = self.start_pyre_and_return_socket_path()
pass
@staticmethod
def _initialize_pyre_directory(
pyre_directory: pathlib.Path, typeshed_path: pathlib.Path, base_directory: str
) -> None:
pathlib.Path(pyre_directory).mkdir()
pyre_configuration_path = pathlib.Path(pyre_directory) / ".pyre_configuration"
pyre_configuration_path.write_text(
json.dumps(
{
"source_directories": ["."],
"typeshed": str(typeshed_path.absolute()),
"optional_search_path": ["stubs"],
}
)
)
watchman_configuration_path = pathlib.Path(pyre_directory) / ".watchmanconfig"
watchman_configuration_path.write_text(json.dumps({}))
def get_repository_directory(self) -> pathlib.Path:
return self._pyre_directory
def get_commit_paths(self) -> Iterable[pathlib.Path]:
return self._commit_paths
def start_pyre_and_return_socket_path(self) -> pathlib.Path:
self.run_pyre(
"--logging-sections",
"-n",
"start",
)
result = self.run_pyre("info")
socket_path = pathlib.Path(json.loads(result)["socket_path"])
if not socket_path.is_socket():
raise RuntimeError(
f"Socket path: {socket_path} does not point to a socket. Path details: {socket_path.stat()}; Is the pyre server running?"
)
return socket_path
def send_update_request(self, request_message: str) -> str:
socket_path = self.socket_path
with connect_in_text_mode(socket_path) as (input_stream, output_stream):
output_stream.write(f"{request_message}\n")
result = input_stream.readline().strip()
return result
def overlay_update(self, file_path: pathlib.Path) -> str:
file_contents = pathlib.Path(file_path).read_text()
python_file_name_without_path = file_path.name
pyre_directory_file_path = (
pathlib.Path(self._pyre_directory) / python_file_name_without_path
)
message = [
"OverlayUpdate",
{
"overlay_id": str(pyre_directory_file_path),
"source_path": str(pyre_directory_file_path),
"code_update": ["NewCode", file_contents],
},
]
return self.send_update_request(json.dumps(message))
def incremental_update(self, file_path: pathlib.Path) -> str:
python_file_name_without_path = file_path.name
pyre_directory_file_path = (
pathlib.Path(self._pyre_directory) / python_file_name_without_path
)
incremental_update_message = [
"IncrementalUpdate",
[str(pyre_directory_file_path)],
]
self.send_update_request(json.dumps(incremental_update_message))
display_type_error_message = [
"DisplayTypeError",
[str(pyre_directory_file_path)],
]
return self.send_update_request(json.dumps(display_type_error_message))
def modify_file(self, file_path: pathlib.Path) -> None:
file_contents = pathlib.Path(file_path).read_text()
python_file_name_without_path = file_path.name
file_path = pathlib.Path(self._pyre_directory) / python_file_name_without_path
file_path.write_text(file_contents)
def _create_empty_file(self, file_path: pathlib.Path) -> None:
python_file_name_without_path = file_path.name
(pathlib.Path(self._pyre_directory) / python_file_name_without_path).unlink(
missing_ok=True
)
(pathlib.Path(self._pyre_directory) / python_file_name_without_path).touch()
def initiate_empty_files(self, file_list: List[pathlib.Path]) -> None:
for file_path in file_list:
self._create_empty_file(file_path)
# File path must be registered by incremental request in order for overlay to work.
self.incremental_update(file_path)
def run_pyre(self, command: str, *arguments: str) -> str:
pyre_client = os.getenv("PYRE_CLIENT", "pyre")
standard_error = None if self.debug else subprocess.DEVNULL
try:
output = subprocess.run(
[pyre_client, "--output=json", command, *arguments],
cwd=self._pyre_directory,
stderr=standard_error,
stdout=subprocess.PIPE,
)
except subprocess.CalledProcessError as error:
if error.returncode not in [0, 1]:
raise error
output = error.output
return output.stdout
@dataclass(frozen=True)
class FileErrorsResult:
file_name: pathlib.Path
overlay_errors: str
incremental_errors: str
def _get_file_errors_result(
repository: Repository, file_path: pathlib.Path
) -> FileErrorsResult:
overlay_errors_response = repository.overlay_update(file_path)
repository.modify_file(file_path)
incremental_errors_response = repository.incremental_update(file_path)
commit_result = FileErrorsResult(
file_path, overlay_errors_response, incremental_errors_response
)
return commit_result
def run_unsaved_changes_test(
typeshed_path: pathlib.Path, repository_path: str, debug: bool
) -> int:
with tempfile.TemporaryDirectory() as base_directory:
repository = Repository(typeshed_path, base_directory, repository_path, debug)
try:
result = 0
for commit in repository.get_commit_paths():
discrepancies: Dict[pathlib.Path, Tuple[str, str]] = {}
python_file_list = list(commit.glob("*.py"))
repository.initiate_empty_files(python_file_list)
for file_path in python_file_list:
commit_result = _get_file_errors_result(repository, file_path)
if commit_result.overlay_errors != commit_result.incremental_errors:
discrepancies[file_path] = (
commit_result.overlay_errors,
commit_result.incremental_errors,
)
LOG.error(
"Found discrepancies in %s for incremental check, file: %s",
commit,
file_path,
)
result = _print_discrepancies(discrepancies, commit.name)
if result:
break
repository.run_pyre("stop")
return result
except Exception as uncaught_pyre_exception:
LOG.error("Uncaught exception: `%s`", str(uncaught_pyre_exception))
LOG.info("Pyre rage: %s", repository.run_pyre("rage"))
raise uncaught_pyre_exception
def _print_discrepancies(
discrepancies: Dict[pathlib.Path, Tuple[str, str]], commit: str
) -> int:
if len(discrepancies) == 0:
return 0
for file_name, (actual_error, expected_error) in discrepancies.items():
LOG.error(
"Difference found for revision: {}, file_name: {}\n".format(
commit, file_name
),
)
LOG.error(
"Actual errors (pyre overlayUpdate): {}\n".format(actual_error),
)
LOG.error(
"Expected errors (pyre incremental): {}\n".format(expected_error),
)
return 1
def run(repository_location: str, typeshed_path: pathlib.Path, debug: bool) -> int:
LOG.info("Running unsaved changes test defined in %s", __file__)
return run_unsaved_changes_test(typeshed_path, repository_location, debug)
def main() -> None:
logging.basicConfig(
level=logging.INFO, format=" >>> %(asctime)s %(levelname)s %(message)s"
)
parser = argparse.ArgumentParser()
parser.add_argument(
"repository_location", help="Path to directory with fake commit list"
)
parser.add_argument(
"--typeshed-path",
help="Path to typeshed.",
)
parser.add_argument("--debug", action="store_true", default=False)
arguments: Namespace = parser.parse_args()
sys.exit(
run(
arguments.repository_location,
pathlib.Path(arguments.typeshed_path),
arguments.debug,
)
)
if __name__ == "__main__":
main() # pragma: no cover