| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- import datetime
- from netaddr import IPNetwork
- from dcim.models import Device, DeviceRole, DeviceType, Manufacturer, Site
- from ipam.choices import *
- from ipam.models import *
- from tenancy.models import Tenant
- from utilities.testing import ViewTestCases, create_tags
- class VRFTestCase(ViewTestCases.PrimaryObjectViewTestCase):
- model = VRF
- @classmethod
- def setUpTestData(cls):
- tenants = (
- Tenant(name='Tenant A', slug='tenant-a'),
- Tenant(name='Tenant B', slug='tenant-b'),
- )
- Tenant.objects.bulk_create(tenants)
- VRF.objects.bulk_create([
- VRF(name='VRF 1', rd='65000:1'),
- VRF(name='VRF 2', rd='65000:2'),
- VRF(name='VRF 3', rd='65000:3'),
- ])
- tags = create_tags('Alpha', 'Bravo', 'Charlie')
- cls.form_data = {
- 'name': 'VRF X',
- 'rd': '65000:999',
- 'tenant': tenants[0].pk,
- 'enforce_unique': True,
- 'description': 'A new VRF',
- 'tags': [t.pk for t in tags],
- }
- cls.csv_data = (
- "name",
- "VRF 4",
- "VRF 5",
- "VRF 6",
- )
- cls.bulk_edit_data = {
- 'tenant': tenants[1].pk,
- 'enforce_unique': False,
- 'description': 'New description',
- }
- class RouteTargetTestCase(ViewTestCases.PrimaryObjectViewTestCase):
- model = RouteTarget
- @classmethod
- def setUpTestData(cls):
- tenants = (
- Tenant(name='Tenant A', slug='tenant-a'),
- Tenant(name='Tenant B', slug='tenant-b'),
- )
- Tenant.objects.bulk_create(tenants)
- tags = create_tags('Alpha', 'Bravo', 'Charlie')
- route_targets = (
- RouteTarget(name='65000:1001', tenant=tenants[0]),
- RouteTarget(name='65000:1002', tenant=tenants[1]),
- RouteTarget(name='65000:1003'),
- )
- RouteTarget.objects.bulk_create(route_targets)
- cls.form_data = {
- 'name': '65000:100',
- 'description': 'A new route target',
- 'tags': [t.pk for t in tags],
- }
- cls.csv_data = (
- "name,tenant,description",
- "65000:1004,Tenant A,Foo",
- "65000:1005,Tenant B,Bar",
- "65000:1006,,No tenant",
- )
- cls.bulk_edit_data = {
- 'tenant': tenants[1].pk,
- 'description': 'New description',
- }
- class RIRTestCase(ViewTestCases.OrganizationalObjectViewTestCase):
- model = RIR
- @classmethod
- def setUpTestData(cls):
- RIR.objects.bulk_create([
- RIR(name='RIR 1', slug='rir-1'),
- RIR(name='RIR 2', slug='rir-2'),
- RIR(name='RIR 3', slug='rir-3'),
- ])
- cls.form_data = {
- 'name': 'RIR X',
- 'slug': 'rir-x',
- 'is_private': True,
- 'description': 'A new RIR',
- }
- cls.csv_data = (
- "name,slug,description",
- "RIR 4,rir-4,Fourth RIR",
- "RIR 5,rir-5,Fifth RIR",
- "RIR 6,rir-6,Sixth RIR",
- )
- cls.bulk_edit_data = {
- 'description': 'New description',
- }
- class AggregateTestCase(ViewTestCases.PrimaryObjectViewTestCase):
- model = Aggregate
- @classmethod
- def setUpTestData(cls):
- rirs = (
- RIR(name='RIR 1', slug='rir-1'),
- RIR(name='RIR 2', slug='rir-2'),
- )
- RIR.objects.bulk_create(rirs)
- Aggregate.objects.bulk_create([
- Aggregate(prefix=IPNetwork('10.1.0.0/16'), rir=rirs[0]),
- Aggregate(prefix=IPNetwork('10.2.0.0/16'), rir=rirs[0]),
- Aggregate(prefix=IPNetwork('10.3.0.0/16'), rir=rirs[0]),
- ])
- tags = create_tags('Alpha', 'Bravo', 'Charlie')
- cls.form_data = {
- 'prefix': IPNetwork('10.99.0.0/16'),
- 'rir': rirs[1].pk,
- 'date_added': datetime.date(2020, 1, 1),
- 'description': 'A new aggregate',
- 'tags': [t.pk for t in tags],
- }
- cls.csv_data = (
- "prefix,rir",
- "10.4.0.0/16,RIR 1",
- "10.5.0.0/16,RIR 1",
- "10.6.0.0/16,RIR 1",
- )
- cls.bulk_edit_data = {
- 'rir': rirs[1].pk,
- 'date_added': datetime.date(2020, 1, 1),
- 'description': 'New description',
- }
- class RoleTestCase(ViewTestCases.OrganizationalObjectViewTestCase):
- model = Role
- @classmethod
- def setUpTestData(cls):
- Role.objects.bulk_create([
- Role(name='Role 1', slug='role-1'),
- Role(name='Role 2', slug='role-2'),
- Role(name='Role 3', slug='role-3'),
- ])
- cls.form_data = {
- 'name': 'Role X',
- 'slug': 'role-x',
- 'weight': 200,
- 'description': 'A new role',
- }
- cls.csv_data = (
- "name,slug,weight",
- "Role 4,role-4,1000",
- "Role 5,role-5,1000",
- "Role 6,role-6,1000",
- )
- cls.bulk_edit_data = {
- 'description': 'New description',
- }
- class PrefixTestCase(ViewTestCases.PrimaryObjectViewTestCase):
- model = Prefix
- @classmethod
- def setUpTestData(cls):
- sites = (
- Site(name='Site 1', slug='site-1'),
- Site(name='Site 2', slug='site-2'),
- )
- Site.objects.bulk_create(sites)
- vrfs = (
- VRF(name='VRF 1', rd='65000:1'),
- VRF(name='VRF 2', rd='65000:2'),
- )
- VRF.objects.bulk_create(vrfs)
- roles = (
- Role(name='Role 1', slug='role-1'),
- Role(name='Role 2', slug='role-2'),
- )
- Role.objects.bulk_create(roles)
- Prefix.objects.bulk_create([
- Prefix(prefix=IPNetwork('10.1.0.0/16'), vrf=vrfs[0], site=sites[0], role=roles[0]),
- Prefix(prefix=IPNetwork('10.2.0.0/16'), vrf=vrfs[0], site=sites[0], role=roles[0]),
- Prefix(prefix=IPNetwork('10.3.0.0/16'), vrf=vrfs[0], site=sites[0], role=roles[0]),
- ])
- tags = create_tags('Alpha', 'Bravo', 'Charlie')
- cls.form_data = {
- 'prefix': IPNetwork('192.0.2.0/24'),
- 'site': sites[1].pk,
- 'vrf': vrfs[1].pk,
- 'tenant': None,
- 'vlan': None,
- 'status': PrefixStatusChoices.STATUS_RESERVED,
- 'role': roles[1].pk,
- 'is_pool': True,
- 'description': 'A new prefix',
- 'tags': [t.pk for t in tags],
- }
- cls.csv_data = (
- "vrf,prefix,status",
- "VRF 1,10.4.0.0/16,active",
- "VRF 1,10.5.0.0/16,active",
- "VRF 1,10.6.0.0/16,active",
- )
- cls.bulk_edit_data = {
- 'site': sites[1].pk,
- 'vrf': vrfs[1].pk,
- 'tenant': None,
- 'status': PrefixStatusChoices.STATUS_RESERVED,
- 'role': roles[1].pk,
- 'is_pool': False,
- 'description': 'New description',
- }
- class IPRangeTestCase(ViewTestCases.PrimaryObjectViewTestCase):
- model = IPRange
- @classmethod
- def setUpTestData(cls):
- vrfs = (
- VRF(name='VRF 1', rd='65000:1'),
- VRF(name='VRF 2', rd='65000:2'),
- )
- VRF.objects.bulk_create(vrfs)
- roles = (
- Role(name='Role 1', slug='role-1'),
- Role(name='Role 2', slug='role-2'),
- )
- Role.objects.bulk_create(roles)
- ip_ranges = (
- IPRange(start_address='192.168.0.10/24', end_address='192.168.0.100/24', size=91),
- IPRange(start_address='192.168.1.10/24', end_address='192.168.1.100/24', size=91),
- IPRange(start_address='192.168.2.10/24', end_address='192.168.2.100/24', size=91),
- IPRange(start_address='192.168.3.10/24', end_address='192.168.3.100/24', size=91),
- IPRange(start_address='192.168.4.10/24', end_address='192.168.4.100/24', size=91),
- )
- IPRange.objects.bulk_create(ip_ranges)
- tags = create_tags('Alpha', 'Bravo', 'Charlie')
- cls.form_data = {
- 'start_address': IPNetwork('192.0.5.10/24'),
- 'end_address': IPNetwork('192.0.5.100/24'),
- 'vrf': vrfs[1].pk,
- 'tenant': None,
- 'vlan': None,
- 'status': IPRangeStatusChoices.STATUS_RESERVED,
- 'role': roles[1].pk,
- 'is_pool': True,
- 'description': 'A new IP range',
- 'tags': [t.pk for t in tags],
- }
- cls.csv_data = (
- "vrf,start_address,end_address,status",
- "VRF 1,10.1.0.1/16,10.1.9.254/16,active",
- "VRF 1,10.2.0.1/16,10.2.9.254/16,active",
- "VRF 1,10.3.0.1/16,10.3.9.254/16,active",
- )
- cls.bulk_edit_data = {
- 'vrf': vrfs[1].pk,
- 'tenant': None,
- 'status': IPRangeStatusChoices.STATUS_RESERVED,
- 'role': roles[1].pk,
- 'description': 'New description',
- }
- class IPAddressTestCase(ViewTestCases.PrimaryObjectViewTestCase):
- model = IPAddress
- @classmethod
- def setUpTestData(cls):
- vrfs = (
- VRF(name='VRF 1', rd='65000:1'),
- VRF(name='VRF 2', rd='65000:2'),
- )
- VRF.objects.bulk_create(vrfs)
- IPAddress.objects.bulk_create([
- IPAddress(address=IPNetwork('192.0.2.1/24'), vrf=vrfs[0]),
- IPAddress(address=IPNetwork('192.0.2.2/24'), vrf=vrfs[0]),
- IPAddress(address=IPNetwork('192.0.2.3/24'), vrf=vrfs[0]),
- ])
- tags = create_tags('Alpha', 'Bravo', 'Charlie')
- cls.form_data = {
- 'vrf': vrfs[1].pk,
- 'address': IPNetwork('192.0.2.99/24'),
- 'tenant': None,
- 'status': IPAddressStatusChoices.STATUS_RESERVED,
- 'role': IPAddressRoleChoices.ROLE_ANYCAST,
- 'nat_inside': None,
- 'dns_name': 'example',
- 'description': 'A new IP address',
- 'tags': [t.pk for t in tags],
- }
- cls.csv_data = (
- "vrf,address,status",
- "VRF 1,192.0.2.4/24,active",
- "VRF 1,192.0.2.5/24,active",
- "VRF 1,192.0.2.6/24,active",
- )
- cls.bulk_edit_data = {
- 'vrf': vrfs[1].pk,
- 'tenant': None,
- 'status': IPAddressStatusChoices.STATUS_RESERVED,
- 'role': IPAddressRoleChoices.ROLE_ANYCAST,
- 'dns_name': 'example',
- 'description': 'New description',
- }
- class VLANGroupTestCase(ViewTestCases.OrganizationalObjectViewTestCase):
- model = VLANGroup
- @classmethod
- def setUpTestData(cls):
- sites = (
- Site(name='Site 1', slug='site-1'),
- Site(name='Site 2', slug='site-2'),
- )
- Site.objects.bulk_create(sites)
- VLANGroup.objects.bulk_create([
- VLANGroup(name='VLAN Group 1', slug='vlan-group-1', scope=sites[0]),
- VLANGroup(name='VLAN Group 2', slug='vlan-group-2', scope=sites[0]),
- VLANGroup(name='VLAN Group 3', slug='vlan-group-3', scope=sites[0]),
- ])
- cls.form_data = {
- 'name': 'VLAN Group X',
- 'slug': 'vlan-group-x',
- 'description': 'A new VLAN group',
- }
- cls.csv_data = (
- "name,slug,description",
- "VLAN Group 4,vlan-group-4,Fourth VLAN group",
- "VLAN Group 5,vlan-group-5,Fifth VLAN group",
- "VLAN Group 6,vlan-group-6,Sixth VLAN group",
- )
- cls.bulk_edit_data = {
- 'description': 'New description',
- }
- class VLANTestCase(ViewTestCases.PrimaryObjectViewTestCase):
- model = VLAN
- @classmethod
- def setUpTestData(cls):
- sites = (
- Site(name='Site 1', slug='site-1'),
- Site(name='Site 2', slug='site-2'),
- )
- Site.objects.bulk_create(sites)
- vlangroups = (
- VLANGroup(name='VLAN Group 1', slug='vlan-group-1', scope=sites[0]),
- VLANGroup(name='VLAN Group 2', slug='vlan-group-2', scope=sites[1]),
- )
- VLANGroup.objects.bulk_create(vlangroups)
- roles = (
- Role(name='Role 1', slug='role-1'),
- Role(name='Role 2', slug='role-2'),
- )
- Role.objects.bulk_create(roles)
- VLAN.objects.bulk_create([
- VLAN(group=vlangroups[0], vid=101, name='VLAN101', site=sites[0], role=roles[0]),
- VLAN(group=vlangroups[0], vid=102, name='VLAN102', site=sites[0], role=roles[0]),
- VLAN(group=vlangroups[0], vid=103, name='VLAN103', site=sites[0], role=roles[0]),
- ])
- tags = create_tags('Alpha', 'Bravo', 'Charlie')
- cls.form_data = {
- 'site': sites[1].pk,
- 'group': vlangroups[1].pk,
- 'vid': 999,
- 'name': 'VLAN999',
- 'tenant': None,
- 'status': VLANStatusChoices.STATUS_RESERVED,
- 'role': roles[1].pk,
- 'description': 'A new VLAN',
- 'tags': [t.pk for t in tags],
- }
- cls.csv_data = (
- "vid,name,status",
- "104,VLAN104,active",
- "105,VLAN105,active",
- "106,VLAN106,active",
- )
- cls.bulk_edit_data = {
- 'site': sites[1].pk,
- 'group': vlangroups[1].pk,
- 'tenant': None,
- 'status': VLANStatusChoices.STATUS_RESERVED,
- 'role': roles[1].pk,
- 'description': 'New description',
- }
- # TODO: Update base class to PrimaryObjectViewTestCase
- # Blocked by absence of standard creation view
- class ServiceTestCase(
- ViewTestCases.GetObjectViewTestCase,
- ViewTestCases.GetObjectChangelogViewTestCase,
- ViewTestCases.EditObjectViewTestCase,
- ViewTestCases.DeleteObjectViewTestCase,
- ViewTestCases.ListObjectsViewTestCase,
- ViewTestCases.BulkImportObjectsViewTestCase,
- ViewTestCases.BulkEditObjectsViewTestCase,
- ViewTestCases.BulkDeleteObjectsViewTestCase
- ):
- model = Service
- @classmethod
- def setUpTestData(cls):
- site = Site.objects.create(name='Site 1', slug='site-1')
- manufacturer = Manufacturer.objects.create(name='Manufacturer 1', slug='manufacturer-1')
- devicetype = DeviceType.objects.create(manufacturer=manufacturer, model='Device Type 1')
- devicerole = DeviceRole.objects.create(name='Device Role 1', slug='device-role-1')
- device = Device.objects.create(name='Device 1', site=site, device_type=devicetype, device_role=devicerole)
- Service.objects.bulk_create([
- Service(device=device, name='Service 1', protocol=ServiceProtocolChoices.PROTOCOL_TCP, ports=[101]),
- Service(device=device, name='Service 2', protocol=ServiceProtocolChoices.PROTOCOL_TCP, ports=[102]),
- Service(device=device, name='Service 3', protocol=ServiceProtocolChoices.PROTOCOL_TCP, ports=[103]),
- ])
- tags = create_tags('Alpha', 'Bravo', 'Charlie')
- cls.form_data = {
- 'device': device.pk,
- 'virtual_machine': None,
- 'name': 'Service X',
- 'protocol': ServiceProtocolChoices.PROTOCOL_TCP,
- 'ports': '104,105',
- 'ipaddresses': [],
- 'description': 'A new service',
- 'tags': [t.pk for t in tags],
- }
- cls.csv_data = (
- "device,name,protocol,ports,description",
- "Device 1,Service 1,tcp,1,First service",
- "Device 1,Service 2,tcp,2,Second service",
- "Device 1,Service 3,udp,3,Third service",
- )
- cls.bulk_edit_data = {
- 'protocol': ServiceProtocolChoices.PROTOCOL_UDP,
- 'ports': '106,107',
- 'description': 'New description',
- }
|