1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import testtools
from openstack.network.v2 import network
IDENTIFIER = 'IDENTIFIER'
EXAMPLE = {
'admin_state_up': True,
'id': IDENTIFIER,
'name': '3',
'tenant_id': '4',
'provider:network_type': '5',
'provider:physical_network': '6',
'provider:segmentation_id': '7',
'router:external': True,
'segments': '9',
'shared': True,
'status': '11',
'subnets': ['12a', '12b'],
'mtu': 1400,
'port_security_enabled': True,
'availability_zone_hints': ['15', '16'],
'availability_zones': ['16'],
}
class TestNetwork(testtools.TestCase):
def test_basic(self):
sot = network.Network()
self.assertEqual('network', sot.resource_key)
self.assertEqual('networks', sot.resources_key)
self.assertEqual('/networks', sot.base_path)
self.assertEqual('network', sot.service.service_type)
self.assertTrue(sot.allow_create)
self.assertTrue(sot.allow_retrieve)
self.assertTrue(sot.allow_update)
self.assertTrue(sot.allow_delete)
self.assertTrue(sot.allow_list)
def test_make_it(self):
sot = network.Network(EXAMPLE)
self.assertEqual(EXAMPLE['admin_state_up'], sot.admin_state_up)
self.assertEqual(EXAMPLE['id'], sot.id)
self.assertEqual(EXAMPLE['name'], sot.name)
self.assertEqual(EXAMPLE['tenant_id'], sot.project_id)
self.assertEqual(EXAMPLE['provider:network_type'],
sot.provider_network_type)
self.assertEqual(EXAMPLE['provider:physical_network'],
sot.provider_physical_network)
self.assertEqual(EXAMPLE['provider:segmentation_id'],
sot.provider_segmentation_id)
self.assertEqual(EXAMPLE['router:external'], sot.router_external)
self.assertEqual(EXAMPLE['segments'], sot.segments)
self.assertEqual(EXAMPLE['shared'], sot.shared)
self.assertEqual(EXAMPLE['status'], sot.status)
self.assertEqual(EXAMPLE['subnets'], sot.subnet_ids)
self.assertEqual(EXAMPLE['mtu'], sot.mtu)
self.assertEqual(EXAMPLE['port_security_enabled'],
sot.is_port_security_enabled)
self.assertEqual(EXAMPLE['availability_zone_hints'],
sot.availability_zone_hints)
self.assertEqual(EXAMPLE['availability_zones'],
sot.availability_zones)
def test_external(self):
sot = network.Network(EXAMPLE)
self.assertTrue(sot.is_external())
example = dict(EXAMPLE)
example['router:external'] = False
sot = network.Network(example)
self.assertFalse(sot.is_external())
example = dict(EXAMPLE)
del example['router:external']
sot = network.Network(example)
self.assertFalse(sot.is_external())
example = dict(EXAMPLE)
del example['router:external']
example['router_type'] = 'Internal'
sot = network.Network(example)
self.assertFalse(sot.is_external())
example = dict(EXAMPLE)
del example['router:external']
example['router_type'] = 'External'
sot = network.Network(example)
self.assertTrue(sot.is_external())
|