Skip to content

Commit d87c635

Browse files
committed
Fixed new TypedDict test fixtures for versions 3.10-
1 parent 26de932 commit d87c635

File tree

1 file changed

+45
-32
lines changed

1 file changed

+45
-32
lines changed

test/test_00_validate.py

+45-32
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
import collections.abc as collections_abc
55
import sys
66
import typing
7-
from typing_extensions import Literal, TypedDict, Required, NotRequired
8-
97
import pytest
108

119
from typing_validation import validate, validation_aliases
@@ -15,12 +13,21 @@
1513
_is_typed_dict,
1614
)
1715

16+
if sys.version_info[1] >= 8:
17+
from typing import Literal
18+
else:
19+
from typing_extensions import Literal
20+
21+
if sys.version_info[1] >= 9:
22+
from typing import TypedDict
23+
else:
24+
from typing_extensions import TypedDict
25+
1826
if sys.version_info[1] >= 10:
1927
from types import UnionType
2028
else:
2129
UnionType = None
2230

23-
2431
_basic_types = [
2532
bool,
2633
int,
@@ -521,17 +528,6 @@ class TD2(TypedDict, total=False):
521528
x: str
522529
w: typing.List[str]
523530

524-
525-
class TD3(TypedDict, total=False):
526-
x: Required[str]
527-
w: typing.List[str]
528-
529-
530-
class TD4(TypedDict):
531-
x: str
532-
w: NotRequired[typing.List[str]]
533-
534-
535531
_typed_dict_cases: typing.Dict[typing.Any, typing.List[typing.Any]] = {}
536532
_typed_dict_cases[TD1b] = [
537533
{"x": 1, "y": 1.5, "z": ["hello", "bye bye"]},
@@ -550,14 +546,27 @@ class TD4(TypedDict):
550546
{"w": ["hello", "bye bye"]},
551547
{},
552548
]
553-
_typed_dict_cases[TD3] = [
554-
{"x": "hello", "w": ["hello", "bye bye"]},
555-
{"x": "hello"},
556-
]
557-
_typed_dict_cases[TD4] = [
558-
{"x": "hello", "w": ["hello", "bye bye"]},
559-
{"x": "hello"},
560-
]
549+
550+
if sys.version_info[1] >= 11:
551+
from typing import Required, NotRequired
552+
553+
class TD3(TypedDict, total=False):
554+
x: Required[str] # pyright: ignore
555+
w: typing.List[str]
556+
557+
558+
class TD4(TypedDict):
559+
x: str
560+
w: NotRequired[typing.List[str]] # pyright: ignore
561+
562+
_typed_dict_cases[TD3] = [
563+
{"x": "hello", "w": ["hello", "bye bye"]},
564+
{"x": "hello"},
565+
]
566+
_typed_dict_cases[TD4] = [
567+
{"x": "hello", "w": ["hello", "bye bye"]},
568+
{"x": "hello"},
569+
]
561570

562571

563572
@pytest.mark.parametrize("t, vals", _typed_dict_cases.items())
@@ -589,16 +598,20 @@ def test_typed_dict_cases(t: typing.Any, vals: typing.List[typing.Any]) -> None:
589598
{"w": 0},
590599
{"x": 0},
591600
]
592-
_invalid_typed_dict_cases[TD3] = [
593-
*_invalid_typed_dict_cases[TD2],
594-
{"w": ["hello", "bye bye"]},
595-
{},
596-
]
597-
_invalid_typed_dict_cases[TD4] = [
598-
*_invalid_typed_dict_cases[TD2],
599-
{"w": ["hello", "bye bye"]},
600-
{},
601-
]
601+
602+
603+
if sys.version_info[1] >= 11:
604+
605+
_invalid_typed_dict_cases[TD3] = [
606+
*_invalid_typed_dict_cases[TD2],
607+
{"w": ["hello", "bye bye"]},
608+
{},
609+
]
610+
_invalid_typed_dict_cases[TD4] = [
611+
*_invalid_typed_dict_cases[TD2],
612+
{"w": ["hello", "bye bye"]},
613+
{},
614+
]
602615

603616

604617
@pytest.mark.parametrize("t, vals", _invalid_typed_dict_cases.items())

0 commit comments

Comments
 (0)