From 434992323f7c24881d9e70e14f4313fb8f94c900 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 11 Jun 2025 20:11:17 +0930 Subject: [PATCH] refactor(itam): Update Test Suite for OperatingSystem model ref:#817 #818 --- app/fixtures/fresh_db.sql | 16 +-- .../tests/unit/operating_system/conftest.py | 19 +++ .../test_operating_system_api_v2.py | 2 + ...est_operating_system_item_ticket_api_v2.py | 2 + .../test_unit_operating_system_model.py | 118 +++++++++++++----- .../test_unit_operating_system_viewset.py | 2 + 6 files changed, 120 insertions(+), 39 deletions(-) create mode 100644 app/itam/tests/unit/operating_system/conftest.py diff --git a/app/fixtures/fresh_db.sql b/app/fixtures/fresh_db.sql index 85695ca0..6b267e0f 100644 --- a/app/fixtures/fresh_db.sql +++ b/app/fixtures/fresh_db.sql @@ -32,7 +32,6 @@ CREATE TABLE IF NOT EXISTS "core_relatedtickets" ("id" integer NOT NULL PRIMARY CREATE TABLE IF NOT EXISTS "core_ticket" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "status" integer NOT NULL, "title" varchar(100) NOT NULL UNIQUE, "description" text NOT NULL, "urgency" integer NULL, "impact" integer NULL, "priority" integer NULL, "external_ref" integer NULL, "external_system" integer NULL, "ticket_type" integer NOT NULL, "is_deleted" bool NOT NULL, "date_closed" datetime NULL, "planned_start_date" datetime NULL, "planned_finish_date" datetime NULL, "estimate" integer NOT NULL, "real_start_date" datetime NULL, "real_finish_date" datetime NULL, "milestone_id" integer NULL REFERENCES "project_management_projectmilestone" ("id") DEFERRABLE INITIALLY DEFERRED, "opened_by_id" integer NOT NULL REFERENCES "auth_user" ("id") DEFERRABLE INITIALLY DEFERRED, "project_id" integer NULL REFERENCES "project_management_project" ("id") DEFERRABLE INITIALLY DEFERRED, "category_id" integer NULL REFERENCES "core_ticketcategory" ("id") DEFERRABLE INITIALLY DEFERRED, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "parent_ticket_id" integer NULL REFERENCES "core_ticket" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "core_ticketcomment" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "external_ref" integer NULL, "external_system" integer NULL, "comment_type" integer NOT NULL, "body" text NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL, "private" bool NOT NULL, "duration" integer NOT NULL, "is_template" bool NOT NULL, "source" integer NOT NULL, "status" integer NOT NULL, "date_closed" datetime NULL, "planned_start_date" datetime NULL, "planned_finish_date" datetime NULL, "real_start_date" datetime NULL, "real_finish_date" datetime NULL, "responsible_team_id" integer NULL REFERENCES "access_team" ("group_ptr_id") DEFERRABLE INITIALLY DEFERRED, "responsible_user_id" integer NULL REFERENCES "auth_user" ("id") DEFERRABLE INITIALLY DEFERRED, "ticket_id" integer NULL REFERENCES "core_ticket" ("id") DEFERRABLE INITIALLY DEFERRED, "user_id" integer NULL REFERENCES "auth_user" ("id") DEFERRABLE INITIALLY DEFERRED, "category_id" integer NULL REFERENCES "core_ticketcommentcategory" ("id") DEFERRABLE INITIALLY DEFERRED, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "parent_id" integer NULL REFERENCES "core_ticketcomment" ("id") DEFERRABLE INITIALLY DEFERRED, "template_id" integer NULL REFERENCES "core_ticketcomment" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "core_ticketlinkeditem" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "item_type" integer NOT NULL, "item" integer NOT NULL, "ticket_id" integer NOT NULL REFERENCES "core_ticket" ("id") DEFERRABLE INITIALLY DEFERRED, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); -CREATE TABLE IF NOT EXISTS "itam_operatingsystem" ("is_global" bool NOT NULL, "model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "name" varchar(50) NOT NULL UNIQUE, "slug" varchar(50) NOT NULL, "publisher_id" integer NULL REFERENCES "core_manufacturer" ("id") DEFERRABLE INITIALLY DEFERRED, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "itam_operatingsystemversion" ("is_global" bool NOT NULL, "model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "name" varchar(50) NOT NULL, "operating_system_id" integer NOT NULL REFERENCES "itam_operatingsystem" ("id") DEFERRABLE INITIALLY DEFERRED, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "itam_softwarecategory" ("is_global" bool NOT NULL, "model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(50) NOT NULL UNIQUE, "slug" varchar(50) NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "itam_softwareversion" ("is_global" bool NOT NULL, "model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "slug" varchar(50) NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL, "name" varchar(50) NOT NULL, "software_id" integer NOT NULL REFERENCES "itam_software" ("id") DEFERRABLE INITIALLY DEFERRED, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); @@ -119,8 +118,8 @@ CREATE TABLE IF NOT EXISTS "devops_git_group_notes" ("modelnotes_ptr_id" integer CREATE TABLE IF NOT EXISTS "access_organization_notes" ("modelnotes_ptr_id" integer NOT NULL PRIMARY KEY REFERENCES "core_model_notes" ("id") DEFERRABLE INITIALLY DEFERRED, "model_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "access_organization_history" ("modelhistory_ptr_id" integer NOT NULL PRIMARY KEY REFERENCES "core_model_history" ("id") DEFERRABLE INITIALLY DEFERRED, "model_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "itam_software" ("is_global" bool NOT NULL, "model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(50) NOT NULL UNIQUE, "slug" varchar(50) NOT NULL, "created" datetime NOT NULL, "modified" datetime NOT NULL, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "publisher_id" integer NULL REFERENCES "core_manufacturer" ("id") DEFERRABLE INITIALLY DEFERRED, "category_id" integer NULL REFERENCES "itam_softwarecategory" ("id") DEFERRABLE INITIALLY DEFERRED); -CREATE TABLE IF NOT EXISTS "settings_appsettings" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "device_model_is_global" bool NOT NULL, "device_type_is_global" bool NOT NULL, "manufacturer_is_global" bool NOT NULL, "software_is_global" bool NOT NULL, "software_categories_is_global" bool NOT NULL, "global_organization_id" integer NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "owner_organization_id" integer NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "settings_usersettings" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "default_organization_id" integer NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "user_id" integer NOT NULL REFERENCES "auth_user" ("id") DEFERRABLE INITIALLY DEFERRED, "timezone" varchar(32) NOT NULL, "browser_mode" integer NOT NULL); +CREATE TABLE IF NOT EXISTS "settings_appsettings" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "device_model_is_global" bool NOT NULL, "device_type_is_global" bool NOT NULL, "manufacturer_is_global" bool NOT NULL, "software_is_global" bool NOT NULL, "software_categories_is_global" bool NOT NULL, "global_organization_id" integer NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "owner_organization_id" integer NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "access_company" ("entity_ptr_id" integer NOT NULL PRIMARY KEY REFERENCES "access_entity" ("id") DEFERRABLE INITIALLY DEFERRED, "name" varchar(80) NOT NULL); CREATE TABLE IF NOT EXISTS "access_entity" ("is_global" bool NOT NULL, "model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "entity_type" varchar(30) NOT NULL); CREATE TABLE IF NOT EXISTS "access_person" ("entity_ptr_id" integer NOT NULL PRIMARY KEY REFERENCES "access_entity" ("id") DEFERRABLE INITIALLY DEFERRED, "f_name" varchar(64) NOT NULL, "l_name" varchar(64) NOT NULL, "dob" date NULL, "m_name" varchar(100) NULL); @@ -193,6 +192,9 @@ CREATE TABLE IF NOT EXISTS "itam_device" ("model_notes" text NULL, "id" integer CREATE TABLE IF NOT EXISTS "itam_devicemodel" ("model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "name" varchar(50) NOT NULL UNIQUE, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "manufacturer_id" integer NULL REFERENCES "core_manufacturer" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "itam_deviceoperatingsystem" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "version" varchar(15) NOT NULL, "device_id" integer NOT NULL UNIQUE REFERENCES "itam_device" ("id") DEFERRABLE INITIALLY DEFERRED, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "operating_system_version_id" integer NOT NULL REFERENCES "itam_operatingsystemversion" ("id") DEFERRABLE INITIALLY DEFERRED, "installdate" datetime NULL); CREATE TABLE IF NOT EXISTS "itam_devicesoftware" ("model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "action" integer NULL, "installed" datetime NULL, "device_id" integer NOT NULL REFERENCES "itam_device" ("id") DEFERRABLE INITIALLY DEFERRED, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "software_id" integer NOT NULL REFERENCES "itam_software" ("id") DEFERRABLE INITIALLY DEFERRED, "installedversion_id" integer NULL REFERENCES "itam_softwareversion" ("id") DEFERRABLE INITIALLY DEFERRED, "version_id" integer NULL REFERENCES "itam_softwareversion" ("id") DEFERRABLE INITIALLY DEFERRED); +CREATE TABLE IF NOT EXISTS "itam_operatingsystem" ("model_notes" text NULL, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "created" datetime NOT NULL, "modified" datetime NOT NULL, "name" varchar(50) NOT NULL UNIQUE, "organization_id" integer NOT NULL REFERENCES "access_tenant" ("id") DEFERRABLE INITIALLY DEFERRED, "publisher_id" integer NULL REFERENCES "core_manufacturer" ("id") DEFERRABLE INITIALLY DEFERRED); +CREATE TABLE IF NOT EXISTS "itam_operatingsystem_audithistory" ("centurionaudit_ptr_id" integer NOT NULL PRIMARY KEY REFERENCES "core_audithistory" ("id") DEFERRABLE INITIALLY DEFERRED, "model_id" integer NOT NULL REFERENCES "itam_operatingsystem" ("id") DEFERRABLE INITIALLY DEFERRED); +CREATE TABLE IF NOT EXISTS "itam_operatingsystem_centurionmodelnote" ("centurionmodelnote_ptr_id" integer NOT NULL PRIMARY KEY REFERENCES "core_centurionmodelnote" ("id") DEFERRABLE INITIALLY DEFERRED, "model_id" integer NOT NULL REFERENCES "itam_operatingsystem" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE TABLE IF NOT EXISTS "django_session" ("session_key" varchar(40) NOT NULL PRIMARY KEY, "session_data" text NOT NULL, "expire_date" datetime NOT NULL); CREATE TABLE IF NOT EXISTS "social_auth_association" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "server_url" varchar(255) NOT NULL, "handle" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "issued" integer NOT NULL, "lifetime" integer NOT NULL, "assoc_type" varchar(64) NOT NULL); CREATE TABLE IF NOT EXISTS "social_auth_code" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "email" varchar(254) NOT NULL, "code" varchar(32) NOT NULL, "verified" bool NOT NULL, "timestamp" datetime NOT NULL); @@ -200,9 +202,9 @@ CREATE TABLE IF NOT EXISTS "social_auth_nonce" ("id" integer NOT NULL PRIMARY KE CREATE TABLE IF NOT EXISTS "social_auth_usersocialauth" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "provider" varchar(32) NOT NULL, "uid" varchar(255) NOT NULL, "user_id" integer NOT NULL REFERENCES "auth_user" ("id") DEFERRABLE INITIALLY DEFERRED, "created" datetime NOT NULL, "modified" datetime NOT NULL, "extra_data" text NOT NULL CHECK ((JSON_VALID("extra_data") OR "extra_data" IS NULL))); CREATE TABLE IF NOT EXISTS "social_auth_partial" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "token" varchar(32) NOT NULL, "next_step" smallint unsigned NOT NULL CHECK ("next_step" >= 0), "backend" varchar(32) NOT NULL, "timestamp" datetime NOT NULL, "data" text NOT NULL CHECK ((JSON_VALID("data") OR "data" IS NULL))); DELETE FROM sqlite_sequence; -INSERT INTO sqlite_sequence VALUES('django_migrations',201); -INSERT INTO sqlite_sequence VALUES('django_content_type',179); -INSERT INTO sqlite_sequence VALUES('auth_permission',761); +INSERT INTO sqlite_sequence VALUES('django_migrations',202); +INSERT INTO sqlite_sequence VALUES('django_content_type',181); +INSERT INTO sqlite_sequence VALUES('auth_permission',769); INSERT INTO sqlite_sequence VALUES('auth_group',0); INSERT INTO sqlite_sequence VALUES('auth_user',0); INSERT INTO sqlite_sequence VALUES('project_management_project',0); @@ -218,14 +220,13 @@ INSERT INTO sqlite_sequence VALUES('core_relatedtickets',0); INSERT INTO sqlite_sequence VALUES('core_ticket',0); INSERT INTO sqlite_sequence VALUES('core_ticketcomment',0); INSERT INTO sqlite_sequence VALUES('core_ticketlinkeditem',0); -INSERT INTO sqlite_sequence VALUES('itam_operatingsystem',0); INSERT INTO sqlite_sequence VALUES('itam_operatingsystemversion',0); INSERT INTO sqlite_sequence VALUES('itam_softwarecategory',0); INSERT INTO sqlite_sequence VALUES('itam_softwareversion',0); INSERT INTO sqlite_sequence VALUES('settings_externallink',0); INSERT INTO sqlite_sequence VALUES('itam_software',0); -INSERT INTO sqlite_sequence VALUES('settings_appsettings',1); INSERT INTO sqlite_sequence VALUES('settings_usersettings',0); +INSERT INTO sqlite_sequence VALUES('settings_appsettings',1); INSERT INTO sqlite_sequence VALUES('access_entity',0); INSERT INTO sqlite_sequence VALUES('core_ticketbase',0); INSERT INTO sqlite_sequence VALUES('core_ticketcommentbase',0); @@ -254,6 +255,7 @@ INSERT INTO sqlite_sequence VALUES('itam_device',0); INSERT INTO sqlite_sequence VALUES('itam_devicemodel',0); INSERT INTO sqlite_sequence VALUES('itam_deviceoperatingsystem',0); INSERT INTO sqlite_sequence VALUES('itam_devicesoftware',0); +INSERT INTO sqlite_sequence VALUES('itam_operatingsystem',0); INSERT INTO sqlite_sequence VALUES('social_auth_association',0); INSERT INTO sqlite_sequence VALUES('social_auth_code',0); INSERT INTO sqlite_sequence VALUES('social_auth_nonce',0); diff --git a/app/itam/tests/unit/operating_system/conftest.py b/app/itam/tests/unit/operating_system/conftest.py new file mode 100644 index 00000000..2f520ec5 --- /dev/null +++ b/app/itam/tests/unit/operating_system/conftest.py @@ -0,0 +1,19 @@ +import pytest + + + +@pytest.fixture( scope = 'class') +def model(model_operatingsystem): + + yield model_operatingsystem + + +@pytest.fixture( scope = 'class', autouse = True) +def model_kwargs(request, kwargs_operatingsystem): + + request.cls.kwargs_create_item = kwargs_operatingsystem.copy() + + yield kwargs_operatingsystem.copy() + + if hasattr(request.cls, 'kwargs_create_item'): + del request.cls.kwargs_create_item diff --git a/app/itam/tests/unit/operating_system/test_operating_system_api_v2.py b/app/itam/tests/unit/operating_system/test_operating_system_api_v2.py index c7282a3a..98ff37c0 100644 --- a/app/itam/tests/unit/operating_system/test_operating_system_api_v2.py +++ b/app/itam/tests/unit/operating_system/test_operating_system_api_v2.py @@ -23,6 +23,8 @@ User = django.contrib.auth.get_user_model() +@pytest.mark.model_operatingsystem +@pytest.mark.module_itam class OperatingSystemAPI( TestCase, APITenancyObject diff --git a/app/itam/tests/unit/operating_system/test_operating_system_item_ticket_api_v2.py b/app/itam/tests/unit/operating_system/test_operating_system_item_ticket_api_v2.py index 914e8699..5bbf7054 100644 --- a/app/itam/tests/unit/operating_system/test_operating_system_item_ticket_api_v2.py +++ b/app/itam/tests/unit/operating_system/test_operating_system_item_ticket_api_v2.py @@ -10,6 +10,8 @@ from itam.models.operating_system import OperatingSystem +@pytest.mark.model_operatingsystem +@pytest.mark.module_itam class OperatingSystemItemTicketAPI( ItemTicketAPI, TestCase, diff --git a/app/itam/tests/unit/operating_system/test_unit_operating_system_model.py b/app/itam/tests/unit/operating_system/test_unit_operating_system_model.py index bc22a383..a41be2d7 100644 --- a/app/itam/tests/unit/operating_system/test_unit_operating_system_model.py +++ b/app/itam/tests/unit/operating_system/test_unit_operating_system_model.py @@ -1,47 +1,101 @@ -from django.test import TestCase - import pytest -from centurion.tests.unit.test_unit_models import ( - TenancyObjectInheritedCases +from django.db import models + + +from core.tests.unit.centurion_abstract.test_unit_centurion_abstract_model import ( + CenturionAbstractModelInheritedCases ) -from itam.models.operating_system import OperatingSystem - -class OperatingSystemModel( - TenancyObjectInheritedCases, - TestCase, +@pytest.mark.model_operatingsystem +class OperatingSystemModelTestCases( + CenturionAbstractModelInheritedCases ): - model = OperatingSystem + + @property + def parameterized_class_attributes(self): + + return { + 'model_tag': { + 'value': 'operating_system' + }, + } - @pytest.mark.skip(reason="to be written") - def test_operating_system_update_is_global_no_change(user): - """Once operating_system is set to global it can't be changed. + @property + def parameterized_model_fields(self): - global status can't be changed as non-global items may reference the item. - """ - - pass - - @pytest.mark.skip(reason="to be written") - def test_operating_system_prevent_delete_if_used(user): - """Any operating_system in use by a operating_system must not be deleted. - - i.e. A global os can't be deleted - """ - - pass + return { + 'publisher': { + 'blank': True, + 'default': models.fields.NOT_PROVIDED, + 'field_type': models.ForeignKey, + 'null': True, + 'unique': False, + }, + 'name': { + 'blank': False, + 'default': models.fields.NOT_PROVIDED, + 'field_type': models.CharField, + 'length': 50, + 'null': False, + 'unique': True, + }, + 'modified': { + 'blank': False, + 'default': models.fields.NOT_PROVIDED, + 'field_type': models.DateTimeField, + 'null': False, + 'unique': False, + }, + } - @pytest.mark.skip(reason="to be written") - def test_operating_system_version_installs_by_os_count(user): - """Operating System Versions has a count field that must be accurate - The count is of model OperatingSystemVersion linked to model operating_systemOperatingSystem - """ +class OperatingSystemModelInheritedCases( + OperatingSystemModelTestCases, +): + pass - pass + + +@pytest.mark.module_itam +class OperatingSystemModelPyTest( + OperatingSystemModelTestCases, +): + pass + + # def test_method_get_url_kwargs(self, mocker, model_instance, model_kwargs): + # """Test Class Method + + # Ensure method `get_url_kwargs` returns the correct value. + # """ + + + # url = model_instance.get_url_kwargs() + + # assert model_instance.get_url_kwargs() == { + # 'device_id': model_kwargs['device'].id, + # 'pk': model_instance.id + # } + + + # def test_model_tag_defined(self, model): + # """ Model Tag + + # Ensure that the model has a tag defined. + # """ + + # pytest.xfail( reason = 'model does not require' ) + + + # def test_method_value_not_default___str__(self, model, model_instance ): + # """Test Method + + # Ensure method `__str__` does not return the default value. + # """ + + # pytest.xfail( reason = 'model does not require' ) diff --git a/app/itam/tests/unit/operating_system/test_unit_operating_system_viewset.py b/app/itam/tests/unit/operating_system/test_unit_operating_system_viewset.py index 793e3aa5..dd1ba213 100644 --- a/app/itam/tests/unit/operating_system/test_unit_operating_system_viewset.py +++ b/app/itam/tests/unit/operating_system/test_unit_operating_system_viewset.py @@ -8,6 +8,8 @@ from itam.viewsets.operating_system import ViewSet +@pytest.mark.model_operatingsystem +@pytest.mark.module_itam class OperatingSystemViewsetList( ModelViewSetInheritedCases, TestCase,