sanic/tests
L. Kärkkäinen 120f0262f7
Fix Ctrl+C and tests on Windows. (#1808)
* Fix Ctrl+C on Windows.

* Disable testing of a function N/A on Windows.

* Add test for coverage, avoid crash on missing _stopping.

* Initialise StreamingHTTPResponse.protocol = None

* Improved comments.

* Reduce amount of data in test_request_stream to avoid failures on Windows.

* The Windows test doesn't work on Windows :(

* Use port numbers more likely to be free than 8000.

* Disable the other signal tests on Windows as well.

* Windows doesn't properly support SO_REUSEADDR, so that's disabled in Python, and thus rebinding fails. For successful testing, reuse port instead.

* app.run argument handling: added server kwargs (alike create_server), added warning on extra kwargs, made auto_reload explicit argument. Another go at Windows tests

* Revert "app.run argument handling: added server kwargs (alike create_server), added warning on extra kwargs, made auto_reload explicit argument. Another go at Windows tests"

This reverts commit dc5d682448.

* Use random test server port on most tests. Should avoid port/addr reuse issues.

* Another test to random port instead of 8000.

* Fix deprecation warnings about missing name on Sanic() in tests.

* Linter and typing

* Increase test coverage

* Rewrite test for ctrlc_windows_workaround

* py36 compat

* py36 compat

* py36 compat

* Don't rely on loop internals but add a stopping flag to app.

* App may be restarted.

* py36 compat

* Linter

* Add a constant for OS checking.

Co-authored-by: L. Kärkkäinen <tronic@users.noreply.github.com>
2020-03-25 21:42:46 -07:00
..
benchmark Create requests-async based TestClient, remove aiohttp dependency, drop Python 3.5 2019-04-30 15:26:06 +03:00
certs initial commit 2017-03-03 11:44:50 -05:00
performance Create requests-async based TestClient, remove aiohttp dependency, drop Python 3.5 2019-04-30 15:26:06 +03:00
static Add content_type flag to Sanic.static (#1267) 2018-07-20 22:31:15 -07:00
conftest.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_app.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_asgi_client.py Increase testing coverage for ASGI 2019-06-19 00:38:58 +03:00
test_asgi.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_bad_request.py No tracebacks on normal errors and prettier error pages (#1768) 2020-01-20 08:58:14 -06:00
test_blueprint_group.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_blueprints.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_config.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_cookies.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_create_task.py Create requests-async based TestClient, remove aiohttp dependency, drop Python 3.5 2019-04-30 15:26:06 +03:00
test_custom_protocol.py Create requests-async based TestClient, remove aiohttp dependency, drop Python 3.5 2019-04-30 15:26:06 +03:00
test_custom_request.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_dynamic_routes.py Create requests-async based TestClient, remove aiohttp dependency, drop Python 3.5 2019-04-30 15:26:06 +03:00
test_exceptions_handler.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_exceptions.py No tracebacks on normal errors and prettier error pages (#1768) 2020-01-20 08:58:14 -06:00
test_headers.py deprecate None value support for app name (#1705) 2019-10-23 09:12:20 -07:00
test_helpers.py Add custom request support to ASGI mode; fix a couple tests 2019-06-24 22:59:23 +03:00
test_keep_alive_timeout.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_logging.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_logo.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_middleware.py No tracebacks on normal errors and prettier error pages (#1768) 2020-01-20 08:58:14 -06:00
test_multiprocessing.py Fix tests for multiprocessing pickle app and pickle blueprint (#1680) 2019-09-18 10:22:24 -07:00
test_named_routes.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_payload_too_large.py No tracebacks on normal errors and prettier error pages (#1768) 2020-01-20 08:58:14 -06:00
test_redirect.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_request_buffer_queue_size.py Swap out requests-async for httpx (#1728) 2019-12-20 19:23:52 -08:00
test_request_cancel.py GIT-1591 Strict Slashes behavior fix (#1594) 2019-06-06 07:21:58 -05:00
test_request_data.py Remove the old request context API deprecated in 19.9. Use request.ctx instead. (#1801) 2020-03-05 21:40:46 -08:00
test_request_stream.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_request_timeout.py bump httpx dependency version to 0.11.1 (#1794) 2020-03-01 11:42:11 -08:00
test_requests.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_response_timeout.py No tracebacks on normal errors and prettier error pages (#1768) 2020-01-20 08:58:14 -06:00
test_response.py Streaming migration for 20.3 release (#1800) 2020-03-24 10:11:09 -07:00
test_routes.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_server_events.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_signal_handlers.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_static.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_test_client_port.py Fix Ctrl+C and tests on Windows. (#1808) 2020-03-25 21:42:46 -07:00
test_url_building.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_url_for_static.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_url_for.py Fix #1788 incorrect url_for for routes with hosts, added tests. (#1789) 2020-02-21 09:10:22 -08:00
test_utf8.py Swap out requests-async for httpx (#1728) 2019-12-20 19:23:52 -08:00
test_vhosts.py Run linter 2018-12-30 13:18:06 +02:00
test_views.py Use f-strings instead of str.format() (#1793) 2020-02-25 14:01:13 -06:00
test_worker.py Create requests-async based TestClient, remove aiohttp dependency, drop Python 3.5 2019-04-30 15:26:06 +03:00