2021-11-07 19:39:03 +00:00
|
|
|
import logging
|
2022-01-16 07:03:04 +00:00
|
|
|
import os
|
2021-11-07 19:39:03 +00:00
|
|
|
import platform
|
2022-01-16 07:03:04 +00:00
|
|
|
import sys
|
2021-11-07 19:39:03 +00:00
|
|
|
|
|
|
|
from unittest.mock import Mock
|
|
|
|
|
2022-01-16 07:03:04 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from sanic import Sanic, __version__
|
2021-11-07 19:39:03 +00:00
|
|
|
from sanic.application.logo import BASE_LOGO
|
2022-01-16 07:03:04 +00:00
|
|
|
from sanic.application.motd import MOTD, MOTDTTY
|
2021-11-07 19:39:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_logo_base(app, run_startup):
|
|
|
|
logs = run_startup(app)
|
|
|
|
|
|
|
|
assert logs[0][1] == logging.DEBUG
|
|
|
|
assert logs[0][2] == BASE_LOGO
|
|
|
|
|
|
|
|
|
|
|
|
def test_motd_with_expected_info(app, run_startup):
|
|
|
|
logs = run_startup(app)
|
|
|
|
|
|
|
|
assert logs[1][2] == f"Sanic v{__version__}"
|
|
|
|
assert logs[3][2] == "mode: debug, single worker"
|
2022-06-27 09:19:26 +01:00
|
|
|
assert logs[4][2] == "server: sanic, HTTP/1.1"
|
2021-11-07 19:39:03 +00:00
|
|
|
assert logs[5][2] == f"python: {platform.python_version()}"
|
|
|
|
assert logs[6][2] == f"platform: {platform.platform()}"
|
|
|
|
|
|
|
|
|
|
|
|
def test_motd_init():
|
|
|
|
_orig = MOTDTTY.set_variables
|
|
|
|
MOTDTTY.set_variables = Mock()
|
|
|
|
motd = MOTDTTY(None, "", {}, {})
|
|
|
|
|
|
|
|
motd.set_variables.assert_called_once()
|
|
|
|
MOTDTTY.set_variables = _orig
|
|
|
|
|
|
|
|
|
|
|
|
def test_motd_display(caplog):
|
|
|
|
motd = MOTDTTY(" foobar ", "", {"one": "1"}, {"two": "2"})
|
|
|
|
|
|
|
|
with caplog.at_level(logging.INFO):
|
|
|
|
motd.display()
|
|
|
|
|
|
|
|
version_line = f"Sanic v{__version__}".center(motd.centering_length)
|
|
|
|
assert (
|
|
|
|
"".join(caplog.messages)
|
|
|
|
== f"""
|
|
|
|
┌────────────────────────────────┐
|
|
|
|
│ {version_line} │
|
|
|
|
│ │
|
|
|
|
├───────────────────────┬────────┤
|
|
|
|
│ foobar │ one: 1 │
|
|
|
|
| ├────────┤
|
|
|
|
│ │ two: 2 │
|
|
|
|
└───────────────────────┴────────┘
|
|
|
|
"""
|
|
|
|
)
|
2022-01-16 07:03:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skipif(sys.version_info < (3, 8), reason="Not on 3.7")
|
|
|
|
def test_reload_dirs(app):
|
|
|
|
app.config.LOGO = None
|
|
|
|
app.config.AUTO_RELOAD = True
|
|
|
|
app.prepare(reload_dir="./", auto_reload=True, motd_display={"foo": "bar"})
|
|
|
|
|
|
|
|
existing = MOTD.output
|
|
|
|
MOTD.output = Mock()
|
|
|
|
|
|
|
|
app.motd("foo")
|
|
|
|
|
|
|
|
MOTD.output.assert_called_once()
|
|
|
|
assert (
|
|
|
|
MOTD.output.call_args.args[2]["auto-reload"]
|
|
|
|
== f"enabled, {os.getcwd()}"
|
|
|
|
)
|
|
|
|
assert MOTD.output.call_args.args[3] == {"foo": "bar"}
|
|
|
|
|
|
|
|
MOTD.output = existing
|
|
|
|
Sanic._app_registry = {}
|