1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Add UI views for custom links

This commit is contained in:
jeremystretch
2021-06-23 17:09:15 -04:00
parent b017927c69
commit 276ded0119
10 changed files with 292 additions and 60 deletions

View File

@@ -6,7 +6,7 @@ from django.contrib.contenttypes.models import ContentType
from django.urls import reverse
from dcim.models import Site
from extras.choices import CustomFieldFilterLogicChoices, CustomFieldTypeChoices, ObjectChangeActionChoices
from extras.choices import *
from extras.models import *
from utilities.testing import ViewTestCases, TestCase
@@ -51,6 +51,41 @@ class CustomFieldTestCase(ViewTestCases.PrimaryObjectViewTestCase):
}
class CustomLinkTestCase(ViewTestCases.PrimaryObjectViewTestCase):
model = CustomLink
@classmethod
def setUpTestData(cls):
site_ct = ContentType.objects.get_for_model(Site)
CustomLink.objects.bulk_create((
CustomLink(name='Custom Link 1', content_type=site_ct, link_text='Link 1', link_url='http://example.com/?1'),
CustomLink(name='Custom Link 2', content_type=site_ct, link_text='Link 2', link_url='http://example.com/?2'),
CustomLink(name='Custom Link 3', content_type=site_ct, link_text='Link 3', link_url='http://example.com/?3'),
))
cls.form_data = {
'name': 'Custom Link X',
'content_type': site_ct.pk,
'weight': 100,
'button_class': CustomLinkButtonClassChoices.CLASS_DEFAULT,
'link_text': 'Link X',
'link_url': 'http://example.com/?x'
}
cls.csv_data = (
"name,content_type,weight,button_class,link_text,link_url",
"Custom Link 4,dcim.site,100,primary,Link 4,http://exmaple.com/?4",
"Custom Link 5,dcim.site,100,primary,Link 5,http://exmaple.com/?5",
"Custom Link 6,dcim.site,100,primary,Link 6,http://exmaple.com/?6",
)
cls.bulk_edit_data = {
'button_class': CustomLinkButtonClassChoices.CLASS_INFO,
'weight': 200,
}
class TagTestCase(ViewTestCases.OrganizationalObjectViewTestCase):
model = Tag