Skip to content

Commit

Permalink
Extended test suite to meet required coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
iAndriy committed Dec 19, 2023
1 parent c3fa036 commit 2642597
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
40 changes: 40 additions & 0 deletions tests/test_blueprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -1112,3 +1112,43 @@ async def index(_):
app.router.finalize()

assert app.router.routes[0].path == "foo/"


def test_blueprint_copy_returns_blueprint_with_the_name_of_original_blueprint(
app: Sanic,
):
# arrange
bp = Blueprint("bp")

# act
actual = bp.copy("new_bp_name")

# assert
assert bp.name == actual.copied_from


def test_blueprint_copy_returns_blueprint_with_overwritten_properties(
app: Sanic,
):
# arrange
bp = Blueprint("bp")
to_override_attrs = expected = dict(
url_prefix="v2",
version="v2",
version_prefix="v2",
allow_route_overwrite=True,
strict_slashes=True,
)

# act
actual = bp.copy(
"new_bp_name",
**to_override_attrs,
)

# assert
assert all(
value == getattr(actual, key)
for key, value in expected.items()
if hasattr(actual, key)
)
4 changes: 2 additions & 2 deletions tests/test_websockets.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import pytest

from websockets.frames import CTRL_OPCODES, DATA_OPCODES, Frame, OP_TEXT
from websockets.frames import CTRL_OPCODES, DATA_OPCODES, OP_TEXT, Frame

from sanic.exceptions import ServerError
from sanic.server.websockets.frame import WebsocketFrameAssembler
Expand Down Expand Up @@ -210,7 +210,7 @@ async def test_ws_frame_put_message_complete(opcode):
@pytest.mark.asyncio
@pytest.mark.parametrize("opcode", DATA_OPCODES)
async def test_ws_frame_put_message_into_queue(opcode):
foo = 'foo' if (opcode == OP_TEXT) else b"foo"
foo = "foo" if (opcode == OP_TEXT) else b"foo"
assembler = WebsocketFrameAssembler(Mock())
assembler.chunks_queue = AsyncMock(spec=Queue)
assembler.message_fetched = AsyncMock()
Expand Down

0 comments on commit 2642597

Please sign in to comment.