refactor(access): Update Model Entity to use PyTest for Model Test Suite
ref: #761 #730
This commit is contained in:
@ -37,9 +37,9 @@ class Entity(
|
||||
verbose_name = 'ID'
|
||||
)
|
||||
|
||||
|
||||
entity_type = models.CharField(
|
||||
blank = False,
|
||||
default = Meta.verbose_name.lower(),
|
||||
help_text = 'Type this entity is',
|
||||
max_length = 30,
|
||||
unique = False,
|
||||
|
@ -1,27 +1,120 @@
|
||||
from django.test import TestCase
|
||||
import pytest
|
||||
|
||||
from django.db import models
|
||||
|
||||
from access.models.entity import Entity
|
||||
|
||||
from app.tests.unit.test_unit_models import (
|
||||
TenancyObjectInheritedCases
|
||||
PyTestTenancyObjectInheritedCases,
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
class EntityModelTestCases(
|
||||
TenancyObjectInheritedCases,
|
||||
PyTestTenancyObjectInheritedCases,
|
||||
):
|
||||
|
||||
model = Entity
|
||||
base_model = Entity
|
||||
|
||||
kwargs_item_create: dict = {}
|
||||
kwargs_create_item: dict = {}
|
||||
|
||||
sub_model_type = 'entity'
|
||||
"""Sub Model Type
|
||||
|
||||
sub-models must have this attribute defined in `ModelName.Meta.sub_model_type`
|
||||
"""
|
||||
|
||||
|
||||
parameterized_fields: dict = {
|
||||
"entity_type": {
|
||||
'field_type': models.fields.CharField,
|
||||
'field_parameter_default_exists': False,
|
||||
# 'field_parameter_default_value': 'entity',
|
||||
'field_parameter_verbose_name_type': str
|
||||
},
|
||||
# "asset_number": {
|
||||
# 'field_type': models.fields.CharField,
|
||||
# 'field_parameter_default_exists': False,
|
||||
# 'field_parameter_verbose_name_type': str,
|
||||
# },
|
||||
# "serial_number": {
|
||||
# 'field_type': models.fields.CharField,
|
||||
# 'field_parameter_default_exists': False,
|
||||
# 'field_parameter_verbose_name_type': str,
|
||||
# }
|
||||
}
|
||||
|
||||
|
||||
|
||||
@pytest.fixture( scope = 'class')
|
||||
def setup_model(self,
|
||||
request,
|
||||
model,
|
||||
django_db_blocker,
|
||||
organization_one,
|
||||
organization_two
|
||||
):
|
||||
|
||||
with django_db_blocker.unblock():
|
||||
|
||||
request.cls.organization = organization_one
|
||||
|
||||
request.cls.different_organization = organization_two
|
||||
|
||||
kwargs_create_item = {}
|
||||
|
||||
for base in reversed(request.cls.__mro__):
|
||||
|
||||
if hasattr(base, 'kwargs_create_item'):
|
||||
|
||||
if base.kwargs_create_item is None:
|
||||
|
||||
continue
|
||||
|
||||
kwargs_create_item.update(**base.kwargs_create_item)
|
||||
|
||||
|
||||
if len(kwargs_create_item) > 0:
|
||||
|
||||
request.cls.kwargs_create_item = kwargs_create_item
|
||||
|
||||
|
||||
if 'organization' not in request.cls.kwargs_create_item:
|
||||
|
||||
request.cls.kwargs_create_item.update({
|
||||
'organization': request.cls.organization
|
||||
})
|
||||
|
||||
yield
|
||||
|
||||
with django_db_blocker.unblock():
|
||||
|
||||
del request.cls.kwargs_create_item
|
||||
|
||||
|
||||
@pytest.fixture( scope = 'class', autouse = True)
|
||||
def class_setup(self,
|
||||
setup_model,
|
||||
create_model,
|
||||
):
|
||||
|
||||
pass
|
||||
|
||||
|
||||
|
||||
def test_class_inherits_entity(self):
|
||||
""" Class inheritence
|
||||
|
||||
TenancyObject must inherit SaveHistory
|
||||
"""
|
||||
|
||||
assert issubclass(self.model, Entity)
|
||||
|
||||
|
||||
def test_attribute_type_history_app_label(self):
|
||||
"""Attribute Type
|
||||
|
||||
history_app_name is of type str
|
||||
history_app_label is of type str
|
||||
"""
|
||||
|
||||
assert type(self.model.history_app_label) is str
|
||||
@ -30,11 +123,11 @@ class EntityModelTestCases(
|
||||
def test_attribute_value_history_app_label(self):
|
||||
"""Attribute Type
|
||||
|
||||
history_app_name is of type str
|
||||
history_app_label has been set, override this test case with the value
|
||||
of attribute `history_app_label`
|
||||
"""
|
||||
|
||||
assert self.model.history_app_label == self.model._meta.app_label
|
||||
|
||||
assert self.model.history_app_label == 'access'
|
||||
|
||||
|
||||
|
||||
@ -50,10 +143,11 @@ class EntityModelTestCases(
|
||||
def test_attribute_value_history_model_name(self):
|
||||
"""Attribute Type
|
||||
|
||||
history_model_name is of type str
|
||||
history_model_name has been set, override this test case with the value
|
||||
of attribute `history_model_name`
|
||||
"""
|
||||
|
||||
assert self.model.history_model_name == self.model._meta.model_name
|
||||
assert self.model.history_model_name == 'entity'
|
||||
|
||||
|
||||
|
||||
@ -69,7 +163,8 @@ class EntityModelTestCases(
|
||||
def test_attribute_value_kb_model_name(self):
|
||||
"""Attribute Type
|
||||
|
||||
kb_model_name is of type str
|
||||
kb_model_name has been set, override this test case with the value
|
||||
of attribute `kb_model_name`
|
||||
"""
|
||||
|
||||
assert self.model.kb_model_name == 'entity'
|
||||
@ -88,40 +183,95 @@ class EntityModelTestCases(
|
||||
def test_attribute_value_note_basename(self):
|
||||
"""Attribute Type
|
||||
|
||||
note_basename is of type str
|
||||
note_basename has been set, override this test case with the value
|
||||
of attribute `note_basename`
|
||||
"""
|
||||
|
||||
assert self.model.note_basename == '_api_v2_entity_note'
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# def test_function_is_property_get_model_type(self):
|
||||
# """Function test
|
||||
|
||||
# Confirm function `get_model_type` is a property
|
||||
# """
|
||||
|
||||
# assert type(self.model.get_model_type) is property
|
||||
|
||||
|
||||
# def test_function_value_get_model_type(self):
|
||||
# """Function test
|
||||
|
||||
# Confirm function `get_model_type` does not have a value of None
|
||||
# value should be equaul to Meta.sub_model_type
|
||||
# """
|
||||
|
||||
# assert self.item.get_model_type == self.item._meta.sub_model_type
|
||||
|
||||
|
||||
|
||||
|
||||
def test_function_value_get_related_model(self):
|
||||
"""Function test
|
||||
|
||||
Confirm function `get_related_model` is of the sub-model type
|
||||
"""
|
||||
|
||||
assert type(self.item.get_related_model()) == self.model
|
||||
|
||||
|
||||
def test_function_value_get_url(self):
|
||||
|
||||
assert self.item.get_url() == '/api/v2/access/entity/' + str(self.item.id)
|
||||
|
||||
|
||||
|
||||
class EntityModelInheritedCases(
|
||||
EntityModelTestCases,
|
||||
):
|
||||
"""Sub-Entity Test Cases
|
||||
"""Sub-Ticket Test Cases
|
||||
|
||||
Test Cases for Entity models that inherit from model Entity
|
||||
Test Cases for Ticket models that inherit from model Entity
|
||||
"""
|
||||
|
||||
kwargs_item_create: dict = None
|
||||
kwargs_create_item: dict = {}
|
||||
|
||||
model = None
|
||||
|
||||
|
||||
@classmethod
|
||||
def setUpTestData(self):
|
||||
sub_model_type = None
|
||||
"""Ticket Sub Model Type
|
||||
|
||||
Ticket sub-models must have this attribute defined in `ModelNam.Meta.sub_model_type`
|
||||
"""
|
||||
|
||||
self.kwargs_item_create.update(
|
||||
super().kwargs_item_create
|
||||
)
|
||||
|
||||
super().setUpTestData()
|
||||
# def test_function_value_get_model_type(self):
|
||||
# """Function test
|
||||
|
||||
# Confirm function `get_model_type` does not have a value of None
|
||||
# value should be equaul to Meta.sub_model_type
|
||||
# """
|
||||
|
||||
# assert self.item.get_model_type == self.item._meta.sub_model_type
|
||||
|
||||
|
||||
|
||||
class EntityModelTest(
|
||||
class EntityModelPyTest(
|
||||
EntityModelTestCases,
|
||||
TestCase,
|
||||
):
|
||||
|
||||
pass
|
||||
|
||||
def test_function_value_get_related_model(self):
|
||||
"""Function test
|
||||
|
||||
Confirm function `get_related_model` is None for base model
|
||||
"""
|
||||
|
||||
assert self.item.get_related_model() is None
|
||||
|
@ -402,23 +402,27 @@ class NonTenancyObjectInheritedCases(
|
||||
|
||||
class ModelFieldsTestCasesReWrite:
|
||||
|
||||
parameterized_fields: dict = {
|
||||
"organization": {
|
||||
'field_type': fields.Field,
|
||||
'field_parameter_default_exists': False,
|
||||
'field_parameter_verbose_name_type': str
|
||||
},
|
||||
"model_notes": {
|
||||
'field_type': fields.TextField,
|
||||
'field_parameter_verbose_name_type': str
|
||||
},
|
||||
"is_global": {
|
||||
'field_type': fields.BooleanField,
|
||||
'field_parameter_default_exists': True,
|
||||
'field_parameter_default_value': False,
|
||||
'field_parameter_verbose_name_type': str
|
||||
|
||||
@property
|
||||
def parameterized_fields(self) -> dict:
|
||||
|
||||
return {
|
||||
"organization": {
|
||||
'field_type': fields.Field,
|
||||
'field_parameter_default_exists': False,
|
||||
'field_parameter_verbose_name_type': str
|
||||
},
|
||||
"model_notes": {
|
||||
'field_type': fields.TextField,
|
||||
'field_parameter_verbose_name_type': str
|
||||
},
|
||||
"is_global": {
|
||||
'field_type': fields.BooleanField,
|
||||
'field_parameter_default_exists': True,
|
||||
'field_parameter_default_value': False,
|
||||
'field_parameter_verbose_name_type': str
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user