43 lines
762 B
Python
43 lines
762 B
Python
import pytest
|
|
import random
|
|
|
|
from itim.models.services import Port
|
|
from itim.serializers.port import (
|
|
PortBaseSerializer,
|
|
PortModelSerializer,
|
|
PortViewSerializer
|
|
)
|
|
|
|
|
|
|
|
@pytest.fixture( scope = 'class')
|
|
def model_port():
|
|
|
|
yield Port
|
|
|
|
|
|
@pytest.fixture( scope = 'class')
|
|
def kwargs_port(kwargs_centurionmodel):
|
|
|
|
random_port = random.randrange(1, 65535, 50)
|
|
|
|
kwargs = {
|
|
**kwargs_centurionmodel.copy(),
|
|
'description': 'a descriptive str',
|
|
'number': random_port,
|
|
'protocol': Port.Protocol.TCP
|
|
}
|
|
|
|
yield kwargs.copy()
|
|
|
|
|
|
|
|
@pytest.fixture( scope = 'class')
|
|
def serializer_port():
|
|
|
|
yield {
|
|
'base': PortBaseSerializer,
|
|
'model': PortModelSerializer,
|
|
'view': PortViewSerializer
|
|
}
|