mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-26 09:16:10 -06:00
Add view tests
This commit is contained in:
parent
429eaeeb3d
commit
fc84e23968
@ -18,7 +18,7 @@ class DataSourceForm(NetBoxModelForm):
|
|||||||
class Meta:
|
class Meta:
|
||||||
model = DataSource
|
model = DataSource
|
||||||
fields = [
|
fields = [
|
||||||
'name', 'type', 'source_url', 'enabled', 'description', 'comments', 'ignore_rules',
|
'name', 'type', 'source_url', 'enabled', 'description', 'comments', 'ignore_rules', 'tags',
|
||||||
]
|
]
|
||||||
widgets = {
|
widgets = {
|
||||||
'type': StaticSelect(
|
'type': StaticSelect(
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
|
||||||
|
from utilities.testing import APITestCase, APIViewTestCases
|
||||||
from ..choices import *
|
from ..choices import *
|
||||||
from ..models import *
|
from ..models import *
|
||||||
from utilities.testing import APITestCase, APIViewTestCases
|
|
||||||
|
|
||||||
|
|
||||||
class AppTest(APITestCase):
|
class AppTest(APITestCase):
|
||||||
|
@ -3,10 +3,10 @@ from datetime import datetime
|
|||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
|
||||||
|
from utilities.testing import ChangeLoggedFilterSetTests
|
||||||
from ..choices import *
|
from ..choices import *
|
||||||
from ..filtersets import *
|
from ..filtersets import *
|
||||||
from ..models import *
|
from ..models import *
|
||||||
from utilities.testing import ChangeLoggedFilterSetTests
|
|
||||||
|
|
||||||
|
|
||||||
class DataSourceTestCase(TestCase, ChangeLoggedFilterSetTests):
|
class DataSourceTestCase(TestCase, ChangeLoggedFilterSetTests):
|
||||||
|
91
netbox/core/tests/test_views.py
Normal file
91
netbox/core/tests/test_views.py
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
from django.utils import timezone
|
||||||
|
|
||||||
|
from utilities.testing import ViewTestCases, create_tags
|
||||||
|
from ..choices import *
|
||||||
|
from ..models import *
|
||||||
|
|
||||||
|
|
||||||
|
class DataSourceTestCase(ViewTestCases.PrimaryObjectViewTestCase):
|
||||||
|
model = DataSource
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpTestData(cls):
|
||||||
|
data_sources = (
|
||||||
|
DataSource(name='Data Source 1', type=DataSourceTypeChoices.LOCAL, source_url='file:///var/tmp/source1/'),
|
||||||
|
DataSource(name='Data Source 2', type=DataSourceTypeChoices.LOCAL, source_url='file:///var/tmp/source2/'),
|
||||||
|
DataSource(name='Data Source 3', type=DataSourceTypeChoices.LOCAL, source_url='file:///var/tmp/source3/'),
|
||||||
|
)
|
||||||
|
DataSource.objects.bulk_create(data_sources)
|
||||||
|
|
||||||
|
tags = create_tags('Alpha', 'Bravo', 'Charlie')
|
||||||
|
|
||||||
|
cls.form_data = {
|
||||||
|
'name': 'Data Source X',
|
||||||
|
'type': DataSourceTypeChoices.GIT,
|
||||||
|
'source_url': 'http:///exmaple/com/foo/bar/',
|
||||||
|
'description': 'Something',
|
||||||
|
'comments': 'Foo bar baz',
|
||||||
|
'tags': [t.pk for t in tags],
|
||||||
|
}
|
||||||
|
|
||||||
|
cls.csv_data = (
|
||||||
|
f"name,type,source_url,enabled",
|
||||||
|
f"Data Source 4,{DataSourceTypeChoices.LOCAL},file:///var/tmp/source4/,true",
|
||||||
|
f"Data Source 5,{DataSourceTypeChoices.LOCAL},file:///var/tmp/source4/,true",
|
||||||
|
f"Data Source 6,{DataSourceTypeChoices.GIT},http:///exmaple/com/foo/bar/,false",
|
||||||
|
)
|
||||||
|
|
||||||
|
cls.csv_update_data = (
|
||||||
|
"id,name,description",
|
||||||
|
f"{data_sources[0].pk},Data Source 7,New description7",
|
||||||
|
f"{data_sources[1].pk},Data Source 8,New description8",
|
||||||
|
f"{data_sources[2].pk},Data Source 9,New description9",
|
||||||
|
)
|
||||||
|
|
||||||
|
cls.bulk_edit_data = {
|
||||||
|
'enabled': False,
|
||||||
|
'description': 'New description',
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class DataFileTestCase(
|
||||||
|
ViewTestCases.GetObjectViewTestCase,
|
||||||
|
ViewTestCases.GetObjectChangelogViewTestCase,
|
||||||
|
ViewTestCases.DeleteObjectViewTestCase,
|
||||||
|
ViewTestCases.ListObjectsViewTestCase,
|
||||||
|
ViewTestCases.BulkDeleteObjectsViewTestCase,
|
||||||
|
):
|
||||||
|
model = DataFile
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpTestData(cls):
|
||||||
|
datasource = DataSource.objects.create(
|
||||||
|
name='Data Source 1',
|
||||||
|
type=DataSourceTypeChoices.LOCAL,
|
||||||
|
source_url='file:///var/tmp/source1/'
|
||||||
|
)
|
||||||
|
|
||||||
|
data_files = (
|
||||||
|
DataFile(
|
||||||
|
source=datasource,
|
||||||
|
path='dir1/file1.txt',
|
||||||
|
last_updated=timezone.now(),
|
||||||
|
size=1000,
|
||||||
|
hash='442da078f0111cbdf42f21903724f6597c692535f55bdfbbea758a1ae99ad9e1'
|
||||||
|
),
|
||||||
|
DataFile(
|
||||||
|
source=datasource,
|
||||||
|
path='dir1/file2.txt',
|
||||||
|
last_updated=timezone.now(),
|
||||||
|
size=2000,
|
||||||
|
hash='a78168c7c97115bafd96450ed03ea43acec495094c5caa28f0d02e20e3a76cc2'
|
||||||
|
),
|
||||||
|
DataFile(
|
||||||
|
source=datasource,
|
||||||
|
path='dir1/file3.txt',
|
||||||
|
last_updated=timezone.now(),
|
||||||
|
size=3000,
|
||||||
|
hash='12b8827a14c4d5a2f30b6c6e2b7983063988612391c6cbe8ee7493b59054827a'
|
||||||
|
),
|
||||||
|
)
|
||||||
|
DataFile.objects.bulk_create(data_files)
|
Loading…
Reference in New Issue
Block a user