|
@ -3,6 +3,7 @@ from dataclasses import dataclass |
|
|
from datetime import datetime, timezone |
|
|
from datetime import datetime, timezone |
|
|
from decimal import Decimal |
|
|
from decimal import Decimal |
|
|
from enum import Enum |
|
|
from enum import Enum |
|
|
|
|
|
from math import isinf, isnan |
|
|
from pathlib import PurePath, PurePosixPath, PureWindowsPath |
|
|
from pathlib import PurePath, PurePosixPath, PureWindowsPath |
|
|
from typing import Optional |
|
|
from typing import Optional |
|
|
|
|
|
|
|
@ -303,6 +304,20 @@ def test_decimal_encoder_int(): |
|
|
assert jsonable_encoder(data) == {"value": 2} |
|
|
assert jsonable_encoder(data) == {"value": 2} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@needs_pydanticv2 |
|
|
|
|
|
def test_decimal_encoder_nan(): |
|
|
|
|
|
data = {"value": Decimal("NaN")} |
|
|
|
|
|
assert isnan(jsonable_encoder(data)["value"]) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@needs_pydanticv2 |
|
|
|
|
|
def test_decimal_encoder_infinity(): |
|
|
|
|
|
data = {"value": Decimal("Infinity")} |
|
|
|
|
|
assert isinf(jsonable_encoder(data)["value"]) |
|
|
|
|
|
data = {"value": Decimal("-Infinity")} |
|
|
|
|
|
assert isinf(jsonable_encoder(data)["value"]) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_encode_deque_encodes_child_models(): |
|
|
def test_encode_deque_encodes_child_models(): |
|
|
class Model(BaseModel): |
|
|
class Model(BaseModel): |
|
|
test: str |
|
|
test: str |
|
|