forked from mongodb/mongo-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
green_framework_test.py
117 lines (88 loc) · 3.05 KB
/
green_framework_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
# Copyright 2015-present MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Test PyMongo with a variety of greenlet-based monkey-patching frameworks."""
from __future__ import annotations
import getopt
import sys
import pytest
def run_gevent():
"""Prepare to run tests with Gevent. Can raise ImportError."""
from gevent import monkey
monkey.patch_all()
def run_eventlet():
"""Prepare to run tests with Eventlet. Can raise ImportError."""
import eventlet
# https://github.com/eventlet/eventlet/issues/401
eventlet.sleep()
eventlet.monkey_patch()
FRAMEWORKS = {
"gevent": run_gevent,
"eventlet": run_eventlet,
}
def list_frameworks():
"""Tell the user what framework names are valid."""
sys.stdout.write(
"""Testable frameworks: %s
Note that membership in this list means the framework can be tested with
PyMongo, not necessarily that it is officially supported.
"""
% ", ".join(sorted(FRAMEWORKS))
)
def run(framework_name, *args):
"""Run tests with monkey-patching enabled. Can raise ImportError."""
# Monkey-patch.
FRAMEWORKS[framework_name]()
arg_list = list(args)
# Never run async tests with a framework
if len(arg_list) <= 1:
arg_list.extend(["-m", "not default_async and default"])
else:
for i in range(len(arg_list) - 1):
if "-m" in arg_list[i]:
arg_list[i + 1] = f"not default_async and {arg_list[i + 1]}"
# Run the tests.
sys.exit(pytest.main(arg_list))
def main():
"""Parse options and run tests."""
usage = f"""python {sys.argv[0]} FRAMEWORK_NAME
Test PyMongo with a variety of greenlet-based monkey-patching frameworks. See
python {sys.argv[0]} --help-frameworks."""
try:
opts, args = getopt.getopt(sys.argv[1:], "h", ["help", "help-frameworks"])
except getopt.GetoptError as err:
print(str(err))
print(usage)
sys.exit(2)
for option_name, _ in opts:
if option_name in ("-h", "--help"):
print(usage)
sys.exit()
elif option_name == "--help-frameworks":
list_frameworks()
sys.exit()
else:
raise AssertionError("unhandled option")
if not args:
print(usage)
sys.exit(1)
if args[0] not in FRAMEWORKS:
print("%r is not a testable framework.\n" % args[0])
list_frameworks()
sys.exit(1)
run(
args[0],
*args[1:], # Framework name.
) # Command line args to pytest, like what test to run.
if __name__ == "__main__":
main()