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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
# 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 uuid
from openstackclient.tests.functional.network.v2 import common
class NetworkSegmentTests(common.NetworkTests):
"""Functional tests for network segment"""
@classmethod
def setUpClass(cls):
super().setUpClass()
if cls.haz_network:
cls.NETWORK_NAME = uuid.uuid4().hex
cls.PHYSICAL_NETWORK_NAME = uuid.uuid4().hex
# Create a network for the all subnet tests
cmd_output = cls.openstack(
'network create ' + cls.NETWORK_NAME,
parse_output=True,
)
# Get network_id for assertEqual
cls.NETWORK_ID = cmd_output["id"]
@classmethod
def tearDownClass(cls):
try:
if cls.haz_network:
raw_output = cls.openstack(
'network delete ' + cls.NETWORK_NAME
)
cls.assertOutput('', raw_output)
finally:
super().tearDownClass()
def setUp(self):
super().setUp()
if not self.is_extension_enabled("segment"):
self.skipTest("No segment extension present")
def test_network_segment_create_delete(self):
name = uuid.uuid4().hex
json_output = self.openstack(
' network segment create '
+ '--network '
+ self.NETWORK_ID
+ ' '
+ '--network-type geneve '
+ '--segment 2055 '
+ name,
parse_output=True,
)
self.assertEqual(
name,
json_output["name"],
)
raw_output = self.openstack(
'network segment delete ' + name,
)
self.assertOutput('', raw_output)
def test_network_segment_list(self):
name = uuid.uuid4().hex
json_output = self.openstack(
' network segment create '
+ '--network '
+ self.NETWORK_ID
+ ' '
+ '--network-type geneve '
+ '--segment 2055 '
+ name,
parse_output=True,
)
network_segment_id = json_output.get('id')
network_segment_name = json_output.get('name')
self.addCleanup(
self.openstack, 'network segment delete ' + network_segment_id
)
self.assertEqual(
name,
json_output["name"],
)
json_output = self.openstack(
'network segment list',
parse_output=True,
)
item_map = {item.get('ID'): item.get('Name') for item in json_output}
self.assertIn(network_segment_id, item_map.keys())
self.assertIn(network_segment_name, item_map.values())
def test_network_segment_set_show(self):
name = uuid.uuid4().hex
json_output = self.openstack(
' network segment create '
+ '--network '
+ self.NETWORK_ID
+ ' '
+ '--network-type geneve '
+ '--segment 2055 '
+ name,
parse_output=True,
)
self.addCleanup(self.openstack, 'network segment delete ' + name)
if self.is_extension_enabled('standard-attr-segment'):
self.assertEqual(
'',
json_output["description"],
)
else:
self.assertIsNone(
json_output["description"],
)
new_description = 'new_description'
cmd_output = self.openstack(
'network segment set '
+ '--description '
+ new_description
+ ' '
+ name
)
self.assertOutput('', cmd_output)
json_output = self.openstack(
'network segment show ' + name,
parse_output=True,
)
self.assertEqual(
new_description,
json_output["description"],
)
|