Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
97635111af | ||
|
|
7f3fe40cd4 | ||
|
|
ea34bcd849 | ||
|
|
05f758583b | ||
|
|
760c74a293 | ||
|
|
9def46beb8 | ||
|
|
04be8e95a5 | ||
|
|
78ced20fc7 | ||
|
|
c3003413d3 | ||
|
|
fe3fdc5d83 | ||
|
|
b66fb6f9e8 | ||
|
|
bf6175fb20 | ||
|
|
58ca887be4 |
12
.github/FUNDING.yml
vendored
Normal file
12
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||||
|
patreon: # Replace with a single Patreon username
|
||||||
|
open_collective: sanic-org # Replace with a single Open Collective username
|
||||||
|
ko_fi: # Replace with a single Ko-fi username
|
||||||
|
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||||
|
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||||
|
liberapay: # Replace with a single Liberapay username
|
||||||
|
issuehunt: # Replace with a single IssueHunt username
|
||||||
|
otechie: # Replace with a single Otechie username
|
||||||
|
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
||||||
@@ -1 +1 @@
|
|||||||
__version__ = "20.12.0"
|
__version__ = "20.12.2"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ class Sanic:
|
|||||||
strict_slashes=False,
|
strict_slashes=False,
|
||||||
log_config=None,
|
log_config=None,
|
||||||
configure_logging=True,
|
configure_logging=True,
|
||||||
|
register=None,
|
||||||
):
|
):
|
||||||
|
|
||||||
# Get name from previous stack frame
|
# Get name from previous stack frame
|
||||||
@@ -88,7 +89,11 @@ class Sanic:
|
|||||||
# Register alternative method names
|
# Register alternative method names
|
||||||
self.go_fast = self.run
|
self.go_fast = self.run
|
||||||
|
|
||||||
self.__class__.register_app(self)
|
if register is not None:
|
||||||
|
self.config.REGISTER = register
|
||||||
|
|
||||||
|
if self.config.REGISTER:
|
||||||
|
self.__class__.register_app(self)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def loop(self):
|
def loop(self):
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ DEFAULT_CONFIG = {
|
|||||||
"PROXIES_COUNT": None,
|
"PROXIES_COUNT": None,
|
||||||
"FORWARDED_FOR_HEADER": "X-Forwarded-For",
|
"FORWARDED_FOR_HEADER": "X-Forwarded-For",
|
||||||
"FALLBACK_ERROR_FORMAT": "html",
|
"FALLBACK_ERROR_FORMAT": "html",
|
||||||
|
"REGISTER": True,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
5
setup.py
5
setup.py
@@ -57,7 +57,8 @@ setup_kwargs = {
|
|||||||
"author": "Sanic Community",
|
"author": "Sanic Community",
|
||||||
"author_email": "admhpkns@gmail.com",
|
"author_email": "admhpkns@gmail.com",
|
||||||
"description": (
|
"description": (
|
||||||
"A web server and web framework that's written to go fast. Build fast. Run fast."
|
"A web server and web framework that's written to go fast. "
|
||||||
|
"Build fast. Run fast."
|
||||||
),
|
),
|
||||||
"long_description": long_description,
|
"long_description": long_description,
|
||||||
"packages": ["sanic"],
|
"packages": ["sanic"],
|
||||||
@@ -80,7 +81,7 @@ env_dependency = (
|
|||||||
'; sys_platform != "win32" ' 'and implementation_name == "cpython"'
|
'; sys_platform != "win32" ' 'and implementation_name == "cpython"'
|
||||||
)
|
)
|
||||||
ujson = "ujson>=1.35" + env_dependency
|
ujson = "ujson>=1.35" + env_dependency
|
||||||
uvloop = "uvloop>=0.5.3" + env_dependency
|
uvloop = "uvloop>=0.5.3,<0.15.0" + env_dependency
|
||||||
|
|
||||||
requirements = [
|
requirements = [
|
||||||
"httptools>=0.0.10",
|
"httptools>=0.0.10",
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import logging
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
from inspect import isawaitable
|
from inspect import isawaitable
|
||||||
|
from os import environ
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
@@ -290,6 +291,7 @@ def test_app_registry_name_reuse():
|
|||||||
with pytest.raises(SanicException):
|
with pytest.raises(SanicException):
|
||||||
Sanic("test")
|
Sanic("test")
|
||||||
Sanic.test_mode = True
|
Sanic.test_mode = True
|
||||||
|
Sanic("test")
|
||||||
|
|
||||||
|
|
||||||
def test_app_registry_retrieval():
|
def test_app_registry_retrieval():
|
||||||
@@ -306,3 +308,17 @@ def test_get_app_does_not_exist_force_create():
|
|||||||
assert isinstance(
|
assert isinstance(
|
||||||
Sanic.get_app("does-not-exist", force_create=True), Sanic
|
Sanic.get_app("does-not-exist", force_create=True), Sanic
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_app_no_registry():
|
||||||
|
Sanic("no-register", register=False)
|
||||||
|
with pytest.raises(SanicException):
|
||||||
|
Sanic.get_app("no-register")
|
||||||
|
|
||||||
|
|
||||||
|
def test_app_no_registry_env():
|
||||||
|
environ["SANIC_REGISTER"] = "False"
|
||||||
|
Sanic("no-register")
|
||||||
|
with pytest.raises(SanicException):
|
||||||
|
Sanic.get_app("no-register")
|
||||||
|
del environ["SANIC_REGISTER"]
|
||||||
|
|||||||
Reference in New Issue
Block a user