Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
python-pytest-httpserver/tests/test_release.py at fix-docs · sysfce2/python-pytest-httpserver · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
sysfce2
/
python-pytest-httpserver
Public
forked from
csernazs/pytest-httpserver
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Files
Expand file tree
fix-docs
Breadcrumbs
python-pytest-httpserver
/
tests
/
test_release.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
226 lines (180 loc) · 6.19 KB
fix-docs
Breadcrumbs
python-pytest-httpserver
/
tests
/
test_release.py
Copy path
Top
File metadata and controls
Code
Blame
226 lines (180 loc) · 6.19 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# TODO: skip if poetry is not available or add mark to test it explicitly
import
email
import
re
import
shutil
import
subprocess
import
tarfile
import
zipfile
from
dataclasses
import
dataclass
from
pathlib
import
Path
from
typing
import
Iterable
from
typing
import
Tuple
import
pytest
import
toml
pytestmark
=
pytest
.
mark
.
release
NAME
=
"pytest-httpserver"
NAME_UNDERSCORE
=
NAME
.
replace
(
"-"
,
"_"
)
PY_MAX_VERSION
=
(
3
,
12
)
@
pytest
.
fixture
(
scope
=
"session"
)
def
pyproject_path
()
->
Path
:
return
Path
(
"pyproject.toml"
)
@
pytest
.
fixture
(
scope
=
"session"
)
def
pyproject
(
pyproject_path
:
Path
):
assert
pyproject_path
.
is_file
()
with
pyproject_path
.
open
()
as
infile
:
pyproject
=
toml
.
load
(
infile
)
return
pyproject
class
Wheel
:
def
__init__
(
self
,
path
:
Path
):
self
.
path
=
path
@
property
def
wheel_out_dir
(
self
)
->
Path
:
return
self
.
path
.
parent
.
joinpath
(
"wheel"
)
def
extract
(
self
):
with
zipfile
.
ZipFile
(
self
.
path
)
as
zf
:
zf
.
extractall
(
self
.
wheel_out_dir
)
def
get_meta
(
self
,
version
:
str
,
name
:
str
=
NAME_UNDERSCORE
)
->
email
.
message
.
Message
:
metadata_path
=
self
.
wheel_out_dir
.
joinpath
(
f"
{
name
}
-
{
version
}
.dist-info"
,
"METADATA"
)
with
metadata_path
.
open
()
as
metadata_file
:
msg
=
email
.
message_from_file
(
metadata_file
)
return
msg
class
Sdist
:
def
__init__
(
self
,
path
:
Path
):
self
.
path
=
path
@
property
def
sdist_out_dir
(
self
)
->
Path
:
return
self
.
path
.
parent
.
joinpath
(
"sdist"
)
def
extract
(
self
):
with
tarfile
.
open
(
self
.
path
,
mode
=
"r:gz"
)
as
tf
:
tf
.
extractall
(
self
.
sdist_out_dir
)
@
dataclass
class
Build
:
wheel
:
Wheel
sdist
:
Sdist
def
extract
(
self
):
self
.
wheel
.
extract
()
self
.
sdist
.
extract
()
@
pytest
.
fixture
(
scope
=
"session"
)
def
build
()
->
Iterable
[
Build
]:
dist_path
=
Path
(
"dist"
).
resolve
()
if
dist_path
.
is_dir
():
shutil
.
rmtree
(
dist_path
)
try
:
subprocess
.
run
([
"poetry"
,
"build"
],
check
=
True
)
assert
dist_path
.
is_dir
()
wheels
=
list
(
dist_path
.
glob
(
"*.whl"
))
sdists
=
list
(
dist_path
.
glob
(
"*.tar.gz"
))
assert
len
(
wheels
)
==
1
assert
len
(
sdists
)
==
1
build
=
Build
(
wheel
=
Wheel
(
wheels
[
0
]),
sdist
=
Sdist
(
sdists
[
0
]))
build
.
extract
()
yield
build
finally
:
shutil
.
rmtree
(
dist_path
)
@
pytest
.
fixture
(
scope
=
"session"
)
def
version
(
pyproject
)
->
str
:
return
pyproject
[
"tool"
][
"poetry"
][
"version"
]
def
version_to_tuple
(
version
:
str
)
->
Tuple
:
return
tuple
([
int
(
x
)
for
x
in
version
.
split
(
"."
)])
def
test_no_duplicate_classifiers
(
build
:
Build
,
pyproject
):
pyproject_meta
=
pyproject
[
"tool"
][
"poetry"
]
wheel_meta
=
build
.
wheel
.
get_meta
(
version
=
pyproject_meta
[
"version"
])
classifiers
=
sorted
(
wheel_meta
.
get_all
(
"Classifier"
))
unique_classifiers
=
sorted
(
set
(
wheel_meta
.
get_all
(
"Classifier"
)))
assert
classifiers
==
unique_classifiers
def
test_python_version
(
build
:
Build
,
pyproject
):
pyproject_meta
=
pyproject
[
"tool"
][
"poetry"
]
wheel_meta
=
build
.
wheel
.
get_meta
(
version
=
pyproject_meta
[
"version"
])
python_dependency
=
pyproject_meta
[
"dependencies"
][
"python"
]
m
=
re
.
match
(
r">=(\d+\.\d+)"
,
python_dependency
)
if
m
:
min_version
,
*
_
=
m
.
groups
()
else
:
raise
ValueError
(
python_dependency
)
min_version_tuple
=
version_to_tuple
(
min_version
)
for
classifier
in
wheel_meta
.
get_all
(
"Classifier"
):
if
classifier
.
startswith
(
"Programming Language :: Python ::"
):
version_tuple
=
version_to_tuple
(
classifier
.
split
(
"::"
)[
-
1
].
strip
())
if
len
(
version_tuple
)
>
1
:
assert
version_tuple
>=
min_version_tuple
assert
version_tuple
<
PY_MAX_VERSION
def
test_wheel_no_extra_contents
(
build
:
Build
,
version
:
str
):
wheel_dir
=
build
.
wheel
.
wheel_out_dir
wheel_contents
=
list
(
wheel_dir
.
iterdir
())
assert
len
(
wheel_contents
)
==
2
assert
wheel_dir
.
joinpath
(
NAME_UNDERSCORE
).
is_dir
()
assert
wheel_dir
.
joinpath
(
f"
{
NAME_UNDERSCORE
}
-
{
version
}
.dist-info"
).
is_dir
()
package_contents
=
{
path
.
name
for
path
in
wheel_dir
.
joinpath
(
NAME_UNDERSCORE
).
iterdir
()}
assert
package_contents
==
{
"__init__.py"
,
"blocking_httpserver.py"
,
"httpserver.py"
,
"py.typed"
,
"pytest_plugin.py"
,
}
def
test_sdist_contents
(
build
:
Build
,
version
:
str
):
sdist_base
=
build
.
sdist
.
sdist_out_dir
.
joinpath
(
f"pytest_httpserver-
{
version
}
"
)
subdir_contents
=
{
"."
: {
"CHANGES.rst"
,
"CONTRIBUTION.md"
,
"doc"
,
"example_pytest.py"
,
"example.py"
,
"LICENSE"
,
"PKG-INFO"
,
"pyproject.toml"
,
"pytest_httpserver"
,
"README.md"
,
"tests"
,
},
"doc"
: {
"_static"
,
"api.rst"
,
"background.rst"
,
"changes.rst"
,
"conf.py"
,
"fixtures.rst"
,
"guide.rst"
,
"howto.rst"
,
"index.rst"
,
"Makefile"
,
"tutorial.rst"
,
"upgrade.rst"
,
},
"pytest_httpserver"
: {
"__init__.py"
,
"blocking_httpserver.py"
,
"httpserver.py"
,
"py.typed"
,
"pytest_plugin.py"
,
},
"tests"
: {
"assets"
,
"conftest.py"
,
"examples"
,
"test_blocking_httpserver.py"
,
"test_handler_errors.py"
,
"test_headers.py"
,
"test_ip_protocols.py"
,
"test_json_matcher.py"
,
"test_mixed.py"
,
"test_oneshot.py"
,
"test_ordered.py"
,
"test_permanent.py"
,
"test_parse_qs.py"
,
"test_port_changing.py"
,
"test_querymatcher.py"
,
"test_querystring.py"
,
"test_release.py"
,
"test_ssl.py"
,
"test_urimatch.py"
,
"test_wait.py"
,
"test_with_statement.py"
,
},
}
for
subdir
,
subdir_content
in
subdir_contents
.
items
():
contents
=
{
path
.
name
for
path
in
sdist_base
.
joinpath
(
subdir
).
iterdir
()}
assert
contents
==
subdir_content
def
test_poetry_check
():
subprocess
.
run
([
"poetry"
,
"check"
],
check
=
True
)
You can’t perform that action at this time.