Skip to content
This repository was archived by the owner on Feb 7, 2022. It is now read-only.

Added test for recursive type #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions tests/test_decoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ class GenericJson(Generic[T1, T2]):
t2: T2


@dataclass(frozen=True)
class RecursiveJson:
data: str
more: Optional["RecursiveJson"]


def test_can_decode_str() -> None:
json = "string"
assert typedjson.decode(str, json) == json
Expand Down Expand Up @@ -214,6 +220,17 @@ def test_can_decode_union() -> None:
)


def test_can_decode_recursive() -> None:
json_recursive = {"data": "foo", "more": {"data": "bar", "more": {"data": "baz"}}}

expectation = RecursiveJson(
data="foo",
more=RecursiveJson(data="bar", more=RecursiveJson(data="baz", more=None)),
)

assert typedjson.decode(RecursiveJson, json_recursive) == expectation


def test_cannot_decode_with_wrong_type() -> None:
json = True
assert typedjson.decode(str, json) == DecodingError(TypeMismatch(()))
Expand Down