Marked skipped tests. Flake8 pass.
This commit is contained in:
parent
a09471ac6c
commit
f3f4a72eb3
|
@ -1,8 +1,10 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
import types
|
import types
|
||||||
|
|
||||||
SANIC_PREFIX = 'SANIC_'
|
SANIC_PREFIX = 'SANIC_'
|
||||||
|
|
||||||
|
|
||||||
class Config(dict):
|
class Config(dict):
|
||||||
def __init__(self, defaults=None, load_env=True):
|
def __init__(self, defaults=None, load_env=True):
|
||||||
super().__init__(defaults or {})
|
super().__init__(defaults or {})
|
||||||
|
|
|
@ -331,7 +331,11 @@ def stream(
|
||||||
:param headers: Custom Headers.
|
:param headers: Custom Headers.
|
||||||
"""
|
"""
|
||||||
return StreamingHTTPResponse(
|
return StreamingHTTPResponse(
|
||||||
streaming_fn, headers=headers, content_type=content_type, status=status)
|
streaming_fn,
|
||||||
|
headers=headers,
|
||||||
|
content_type=content_type,
|
||||||
|
status=status
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def redirect(to, headers=None, status=302,
|
def redirect(to, headers=None, status=302,
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
|
import pytest
|
||||||
|
|
||||||
from sanic import Sanic
|
from sanic import Sanic
|
||||||
from sanic.response import text
|
|
||||||
from sanic.exceptions import PayloadTooLarge
|
from sanic.exceptions import PayloadTooLarge
|
||||||
|
from sanic.response import text
|
||||||
|
|
||||||
data_received_app = Sanic('data_received')
|
data_received_app = Sanic('data_received')
|
||||||
data_received_app.config.REQUEST_MAX_SIZE = 1
|
data_received_app.config.REQUEST_MAX_SIZE = 1
|
||||||
|
@ -43,6 +45,7 @@ async def handler3(request):
|
||||||
return text('OK')
|
return text('OK')
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip("https://github.com/channelcat/sanic/issues/598")
|
||||||
def test_payload_too_large_at_on_header_default():
|
def test_payload_too_large_at_on_header_default():
|
||||||
data = 'a' * 1000
|
data = 'a' * 1000
|
||||||
response = on_header_default_app.test_client.post(
|
response = on_header_default_app.test_client.post(
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
from sanic import Sanic
|
|
||||||
import asyncio
|
import asyncio
|
||||||
from sanic.response import text
|
|
||||||
from sanic.exceptions import RequestTimeout
|
import pytest
|
||||||
|
|
||||||
|
from sanic import Sanic
|
||||||
from sanic.config import Config
|
from sanic.config import Config
|
||||||
|
from sanic.exceptions import RequestTimeout
|
||||||
|
from sanic.response import text
|
||||||
|
|
||||||
Config.REQUEST_TIMEOUT = 1
|
Config.REQUEST_TIMEOUT = 1
|
||||||
request_timeout_app = Sanic('test_request_timeout')
|
request_timeout_app = Sanic('test_request_timeout')
|
||||||
|
@ -20,6 +23,7 @@ def handler_exception(request, exception):
|
||||||
return text('Request Timeout from error_handler.', 408)
|
return text('Request Timeout from error_handler.', 408)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip("https://github.com/channelcat/sanic/issues/598")
|
||||||
def test_server_error_request_timeout():
|
def test_server_error_request_timeout():
|
||||||
request, response = request_timeout_app.test_client.get('/1')
|
request, response = request_timeout_app.test_client.get('/1')
|
||||||
assert response.status == 408
|
assert response.status == 408
|
||||||
|
@ -32,6 +36,7 @@ async def handler_2(request):
|
||||||
return text('OK')
|
return text('OK')
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip("https://github.com/channelcat/sanic/issues/598")
|
||||||
def test_default_server_error_request_timeout():
|
def test_default_server_error_request_timeout():
|
||||||
request, response = request_timeout_default_app.test_client.get('/1')
|
request, response = request_timeout_default_app.test_client.get('/1')
|
||||||
assert response.status == 408
|
assert response.status == 408
|
||||||
|
|
Loading…
Reference in New Issue
Block a user