forked from typeshed-internal/stub_uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_integration.py
215 lines (168 loc) · 7.66 KB
/
test_integration.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
"""
Integration tests for build scripts. These should not change
anything on PyPI, but can make PyPI queries and may expect
a typeshed checkout side by side.
"""
import os
from pathlib import Path
import pytest
from packaging.requirements import Requirement
from packaging.version import Version
from stub_uploader import build_wheel, get_version
from stub_uploader.const import THIRD_PARTY_NAMESPACE
from stub_uploader.metadata import (
InvalidRequires,
Metadata,
read_metadata,
recursive_verify,
sort_by_dependency,
strip_types_prefix,
verify_external_req,
verify_requires_python,
verify_typeshed_req,
)
from stub_uploader.ts_data import read_typeshed_data
TYPESHED = "../typeshed"
THIRD_PARTY_PATH = Path(TYPESHED) / THIRD_PARTY_NAMESPACE
def test_fetch_pypi_versions() -> None:
"""Check that we can query PyPI for package increments."""
assert Version("1.16.0") in get_version.fetch_pypi_versions("types-six")
assert Version("1.5.4") in get_version.fetch_pypi_versions("types-typed-ast")
assert not get_version.fetch_pypi_versions("types-nonexistent-distribution")
@pytest.mark.parametrize("distribution", os.listdir(THIRD_PARTY_PATH))
def test_build_wheel(distribution: str) -> None:
"""Check that we can build wheels for all distributions."""
tmp_dir = build_wheel.main(TYPESHED, distribution, version="1.1.1")
assert tmp_dir.endswith("/dist")
assert list(os.listdir(tmp_dir)) # check it is not empty
@pytest.mark.parametrize("distribution", os.listdir(THIRD_PARTY_PATH))
def test_version_increment(distribution: str) -> None:
get_version.determine_stub_version(read_metadata(TYPESHED, distribution))
def test_unvalidated_properties() -> None:
m = Metadata("fake", {"version": "0.1", "requires": ["numpy", "types-six>=0.1"]})
assert [r.name for r in m._unvalidated_requires] == ["numpy", "types-six"]
assert [r.name for r in m._unvalidated_requires_external] == ["numpy"]
assert [r.name for r in m._unvalidated_requires_typeshed] == ["types-six"]
def test_verify_typeshed_req() -> None:
# Check that some known dependencies verify as valid.
verify_typeshed_req(Requirement("types-six"))
verify_typeshed_req(Requirement("types-six==0.1.1"))
verify_typeshed_req(Requirement("types-typed-ast"))
verify_typeshed_req(Requirement("types-typed-ast>=3.7"))
with pytest.raises(InvalidRequires, match="to start with types-"):
verify_typeshed_req(Requirement("unsupported"))
with pytest.raises(InvalidRequires, match="to be uploaded from stub_uploader"):
verify_typeshed_req(Requirement("types-unknown-xxx"))
m = Metadata("mypy", {"version": "0.1", "requires": ["types-unknown-xxx"]})
assert m.requires_typeshed == []
def test_verify_external_req() -> None:
# Check that some known dependencies verify as valid.
verify_external_req(
Requirement("typing-extensions"), "mypy", _unsafe_ignore_allowlist=True
)
verify_external_req(
Requirement("mypy-extensions"), "mypy", _unsafe_ignore_allowlist=True
)
# Check that types-foo can depend on foo
verify_external_req(Requirement("setuptools"), "setuptools")
with pytest.raises(
InvalidRequires, match="to be present in the stub_uploader allowlist"
):
verify_external_req(Requirement("typing-extensions"), "mypy")
m = Metadata("pandas", {"version": "0.1", "requires": ["numpy"]})
assert [r.name for r in m.requires_external] == ["numpy"]
with pytest.raises(InvalidRequires, match="to be listed in mypy's requires_dist"):
verify_external_req(Requirement("numpy"), "mypy")
with pytest.raises(InvalidRequires, match="to not be uploaded from stub_uploader"):
verify_external_req(Requirement("types-typed-ast"), "mypy")
with pytest.raises(InvalidRequires, match="to not start with types-"):
verify_external_req(Requirement("types-unknown-xxx"), "mypy")
m = Metadata("mypy", {"version": "0.1", "requires": ["numpy"]})
with pytest.raises(InvalidRequires, match="to be listed in mypy's requires_dist"):
m.requires_external
with pytest.raises(InvalidRequires, match="to be listed in mypy's requires_dist"):
recursive_verify(m, TYPESHED)
# TODO: change tests once METADATA.toml specifies whether a dist is on PyPI
m = Metadata("gdb", {"version": "0.1", "requires": []})
assert m.requires_external == []
m = Metadata("gdb", {"version": "0.1", "requires": ["cryptography"]})
with pytest.raises(InvalidRequires, match="no upstream distribution on PyPI"):
m.requires_external
# Check differing runtime and stub dependencies
verify_external_req(Requirement("pandas-stubs"), "geopandas")
with pytest.raises(
InvalidRequires,
match=(
r"Expected dependency pandas to be present in the stub_uploader allowlist"
r"\. Did you mean pandas-stubs\?"
),
):
verify_external_req(Requirement("pandas"), "geopandas")
def test_dependency_order() -> None:
"""Test sort_by_dependency correctly sorts all packages by dependency."""
distributions = os.listdir(os.path.join(TYPESHED, "stubs"))
to_upload = list(sort_by_dependency(TYPESHED, distributions))
assert len(set(to_upload)) == len(to_upload)
for distribution in distributions:
for req in read_metadata(TYPESHED, distribution).requires_typeshed:
assert to_upload.index(strip_types_prefix(req.name)) < to_upload.index(
distribution
)
def test_recursive_verify_single() -> None:
m = read_metadata(TYPESHED, "six")
assert recursive_verify(m, TYPESHED) == {"types-six"}
m = read_metadata(TYPESHED, "requests-oauthlib")
assert recursive_verify(m, TYPESHED) == {
"types-requests-oauthlib",
"types-requests",
"types-oauthlib",
}
def test_dependency_order_single() -> None:
assert list(sort_by_dependency(TYPESHED, ["requests-oauthlib"])) == [
"requests-oauthlib"
]
assert list(sort_by_dependency(TYPESHED, ["requests-oauthlib", "oauthlib"])) == [
"oauthlib",
"requests-oauthlib",
]
@pytest.mark.parametrize("distribution", os.listdir(THIRD_PARTY_PATH))
def test_recursive_verify(distribution: str) -> None:
recursive_verify(read_metadata(TYPESHED, distribution), TYPESHED)
def test_read_typeshed_data() -> None:
read_typeshed_data(Path(TYPESHED))
def test_verify_requires_python() -> None:
verify_requires_python(">=3.10")
with pytest.raises(InvalidRequires, match="Invalid requires_python specifier"):
verify_requires_python(">=fake")
with pytest.raises(
InvalidRequires, match="Expected requires_python to be a '>=' specifier"
):
verify_requires_python("==3.10")
@pytest.mark.parametrize(
"distribution,expected_packages",
[
("fpdf2", ["fpdf-stubs"]),
("pytz", ["pytz-stubs"]),
("protobuf", ["google-stubs"]),
("google-cloud-ndb", ["google-stubs"]),
],
)
def test_pkg_data_top_level_packages(
distribution: str, expected_packages: list[str]
) -> None:
pkg_data = build_wheel.collect_package_data(THIRD_PARTY_PATH / distribution)
assert pkg_data.top_level_packages == expected_packages
@pytest.mark.parametrize(
"distribution,expected_packages",
[
("fpdf2", ["fpdf-stubs"]),
("pytz", ["pytz-stubs"]),
("protobuf", ["google-stubs.protobuf"]),
("google-cloud-ndb", ["google-stubs.cloud.ndb"]),
],
)
def test_pkg_data_non_namespace_packages(
distribution: str, expected_packages: list[str]
) -> None:
pkg_data = build_wheel.collect_package_data(THIRD_PARTY_PATH / distribution)
assert pkg_data.top_level_non_namespace_packages == expected_packages