Get better output on test failures

This commit is contained in:
Adam Hopkins 2022-02-27 13:29:16 +02:00
parent 7523e87937
commit a61c5ff55b
No known key found for this signature in database
GPG Key ID: 9F85EE6C807303FB
3 changed files with 42 additions and 30 deletions

View File

@ -8,7 +8,6 @@ on:
jobs: jobs:
testPy310: testPy310:
if: github.event.pull_request.draft == false
name: ut-${{ matrix.config.tox-env }}-${{ matrix.os }} name: ut-${{ matrix.config.tox-env }}-${{ matrix.os }}
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:

View File

@ -44,11 +44,8 @@ from typing import (
from urllib.parse import urlencode, urlunparse from urllib.parse import urlencode, urlunparse
from warnings import filterwarnings from warnings import filterwarnings
from sanic_routing.exceptions import ( # type: ignore from sanic_routing.exceptions import FinalizationError, NotFound
FinalizationError, from sanic_routing.route import Route
NotFound,
)
from sanic_routing.route import Route # type: ignore
from sanic.application.ext import setup_ext from sanic.application.ext import setup_ext
from sanic.application.state import ApplicationState, Mode, ServerStage from sanic.application.state import ApplicationState, Mode, ServerStage

View File

@ -5,6 +5,7 @@ from pathlib import Path
import pytest import pytest
from pyparsing import line
from sanic_routing import __version__ as __routing_version__ from sanic_routing import __version__ as __routing_version__
from sanic import __version__ from sanic import __version__
@ -52,8 +53,10 @@ def test_server_run(appname):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
firstline = lines[starting_line(lines) + 1] firstline = lines[starting_line(lines) + 1]
error_message = f"Lines found: {lines}\nErr output: {err}"
assert exitcode != 1 assert exitcode != 1
assert lines, error_message
assert firstline == b"Goin' Fast @ http://127.0.0.1:8000" assert firstline == b"Goin' Fast @ http://127.0.0.1:8000"
@ -80,6 +83,9 @@ def test_tls_options(cmd):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
assert exitcode != 1 assert exitcode != 1
lines = out.split(b"\n") lines = out.split(b"\n")
error_message = f"Lines found: {lines}\nErr output: {err}"
assert lines, error_message
firstline = lines[starting_line(lines) + 1] firstline = lines[starting_line(lines) + 1]
assert firstline == b"Goin' Fast @ https://127.0.0.1:9999" assert firstline == b"Goin' Fast @ https://127.0.0.1:9999"
@ -102,7 +108,9 @@ def test_tls_wrong_options(cmd):
assert exitcode == 1 assert exitcode == 1
assert not out assert not out
lines = err.decode().split("\n") lines = err.decode().split("\n")
error_message = f"Lines found: {lines}\nErr output: {err}"
assert lines, error_message
errmsg = lines[6] errmsg = lines[6]
assert errmsg == "TLS certificates must be specified by either of:" assert errmsg == "TLS certificates must be specified by either of:"
@ -119,9 +127,11 @@ def test_host_port_localhost(cmd):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
expected = b"Goin' Fast @ http://localhost:9999" expected = b"Goin' Fast @ http://localhost:9999"
error_message = f"Lines found: {lines}\nErr output: {err}"
assert exitcode != 1 assert exitcode != 1
assert expected in lines, f"Lines found: {lines}\nErr output: {err}" assert lines, error_message
assert expected in lines, error_message
@pytest.mark.parametrize( @pytest.mark.parametrize(
@ -136,9 +146,11 @@ def test_host_port_ipv4(cmd):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
expected = b"Goin' Fast @ http://127.0.0.127:9999" expected = b"Goin' Fast @ http://127.0.0.127:9999"
error_message = f"Lines found: {lines}\nErr output: {err}"
assert exitcode != 1 assert exitcode != 1
assert expected in lines, f"Lines found: {lines}\nErr output: {err}" assert lines, error_message
assert expected in lines, error_message
@pytest.mark.parametrize( @pytest.mark.parametrize(
@ -153,9 +165,11 @@ def test_host_port_ipv6_any(cmd):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
expected = b"Goin' Fast @ http://[::]:9999" expected = b"Goin' Fast @ http://[::]:9999"
error_message = f"Lines found: {lines}\nErr output: {err}"
assert exitcode != 1 assert exitcode != 1
assert expected in lines, f"Lines found: {lines}\nErr output: {err}" assert lines, error_message
assert expected in lines, error_message
@pytest.mark.parametrize( @pytest.mark.parametrize(
@ -170,9 +184,11 @@ def test_host_port_ipv6_loopback(cmd):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
expected = b"Goin' Fast @ http://[::1]:9999" expected = b"Goin' Fast @ http://[::1]:9999"
error_message = f"Lines found: {lines}\nErr output: {err}"
assert exitcode != 1 assert exitcode != 1
assert expected in lines, f"Lines found: {lines}\nErr output: {err}" assert lines, error_message
assert expected in lines, error_message
@pytest.mark.parametrize( @pytest.mark.parametrize(
@ -206,12 +222,12 @@ def test_debug(cmd):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
info = read_app_info(lines) info = read_app_info(lines)
error_message = f"Lines found: {lines}\nErr output: {err}"
assert info["debug"] is True, f"Lines found: {lines}\nErr output: {err}" assert info, error_message
assert ( assert info["debug"] is True, error_message
info["auto_reload"] is False assert info["auto_reload"] is False, error_message
), f"Lines found: {lines}\nErr output: {err}" assert "dev" not in info, error_message
assert "dev" not in info, f"Lines found: {lines}\nErr output: {err}"
@pytest.mark.parametrize("cmd", ("--dev", "-d")) @pytest.mark.parametrize("cmd", ("--dev", "-d"))
@ -220,11 +236,11 @@ def test_dev(cmd):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
info = read_app_info(lines) info = read_app_info(lines)
error_message = f"Lines found: {lines}\nErr output: {err}"
assert info["debug"] is True, f"Lines found: {lines}\nErr output: {err}" assert info, error_message
assert ( assert info["debug"] is True, error_message
info["auto_reload"] is True assert info["auto_reload"] is True, error_message
), f"Lines found: {lines}\nErr output: {err}"
@pytest.mark.parametrize("cmd", ("--auto-reload", "-r")) @pytest.mark.parametrize("cmd", ("--auto-reload", "-r"))
@ -233,12 +249,12 @@ def test_auto_reload(cmd):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
info = read_app_info(lines) info = read_app_info(lines)
error_message = f"Lines found: {lines}\nErr output: {err}"
assert info["debug"] is False, f"Lines found: {lines}\nErr output: {err}" assert info, error_message
assert ( assert info["debug"] is False, error_message
info["auto_reload"] is True assert info["auto_reload"] is True, error_message
), f"Lines found: {lines}\nErr output: {err}" assert "dev" not in info, error_message
assert "dev" not in info, f"Lines found: {lines}\nErr output: {err}"
@pytest.mark.parametrize( @pytest.mark.parametrize(
@ -249,10 +265,10 @@ def test_access_logs(cmd, expected):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
info = read_app_info(lines) info = read_app_info(lines)
error_message = f"Lines found: {lines}\nErr output: {err}"
assert ( assert info, error_message
info["access_log"] is expected assert info["access_log"] is expected, error_message
), f"Lines found: {lines}\nErr output: {err}"
@pytest.mark.parametrize("cmd", ("--version", "-v")) @pytest.mark.parametrize("cmd", ("--version", "-v"))
@ -276,7 +292,7 @@ def test_noisy_exceptions(cmd, expected):
out, err, exitcode = capture(command) out, err, exitcode = capture(command)
lines = out.split(b"\n") lines = out.split(b"\n")
info = read_app_info(lines) info = read_app_info(lines)
error_message = f"Lines found: {lines}\nErr output: {err}"
assert ( assert info, error_message
info["noisy_exceptions"] is expected assert info["noisy_exceptions"] is expected, error_message
), f"Lines found: {lines}\nErr output: {err}"