1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
|
import importlib.metadata
from typing import Any, Dict, Union
import pycountry
import pytest
from packaging.version import Version
from pydantic import BaseModel
from typing_extensions import Annotated
import pydantic_extra_types
from pydantic_extra_types import epoch
from pydantic_extra_types.color import Color
from pydantic_extra_types.coordinate import Coordinate, Latitude, Longitude
from pydantic_extra_types.country import CountryAlpha2, CountryAlpha3, CountryNumericCode, CountryShortName
from pydantic_extra_types.currency_code import ISO4217, Currency
from pydantic_extra_types.domain import DomainStr
from pydantic_extra_types.isbn import ISBN
from pydantic_extra_types.language_code import ISO639_3, ISO639_5, LanguageAlpha2, LanguageName
from pydantic_extra_types.mac_address import MacAddress
from pydantic_extra_types.mongo_object_id import MongoObjectId
from pydantic_extra_types.payment import PaymentCardNumber
from pydantic_extra_types.pendulum_dt import DateTime
from pydantic_extra_types.phone_numbers import PhoneNumber, PhoneNumberValidator
from pydantic_extra_types.s3 import S3Path
from pydantic_extra_types.script_code import ISO_15924
from pydantic_extra_types.semantic_version import SemanticVersion
from pydantic_extra_types.semver import _VersionPydanticAnnotation
from pydantic_extra_types.timezone_name import TimeZoneName
from pydantic_extra_types.ulid import ULID
languages = [lang.alpha_3 for lang in pycountry.languages]
language_families = [lang.alpha_3 for lang in pycountry.language_families]
languages.sort()
language_families.sort()
currencies = [currency.alpha_3 for currency in pycountry.currencies]
currencies.sort()
everyday_currencies = [
currency.alpha_3
for currency in pycountry.currencies
if currency.alpha_3 not in pydantic_extra_types.currency_code._CODES_FOR_BONDS_METAL_TESTING
]
scripts = [script.alpha_4 for script in pycountry.scripts]
timezone_names = TimeZoneName.allowed_values_list
everyday_currencies.sort()
AnyNumberRFC3966 = Annotated[Union[str, PhoneNumber], PhoneNumberValidator()]
USNumberE164 = Annotated[
Union[str, PhoneNumber],
PhoneNumberValidator(
supported_regions=['US'],
default_region='US',
number_format='E164',
),
]
decimal_type = {'type': 'string'}
if Version(importlib.metadata.version('pydantic')) >= Version('2.12.0a1'):
decimal_type['pattern'] = '^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$'
@pytest.mark.parametrize(
'cls,expected',
[
(
Color,
{
'properties': {'x': {'format': 'color', 'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
PaymentCardNumber,
{
'properties': {
'x': {
'maxLength': 19,
'minLength': 12,
'title': 'X',
'type': 'string',
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
CountryAlpha2,
{
'properties': {'x': {'pattern': '^\\w{2}$', 'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
CountryAlpha3,
{
'properties': {'x': {'pattern': '^\\w{3}$', 'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
CountryNumericCode,
{
'properties': {'x': {'pattern': '^[0-9]{3}$', 'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
CountryShortName,
{
'properties': {'x': {'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
MacAddress,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
Latitude,
{
'properties': {
'x': {
'anyOf': [
{'maximum': 90.0, 'minimum': -90.0, 'type': 'number'},
decimal_type,
],
'title': 'X',
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
Longitude,
{
'properties': {
'x': {
'anyOf': [
{'maximum': 180.0, 'minimum': -180.0, 'type': 'number'},
decimal_type,
],
'title': 'X',
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
Coordinate,
{
'$defs': {
'Coordinate': {
'properties': {
'latitude': {
'anyOf': [
{'maximum': 90.0, 'minimum': -90.0, 'type': 'number'},
decimal_type,
],
'title': 'Latitude',
},
'longitude': {
'anyOf': [
{'maximum': 180.0, 'minimum': -180.0, 'type': 'number'},
decimal_type,
],
'title': 'Longitude',
},
},
'required': ['latitude', 'longitude'],
'title': 'Coordinate',
'type': 'object',
}
},
'properties': {
'x': {
'anyOf': [
{'$ref': '#/$defs/Coordinate'},
{
'maxItems': 2,
'minItems': 2,
'prefixItems': [
{'anyOf': [{'type': 'number'}, decimal_type]},
{'anyOf': [{'type': 'number'}, decimal_type]},
],
'type': 'array',
},
{'type': 'string'},
],
'title': 'X',
},
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
ULID,
{
'properties': {
'x': {
'anyOf': [
{'type': 'integer'},
{'format': 'binary', 'type': 'string'},
{'type': 'string'},
{'format': 'uuid', 'type': 'string'},
],
'title': 'X',
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
ISBN,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
DateTime,
{
'properties': {'x': {'format': 'date-time', 'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
LanguageAlpha2,
{
'properties': {'x': {'pattern': '^\\w{2}$', 'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
LanguageName,
{
'properties': {'x': {'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
ISO639_3,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
'enum': languages,
'maxLength': 3,
'minLength': 3,
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
ISO639_5,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
'enum': language_families,
'maxLength': 3,
'minLength': 3,
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
ISO4217,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
'enum': currencies,
'maxLength': 3,
'minLength': 3,
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
Currency,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
'enum': everyday_currencies,
'maxLength': 3,
'minLength': 3,
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
ISO_15924,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
'enum': scripts,
'maxLength': 4,
'minLength': 4,
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
SemanticVersion,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
'pattern': r'^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$',
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
TimeZoneName,
{
'properties': {
'x': {
'title': 'X',
'type': 'string',
'enum': timezone_names,
'minLength': 1,
}
},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
_VersionPydanticAnnotation,
{
'properties': {'x': {'title': 'X', 'type': 'string'}},
'required': ['x'],
'title': 'Model',
'type': 'object',
},
),
(
PhoneNumber,
{
'title': 'Model',
'type': 'object',
'properties': {
'x': {
'title': 'X',
'type': 'string',
'format': 'phone',
}
},
'required': ['x'],
},
),
(
AnyNumberRFC3966,
{
'title': 'Model',
'type': 'object',
'properties': {
'x': {
'title': 'X',
'type': 'string',
'format': 'phone',
}
},
'required': ['x'],
},
),
(
USNumberE164,
{
'title': 'Model',
'type': 'object',
'properties': {
'x': {
'title': 'X',
'type': 'string',
'format': 'phone',
}
},
'required': ['x'],
},
),
(
S3Path,
{
'title': 'Model',
'type': 'object',
'properties': {
'x': {
'pattern': '^s3://([^/]+)/(.*?([^/]+)/?)$',
'title': 'X',
'type': 'string',
},
},
'required': [
'x',
],
},
),
(
DomainStr,
{
'title': 'Model',
'type': 'object',
'properties': {
'x': {
'title': 'X',
'type': 'string',
},
},
'required': [
'x',
],
},
),
(
epoch.Integer,
{
'title': 'Model',
'type': 'object',
'properties': {
'x': {
'title': 'X',
'type': 'integer',
'format': 'date-time',
},
},
'required': [
'x',
],
},
),
(
epoch.Number,
{
'title': 'Model',
'type': 'object',
'properties': {
'x': {
'title': 'X',
'type': 'number',
'format': 'date-time',
},
},
'required': [
'x',
],
},
),
(
MongoObjectId,
{
'title': 'Model',
'type': 'object',
'properties': {
'x': {
'maxLength': MongoObjectId.OBJECT_ID_LENGTH,
'minLength': MongoObjectId.OBJECT_ID_LENGTH,
'title': 'X',
'type': 'string',
},
},
'required': ['x'],
},
),
],
)
def test_json_schema(cls: Any, expected: Dict[str, Any]) -> None:
"""Test the model_json_schema implementation for all extra types."""
class Model(BaseModel):
x: cls
assert Model.model_json_schema() == expected
|