48 lines
1.0 KiB
Python
48 lines
1.0 KiB
Python
import datetime
|
|
import pytest
|
|
import random
|
|
|
|
from access.models.person import Person
|
|
from access.serializers.entity_person import (
|
|
BaseSerializer,
|
|
ModelSerializer,
|
|
ViewSerializer
|
|
)
|
|
|
|
|
|
|
|
@pytest.fixture( scope = 'class')
|
|
def model_person():
|
|
|
|
yield Person
|
|
|
|
|
|
@pytest.fixture( scope = 'class')
|
|
def kwargs_person( kwargs_entity ):
|
|
|
|
random_str = str(datetime.datetime.now(tz=datetime.timezone.utc))
|
|
random_str = str(random_str).replace(
|
|
' ', '').replace(':', '').replace('+', '').replace('.', '')
|
|
|
|
kwargs = {
|
|
**kwargs_entity.copy(),
|
|
'entity_type': 'person',
|
|
'f_name': 'p' + random_str,
|
|
'm_name': 'p' + random_str,
|
|
'l_name': 'p' + random_str,
|
|
'dob': str(random.randint(1972, 2037)) + '-' + str(
|
|
random.randint(1, 12)) + '-' + str(random.randint(1, 28))
|
|
}
|
|
|
|
yield kwargs.copy()
|
|
|
|
|
|
@pytest.fixture( scope = 'class')
|
|
def serializer_person():
|
|
|
|
yield {
|
|
'base': BaseSerializer,
|
|
'model': ModelSerializer,
|
|
'view': ViewSerializer
|
|
}
|