2020-06-29 06:55:32 +01:00
|
|
|
import asyncio
|
|
|
|
import logging
|
|
|
|
import os
|
2021-04-06 21:32:01 +01:00
|
|
|
import platform
|
2020-06-29 06:55:32 +01:00
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2021-12-21 20:56:12 +00:00
|
|
|
from string import ascii_lowercase
|
|
|
|
|
2020-09-27 00:58:36 +01:00
|
|
|
import httpcore
|
2020-06-29 06:55:32 +01:00
|
|
|
import httpx
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from sanic import Sanic
|
|
|
|
from sanic.response import text
|
|
|
|
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.skipif(os.name != "posix", reason="UNIX only")
|
|
|
|
SOCKPATH = "/tmp/sanictest.sock"
|
|
|
|
SOCKPATH2 = "/tmp/sanictest2.sock"
|
2021-12-23 22:30:27 +00:00
|
|
|
httpx_version = tuple(
|
|
|
|
map(int, httpx.__version__.strip(ascii_lowercase).split("."))
|
|
|
|
)
|
2020-06-29 06:55:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
def socket_cleanup():
|
|
|
|
try:
|
|
|
|
os.unlink(SOCKPATH)
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
os.unlink(SOCKPATH2)
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
# Run test function
|
|
|
|
yield
|
|
|
|
try:
|
|
|
|
os.unlink(SOCKPATH2)
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
os.unlink(SOCKPATH)
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def test_unix_socket_creation(caplog):
|
|
|
|
from socket import AF_UNIX, socket
|
|
|
|
|
|
|
|
with socket(AF_UNIX) as sock:
|
|
|
|
sock.bind(SOCKPATH)
|
|
|
|
assert os.path.exists(SOCKPATH)
|
|
|
|
ino = os.stat(SOCKPATH).st_ino
|
|
|
|
|
|
|
|
app = Sanic(name=__name__)
|
|
|
|
|
|
|
|
@app.listener("after_server_start")
|
|
|
|
def running(app, loop):
|
|
|
|
assert os.path.exists(SOCKPATH)
|
|
|
|
assert ino != os.stat(SOCKPATH).st_ino
|
|
|
|
app.stop()
|
|
|
|
|
|
|
|
with caplog.at_level(logging.INFO):
|
|
|
|
app.run(unix=SOCKPATH)
|
|
|
|
|
|
|
|
assert (
|
|
|
|
"sanic.root",
|
|
|
|
logging.INFO,
|
|
|
|
f"Goin' Fast @ {SOCKPATH} http://...",
|
|
|
|
) in caplog.record_tuples
|
|
|
|
assert not os.path.exists(SOCKPATH)
|
|
|
|
|
|
|
|
|
|
|
|
def test_invalid_paths():
|
|
|
|
app = Sanic(name=__name__)
|
|
|
|
|
|
|
|
with pytest.raises(FileExistsError):
|
|
|
|
app.run(unix=".")
|
|
|
|
|
|
|
|
with pytest.raises(FileNotFoundError):
|
|
|
|
app.run(unix="no-such-directory/sanictest.sock")
|
|
|
|
|
|
|
|
|
|
|
|
def test_dont_replace_file():
|
|
|
|
with open(SOCKPATH, "w") as f:
|
|
|
|
f.write("File, not socket")
|
|
|
|
|
|
|
|
app = Sanic(name=__name__)
|
|
|
|
|
|
|
|
@app.listener("after_server_start")
|
|
|
|
def stop(app, loop):
|
|
|
|
app.stop()
|
|
|
|
|
|
|
|
with pytest.raises(FileExistsError):
|
|
|
|
app.run(unix=SOCKPATH)
|
|
|
|
|
|
|
|
|
|
|
|
def test_dont_follow_symlink():
|
|
|
|
from socket import AF_UNIX, socket
|
|
|
|
|
|
|
|
with socket(AF_UNIX) as sock:
|
|
|
|
sock.bind(SOCKPATH2)
|
|
|
|
os.symlink(SOCKPATH2, SOCKPATH)
|
|
|
|
|
|
|
|
app = Sanic(name=__name__)
|
|
|
|
|
|
|
|
@app.listener("after_server_start")
|
|
|
|
def stop(app, loop):
|
|
|
|
app.stop()
|
|
|
|
|
|
|
|
with pytest.raises(FileExistsError):
|
|
|
|
app.run(unix=SOCKPATH)
|
|
|
|
|
|
|
|
|
|
|
|
def test_socket_deleted_while_running():
|
|
|
|
app = Sanic(name=__name__)
|
|
|
|
|
|
|
|
@app.listener("after_server_start")
|
|
|
|
async def hack(app, loop):
|
|
|
|
os.unlink(SOCKPATH)
|
|
|
|
app.stop()
|
|
|
|
|
|
|
|
app.run(host="myhost.invalid", unix=SOCKPATH)
|
|
|
|
|
|
|
|
|
|
|
|
def test_socket_replaced_with_file():
|
|
|
|
app = Sanic(name=__name__)
|
|
|
|
|
|
|
|
@app.listener("after_server_start")
|
|
|
|
async def hack(app, loop):
|
|
|
|
os.unlink(SOCKPATH)
|
|
|
|
with open(SOCKPATH, "w") as f:
|
|
|
|
f.write("Not a socket")
|
|
|
|
app.stop()
|
|
|
|
|
|
|
|
app.run(host="myhost.invalid", unix=SOCKPATH)
|
|
|
|
|
|
|
|
|
|
|
|
def test_unix_connection():
|
|
|
|
app = Sanic(name=__name__)
|
|
|
|
|
|
|
|
@app.get("/")
|
|
|
|
def handler(request):
|
|
|
|
return text(f"{request.conn_info.server}")
|
|
|
|
|
|
|
|
@app.listener("after_server_start")
|
|
|
|
async def client(app, loop):
|
2021-12-21 20:56:12 +00:00
|
|
|
if httpx_version >= (0, 20):
|
|
|
|
transport = httpx.AsyncHTTPTransport(uds=SOCKPATH)
|
|
|
|
else:
|
|
|
|
transport = httpcore.AsyncConnectionPool(uds=SOCKPATH)
|
2020-06-29 06:55:32 +01:00
|
|
|
try:
|
2020-09-27 00:58:36 +01:00
|
|
|
async with httpx.AsyncClient(transport=transport) as client:
|
2020-06-29 06:55:32 +01:00
|
|
|
r = await client.get("http://myhost.invalid/")
|
|
|
|
assert r.status_code == 200
|
|
|
|
assert r.text == os.path.abspath(SOCKPATH)
|
|
|
|
finally:
|
|
|
|
app.stop()
|
|
|
|
|
|
|
|
app.run(host="myhost.invalid", unix=SOCKPATH)
|
|
|
|
|
|
|
|
|
|
|
|
app_multi = Sanic(name=__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def handler(request):
|
|
|
|
return text(f"{request.conn_info.server}")
|
|
|
|
|
|
|
|
|
|
|
|
async def client(app, loop):
|
|
|
|
try:
|
|
|
|
async with httpx.AsyncClient(uds=SOCKPATH) as client:
|
|
|
|
r = await client.get("http://myhost.invalid/")
|
|
|
|
assert r.status_code == 200
|
|
|
|
assert r.text == os.path.abspath(SOCKPATH)
|
|
|
|
finally:
|
|
|
|
app.stop()
|
|
|
|
|
|
|
|
|
|
|
|
def test_unix_connection_multiple_workers():
|
|
|
|
app_multi.get("/")(handler)
|
|
|
|
app_multi.listener("after_server_start")(client)
|
|
|
|
app_multi.run(host="myhost.invalid", unix=SOCKPATH, workers=2)
|
|
|
|
|
|
|
|
|
2021-04-06 21:32:01 +01:00
|
|
|
@pytest.mark.xfail(
|
|
|
|
condition=platform.system() != "Linux",
|
|
|
|
reason="Flaky Test on Non Linux Infra",
|
|
|
|
)
|
2020-06-29 06:55:32 +01:00
|
|
|
async def test_zero_downtime():
|
|
|
|
"""Graceful server termination and socket replacement on restarts"""
|
|
|
|
from signal import SIGINT
|
|
|
|
from time import monotonic as current_time
|
|
|
|
|
|
|
|
async def client():
|
2021-12-21 20:56:12 +00:00
|
|
|
if httpx_version >= (0, 20):
|
|
|
|
transport = httpx.AsyncHTTPTransport(uds=SOCKPATH)
|
|
|
|
else:
|
|
|
|
transport = httpcore.AsyncConnectionPool(uds=SOCKPATH)
|
2020-06-29 06:55:32 +01:00
|
|
|
for _ in range(40):
|
2020-09-27 00:58:36 +01:00
|
|
|
async with httpx.AsyncClient(transport=transport) as client:
|
2020-06-29 06:55:32 +01:00
|
|
|
r = await client.get("http://localhost/sleep/0.1")
|
|
|
|
assert r.status_code == 200
|
2021-11-07 19:39:03 +00:00
|
|
|
assert r.text == "Slept 0.1 seconds.\n"
|
2020-06-29 06:55:32 +01:00
|
|
|
|
|
|
|
def spawn():
|
|
|
|
command = [
|
|
|
|
sys.executable,
|
|
|
|
"-m",
|
|
|
|
"sanic",
|
|
|
|
"--unix",
|
|
|
|
SOCKPATH,
|
|
|
|
"examples.delayed_response.app",
|
|
|
|
]
|
|
|
|
DN = subprocess.DEVNULL
|
|
|
|
return subprocess.Popen(
|
|
|
|
command, stdin=DN, stdout=DN, stderr=subprocess.PIPE
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
processes = [spawn()]
|
|
|
|
while not os.path.exists(SOCKPATH):
|
|
|
|
if processes[0].poll() is not None:
|
2021-12-23 22:30:27 +00:00
|
|
|
raise Exception(
|
|
|
|
"Worker did not start properly. "
|
|
|
|
f"stderr: {processes[0].stderr.read()}"
|
|
|
|
)
|
2020-06-29 06:55:32 +01:00
|
|
|
await asyncio.sleep(0.0001)
|
|
|
|
ino = os.stat(SOCKPATH).st_ino
|
|
|
|
task = asyncio.get_event_loop().create_task(client())
|
|
|
|
start_time = current_time()
|
|
|
|
while current_time() < start_time + 4:
|
|
|
|
# Start a new one and wait until the socket is replaced
|
|
|
|
processes.append(spawn())
|
|
|
|
while ino == os.stat(SOCKPATH).st_ino:
|
|
|
|
await asyncio.sleep(0.001)
|
|
|
|
ino = os.stat(SOCKPATH).st_ino
|
|
|
|
# Graceful termination of the previous one
|
|
|
|
processes[-2].send_signal(SIGINT)
|
|
|
|
# Wait until client has completed all requests
|
|
|
|
await task
|
|
|
|
processes[-1].send_signal(SIGINT)
|
|
|
|
for worker in processes:
|
|
|
|
try:
|
|
|
|
worker.wait(1.0)
|
|
|
|
except subprocess.TimeoutExpired:
|
|
|
|
raise Exception(
|
|
|
|
f"Worker would not terminate:\n{worker.stderr}"
|
|
|
|
)
|
|
|
|
finally:
|
|
|
|
for worker in processes:
|
|
|
|
worker.kill()
|
|
|
|
# Test for clean run and termination
|
2021-11-07 19:39:03 +00:00
|
|
|
return_codes = [worker.poll() for worker in processes]
|
|
|
|
|
|
|
|
# Removing last process which seems to be flappy
|
|
|
|
return_codes.pop()
|
2020-06-29 06:55:32 +01:00
|
|
|
assert len(processes) > 5
|
2021-11-07 19:39:03 +00:00
|
|
|
assert all(code == 0 for code in return_codes)
|
|
|
|
|
|
|
|
# Removing this check that seems to be flappy
|
|
|
|
# assert not os.path.exists(SOCKPATH)
|