-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathbuild_pypi_sanity_test.py
163 lines (141 loc) · 6.02 KB
/
build_pypi_sanity_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
# 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.
import argparse
import json
import logging
import subprocess
import tempfile
from pathlib import Path
from typing import Any
from venv import EnvBuilder
LOG: logging.Logger = logging.getLogger(__name__)
class AssertionError(Exception):
pass
def production_assert(value: bool, *args: Any) -> None:
if not value:
raise AssertionError(*args)
def validate_configuration(temporary_project_path: Path) -> None:
configuration_path = temporary_project_path / ".pyre_configuration"
try:
configuration = json.loads(configuration_path.read_text())
except json.JSONDecodeError:
raise AssertionError(f"Invalid configuration at `{configuration_path}`")
LOG.warning(f"Successfully created configuration at `{configuration_path}`:")
LOG.warning(json.dumps(configuration, indent=2))
# Confirm configuration explicit typeshed and binary are valid. Missing fields are
# expected if typeshed and binary can be found in a standard location.
typeshed_path = configuration.get("typeshed")
if typeshed_path:
typeshed_path = Path(typeshed_path)
production_assert(typeshed_path.is_dir(), "Explicit typeshed path is invalid.")
production_assert(
(typeshed_path / "stdlib").is_dir(),
"`stdlib` was not included in typeshed.",
)
binary_path = configuration.get("binary")
if binary_path:
binary_path = Path(binary_path)
production_assert(binary_path.is_file(), "Explicit binary path is invalid.")
def run_sanity_test(version: str, use_wheel: bool) -> None:
message = "wheel" if use_wheel else "source distribution"
LOG.warning(f"Sanity testing {message}")
with tempfile.TemporaryDirectory() as temporary_venv:
venv = Path(temporary_venv)
builder = EnvBuilder(system_site_packages=False, clear=True, with_pip=True)
builder.create(venv)
pyre_path = venv / "bin" / "pyre"
pyre_bin_path = venv / "bin" / "pyre.bin"
pyre_upgrade_path = venv / "bin" / "pyre-upgrade"
# Confirm that pypi package can be successfully installed
LOG.warning("Testing PyPi package installation...")
wheel_flag = "--only-binary" if use_wheel else "--no-binary"
subprocess.run(
[
venv / "bin" / "pip",
"install",
"--proxy=http://fwdproxy:8080/",
"--index-url",
"https://test.pypi.org/simple/",
"--extra-index-url",
"https://pypi.org/simple",
wheel_flag,
"pyre-check",
f"pyre-check=={version}",
]
)
production_assert(pyre_path.exists(), "Pyre (client) was not installed.")
production_assert(
pyre_bin_path.exists(),
"Pyre binary (pyre.bin executable) was not installed.",
)
production_assert(pyre_upgrade_path.exists(), "Pyre upgrade was not installed.")
# Create test project.
with tempfile.TemporaryDirectory() as temporary_project:
temporary_project_path = Path(temporary_project)
python_file_path = temporary_project_path / "a.py"
python_file_path.touch()
python_file_path.write_text("# pyre-strict \ndef foo():\n\treturn 1")
# Confirm we can run `pyre init` successfully.
LOG.warning("Testing `pyre init`...")
init_process = subprocess.run(
[str(pyre_path), "init"],
cwd=temporary_project_path,
input=b"n\n.\n",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
error_message = init_process.stderr.decode()
production_assert(
init_process.returncode == 0,
f"Failed to run `pyre init` successfully: {error_message}",
)
validate_configuration(temporary_project_path)
# Confirm `pyre` reports errors as expected.
LOG.warning("Testing `pyre` error reporting...")
result = subprocess.run(
[pyre_path, "--binary", pyre_bin_path, "--output=json", "check"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
cwd=temporary_project_path,
)
try:
errors = json.loads(result.stdout)
except json.JSONDecodeError:
error_message = result.stderr.decode()
raise AssertionError(
f"Pyre did not successfully finish type checking: {error_message}"
)
production_assert(
errors and errors[0]["name"] == "Missing return annotation",
"Incorrect pyre errors returned."
if errors
else "Expected pyre errors but none returned.",
)
# Confirm `pyre-upgrade` runs successfully.
LOG.warning("Testing `pyre upgrade`...")
upgrade_process = subprocess.run(
[str(pyre_upgrade_path), "fixme"],
cwd=temporary_project_path,
input=b"[]",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
error_message = upgrade_process.stderr.decode()
production_assert(
upgrade_process.returncode == 0,
f"Failed to run `pyre-upgrade` successfully: {error_message}",
)
def main() -> None:
parser = argparse.ArgumentParser(
description="Test wheel & source distribution for basic functionality."
)
parser.add_argument("version", type=str)
arguments = parser.parse_args()
version: str = arguments.version
run_sanity_test(version, use_wheel=True)
# TODO(T94611472): Fix PyPi source distribution
# run_sanity_test(version, use_wheel=False)
if __name__ == "__main__":
main()