-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(base): placeholder tests for config groups software
!22 #43
- Loading branch information
Showing
3 changed files
with
950 additions
and
0 deletions.
There are no files selected for viewing
245 changes: 245 additions & 0 deletions
245
...onfig_management/tests/config_groups_software/test_config_groups_software_core_history.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,245 @@ | ||
|
||
import pytest | ||
import unittest | ||
import requests | ||
|
||
from django.test import TestCase, Client | ||
|
||
from access.models import Organization | ||
|
||
from core.models.history import History | ||
|
||
from config_management.models.groups import ConfigGroups | ||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_auth_view(): | ||
# """ User requires Permission view_history """ | ||
# pass | ||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_create(): | ||
# """ History row must be added to history table on create """ | ||
# pass | ||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_update(): | ||
# """ History row must be added to history table on updatej """ | ||
# pass | ||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_delete(): | ||
# """ History row must be added to history table on delete """ | ||
# pass | ||
|
||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_operating_system_create(): | ||
# """ History row must be added to history table on create | ||
|
||
# Must also have populated parent_item_pk and parent_item_class columns | ||
# """ | ||
# pass | ||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_operating_system_update(): | ||
# """ History row must be added to history table on update | ||
|
||
# Must also have populated parent_item_pk and parent_item_class columns | ||
# """ | ||
# pass | ||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_operating_system_delete(): | ||
# """ History row must be added to history table on delete | ||
|
||
# Must also have populated parent_item_pk and parent_item_class columns | ||
# """ | ||
# pass | ||
|
||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_software_create(): | ||
# """ History row must be added to history table on create | ||
|
||
# Must also have populated parent_item_pk and parent_item_class columns | ||
# """ | ||
# pass | ||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_software_update(): | ||
# """ History row must be added to history table on update | ||
|
||
# Must also have populated parent_item_pk and parent_item_class columns | ||
# """ | ||
# pass | ||
|
||
|
||
# @pytest.mark.skip(reason="to be written") | ||
# def test_history_device_software_delete(): | ||
# """ History row must be added to history table on delete | ||
|
||
# Must also have populated parent_item_pk and parent_item_class columns | ||
# """ | ||
# pass | ||
|
||
|
||
|
||
|
||
class ConfigGroupSoftwareHistory(TestCase): | ||
|
||
model = ConfigGroups | ||
|
||
model_name = 'configgroups' | ||
|
||
|
||
@classmethod | ||
def setUpTestData(self): | ||
""" Setup Test """ | ||
|
||
organization = Organization.objects.create(name='test_org') | ||
|
||
self.organization = organization | ||
|
||
self.item_create = self.model.objects.create( | ||
name = 'test_item_' + self.model_name, | ||
organization = self.organization | ||
) | ||
|
||
|
||
self.history_create = History.objects.get( | ||
action = History.Actions.ADD[0], | ||
item_pk = self.item_create.pk, | ||
item_class = self.model._meta.model_name, | ||
) | ||
|
||
self.item_change = self.item_create | ||
self.item_change.name = 'test_item_' + self.model_name + '_changed' | ||
self.item_change.save() | ||
|
||
self.history_change = History.objects.get( | ||
action = History.Actions.UPDATE[0], | ||
item_pk = self.item_change.pk, | ||
item_class = self.model._meta.model_name, | ||
) | ||
|
||
|
||
# field type testing to be done as part of model testing | ||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_add_field_action(self): | ||
""" Ensure action is "add" for item creation """ | ||
|
||
history = self.history_create.__dict__ | ||
|
||
assert history['action'] == int(History.Actions.ADD[0]) | ||
# assert type(history['action']) is int | ||
|
||
|
||
@pytest.mark.skip(reason="to be written") | ||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_add_field_after(self): | ||
""" Ensure after field contains correct value """ | ||
|
||
history = self.history_create.__dict__ | ||
|
||
assert history['after'] == str('{}') | ||
# assert type(history['after']) is str | ||
|
||
|
||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_add_field_before(self): | ||
""" Ensure before field is an empty JSON string for create """ | ||
|
||
history = self.history_create.__dict__ | ||
|
||
assert history['before'] == str('{}') | ||
# assert type(history['before']) is str | ||
|
||
|
||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_add_field_item_pk(self): | ||
""" Ensure history entry field item_pk is the created items pk """ | ||
|
||
history = self.history_create.__dict__ | ||
|
||
assert history['item_pk'] == self.item_create.pk | ||
# assert type(history['item_pk']) is int | ||
|
||
|
||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_add_field_item_class(self): | ||
""" Ensure history entry field item_class is the model name """ | ||
|
||
history = self.history_create.__dict__ | ||
|
||
assert history['item_class'] == self.model._meta.model_name | ||
# assert type(history['item_class']) is str | ||
|
||
|
||
|
||
|
||
################################## Change ################################## | ||
|
||
|
||
|
||
|
||
# field type testing to be done as part of model testing | ||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_change_field_action(self): | ||
""" Ensure action is "add" for item creation """ | ||
|
||
history = self.history_change.__dict__ | ||
|
||
assert history['action'] == int(History.Actions.UPDATE[0]) | ||
# assert type(history['action']) is int | ||
|
||
|
||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_change_field_after(self): | ||
""" Ensure after field contains correct value """ | ||
|
||
history = self.history_change.__dict__ | ||
|
||
assert history['after'] == str('{"name": "test_item_' + self.model_name + '_changed"}') | ||
# assert type(history['after']) is str | ||
|
||
|
||
@pytest.mark.skip(reason="to be written") | ||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_change_field_before(self): | ||
""" Ensure before field is an empty JSON string for create """ | ||
|
||
history = self.history_change.__dict__ | ||
|
||
assert history['before'] == str('{}') | ||
# assert type(history['before']) is str | ||
|
||
|
||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_change_field_item_pk(self): | ||
""" Ensure history entry field item_pk is the created items pk """ | ||
|
||
history = self.history_change.__dict__ | ||
|
||
assert history['item_pk'] == self.item_create.pk | ||
# assert type(history['item_pk']) is int | ||
|
||
|
||
@pytest.mark.skip(reason="figure out best way to test") | ||
def test_device_history_entry_item_change_field_item_class(self): | ||
""" Ensure history entry field item_class is the model name """ | ||
|
||
history = self.history_change.__dict__ | ||
|
||
assert history['item_class'] == self.model._meta.model_name | ||
# assert type(history['item_class']) is str | ||
|
||
|
Oops, something went wrong.