-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PYTHON-5207 Convert mod_wsgi tests to use the new test runner #2202
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
36b5acb
PYTHON-5207 Convert mod_wsgi tests to use the new test runner
blink1073 56e2982
clean up tasks
blink1073 79028b6
clean up tasks
blink1073 9d5f94b
fix options logic
blink1073 77c85e9
fix tests
blink1073 d2d8c7d
fix test run
blink1073 baa6ba6
fix test run
blink1073 97df14b
fix test run
blink1073 82c0e41
fix teardown
blink1073 12707ba
update env var name
blink1073 1c57778
fix comment
blink1073 ba5d535
fix handling of variables
blink1073 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
from __future__ import annotations | ||
|
||
import os | ||
import sys | ||
import time | ||
import urllib.error | ||
import urllib.request | ||
from pathlib import Path | ||
from shutil import which | ||
|
||
from utils import LOGGER, ROOT, run_command, write_env | ||
|
||
|
||
def make_request(url, timeout=10): | ||
for _ in range(int(timeout)): | ||
try: | ||
urllib.request.urlopen(url) # noqa: S310 | ||
return | ||
except urllib.error.HTTPError: | ||
pass | ||
time.sleep(1) | ||
raise TimeoutError(f"Failed to access {url}") | ||
|
||
|
||
def setup_mod_wsgi(sub_test_name: str) -> None: | ||
env = os.environ.copy() | ||
if sub_test_name == "embedded": | ||
env["MOD_WSGI_CONF"] = "mod_wsgi_test_embedded.conf" | ||
elif sub_test_name == "standalone": | ||
env["MOD_WSGI_CONF"] = "mod_wsgi_test.conf" | ||
else: | ||
raise ValueError("mod_wsgi sub test must be either 'standalone' or 'embedded'") | ||
write_env("MOD_WSGI_CONF", env["MOD_WSGI_CONF"]) | ||
apache = which("apache2") | ||
if not apache and Path("/usr/lib/apache2/mpm-prefork/apache2").exists(): | ||
apache = "/usr/lib/apache2/mpm-prefork/apache2" | ||
if apache: | ||
apache_config = "apache24ubuntu161404.conf" | ||
else: | ||
apache = which("httpd") | ||
if not apache: | ||
raise ValueError("Could not find apache2 or httpd") | ||
apache_config = "apache22amazon.conf" | ||
python_version = ".".join(str(val) for val in sys.version_info[:2]) | ||
mod_wsgi_version = 4 | ||
so_file = f"/opt/python/mod_wsgi/python_version/{python_version}/mod_wsgi_version/{mod_wsgi_version}/mod_wsgi.so" | ||
write_env("MOD_WSGI_SO", so_file) | ||
env["MOD_WSGI_SO"] = so_file | ||
env["PYTHONHOME"] = f"/opt/python/{python_version}" | ||
env["PROJECT_DIRECTORY"] = project_directory = str(ROOT) | ||
write_env("APACHE_BINARY", apache) | ||
write_env("APACHE_CONFIG", apache_config) | ||
uri1 = f"http://localhost:8080/interpreter1{project_directory}" | ||
write_env("TEST_URI1", uri1) | ||
uri2 = f"http://localhost:8080/interpreter2{project_directory}" | ||
write_env("TEST_URI2", uri2) | ||
run_command(f"{apache} -k start -f {ROOT}/test/mod_wsgi_test/{apache_config}", env=env) | ||
|
||
# Wait for the endpoints to be available. | ||
try: | ||
make_request(uri1, 10) | ||
make_request(uri2, 10) | ||
except Exception as e: | ||
LOGGER.error(Path("error_log").read_text()) | ||
raise e | ||
|
||
|
||
def test_mod_wsgi() -> None: | ||
sys.path.insert(0, ROOT) | ||
from test.mod_wsgi_test.test_client import main, parse_args | ||
|
||
uri1 = os.environ["TEST_URI1"] | ||
uri2 = os.environ["TEST_URI2"] | ||
args = f"-n 25000 -t 100 parallel {uri1} {uri2}" | ||
try: | ||
main(*parse_args(args.split())) | ||
|
||
args = f"-n 25000 serial {uri1} {uri2}" | ||
main(*parse_args(args.split())) | ||
except Exception as e: | ||
LOGGER.error(Path("error_log").read_text()) | ||
raise e | ||
|
||
|
||
def teardown_mod_wsgi() -> None: | ||
apache = os.environ["APACHE_BINARY"] | ||
apache_config = os.environ["APACHE_CONFIG"] | ||
|
||
run_command(f"{apache} -k stop -f {ROOT}/test/mod_wsgi_test/{apache_config}") | ||
|
||
|
||
if __name__ == "__main__": | ||
setup_mod_wsgi() |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the
test_mod_wsgi
call contains failed tests, will thisreturn
statement obfuscate them?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it would have been raised as an exception