2015-06-10 12:52:40 -06:00
|
|
|
# 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.
|
|
|
|
|
2017-01-13 12:00:31 -08:00
|
|
|
import json
|
2015-06-10 12:52:40 -06:00
|
|
|
import uuid
|
|
|
|
|
2016-09-05 20:35:06 -07:00
|
|
|
from openstackclient.tests.functional import base
|
2015-06-10 12:52:40 -06:00
|
|
|
|
|
|
|
|
2016-09-05 20:35:06 -07:00
|
|
|
class NetworkTests(base.TestCase):
|
2016-12-30 12:57:02 -06:00
|
|
|
"""Functional tests for network"""
|
2015-06-10 12:52:40 -06:00
|
|
|
|
2016-12-30 12:57:02 -06:00
|
|
|
def test_network_delete(self):
|
|
|
|
"""Test create, delete multiple"""
|
|
|
|
name1 = uuid.uuid4().hex
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
'network create -f json ' +
|
2016-12-30 12:57:02 -06:00
|
|
|
'--description aaaa ' +
|
|
|
|
name1
|
2017-01-13 12:00:31 -08:00
|
|
|
))
|
|
|
|
self.assertIsNotNone(cmd_output["id"])
|
2016-12-30 12:57:02 -06:00
|
|
|
self.assertEqual(
|
|
|
|
'aaaa',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["description"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
2017-01-13 12:00:31 -08:00
|
|
|
|
2016-12-30 12:57:02 -06:00
|
|
|
name2 = uuid.uuid4().hex
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
'network create -f json ' +
|
2016-12-30 12:57:02 -06:00
|
|
|
'--description bbbb ' +
|
|
|
|
name2
|
2017-01-13 12:00:31 -08:00
|
|
|
))
|
|
|
|
self.assertIsNotNone(cmd_output["id"])
|
2016-12-30 12:57:02 -06:00
|
|
|
self.assertEqual(
|
|
|
|
'bbbb',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["description"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
del_output = self.openstack('network delete ' + name1 + ' ' + name2)
|
|
|
|
self.assertOutput('', del_output)
|
2015-06-10 12:52:40 -06:00
|
|
|
|
|
|
|
def test_network_list(self):
|
2016-12-30 12:57:02 -06:00
|
|
|
"""Test create defaults, list filters, delete"""
|
|
|
|
name1 = uuid.uuid4().hex
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
'network create -f json ' +
|
2016-12-30 12:57:02 -06:00
|
|
|
'--description aaaa ' +
|
|
|
|
name1
|
2017-01-13 12:00:31 -08:00
|
|
|
))
|
2016-12-30 12:57:02 -06:00
|
|
|
self.addCleanup(self.openstack, 'network delete ' + name1)
|
2017-01-13 12:00:31 -08:00
|
|
|
self.assertIsNotNone(cmd_output["id"])
|
2016-12-30 12:57:02 -06:00
|
|
|
self.assertEqual(
|
|
|
|
'aaaa',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["description"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
# Check the default values
|
|
|
|
self.assertEqual(
|
|
|
|
'UP',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["admin_state_up"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
False,
|
|
|
|
cmd_output["shared"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'Internal',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["router:external"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
# NOTE(dtroyer): is_default is not present in the create output
|
|
|
|
# so make sure it stays that way.
|
2017-01-13 12:00:31 -08:00
|
|
|
# NOTE(stevemar): is_default *is* present in SDK 0.9.11 and newer,
|
|
|
|
# but the value seems to always be None, regardless
|
|
|
|
# of the --default or --no-default value.
|
|
|
|
# self.assertEqual('x', cmd_output)
|
|
|
|
if ('is_default' in cmd_output):
|
|
|
|
self.assertEqual(
|
|
|
|
None,
|
|
|
|
cmd_output["is_default"],
|
|
|
|
)
|
2016-12-30 12:57:02 -06:00
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
True,
|
|
|
|
cmd_output["port_security_enabled"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
name2 = uuid.uuid4().hex
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
'network create -f json ' +
|
2016-12-30 12:57:02 -06:00
|
|
|
'--description bbbb ' +
|
|
|
|
'--disable ' +
|
|
|
|
'--share ' +
|
|
|
|
name2
|
2017-01-13 12:00:31 -08:00
|
|
|
))
|
2016-12-30 12:57:02 -06:00
|
|
|
self.addCleanup(self.openstack, 'network delete ' + name2)
|
2017-01-13 12:00:31 -08:00
|
|
|
self.assertIsNotNone(cmd_output["id"])
|
2016-12-30 12:57:02 -06:00
|
|
|
self.assertEqual(
|
|
|
|
'bbbb',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["description"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'DOWN',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["admin_state_up"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
True,
|
|
|
|
cmd_output["shared"],
|
|
|
|
)
|
|
|
|
if ('is_default' in cmd_output):
|
|
|
|
self.assertEqual(
|
|
|
|
None,
|
|
|
|
cmd_output["is_default"],
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
True,
|
|
|
|
cmd_output["port_security_enabled"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
# Test list --long
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
"network list -f json " +
|
|
|
|
"--long"
|
|
|
|
))
|
|
|
|
col_name = [x["Name"] for x in cmd_output]
|
|
|
|
self.assertIn(name1, col_name)
|
|
|
|
self.assertIn(name2, col_name)
|
2016-12-30 12:57:02 -06:00
|
|
|
|
|
|
|
# Test list --long --enable
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
"network list -f json " +
|
|
|
|
"--enable " +
|
|
|
|
"--long"
|
|
|
|
))
|
|
|
|
col_name = [x["Name"] for x in cmd_output]
|
|
|
|
self.assertIn(name1, col_name)
|
|
|
|
self.assertNotIn(name2, col_name)
|
2016-12-30 12:57:02 -06:00
|
|
|
|
|
|
|
# Test list --long --disable
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
"network list -f json " +
|
|
|
|
"--disable " +
|
|
|
|
"--long"
|
|
|
|
))
|
|
|
|
col_name = [x["Name"] for x in cmd_output]
|
|
|
|
self.assertNotIn(name1, col_name)
|
|
|
|
self.assertIn(name2, col_name)
|
2016-12-30 12:57:02 -06:00
|
|
|
|
|
|
|
# Test list --long --share
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
"network list -f json " +
|
|
|
|
"--share " +
|
|
|
|
"--long"
|
|
|
|
))
|
|
|
|
col_name = [x["Name"] for x in cmd_output]
|
|
|
|
self.assertNotIn(name1, col_name)
|
|
|
|
self.assertIn(name2, col_name)
|
2016-12-30 12:57:02 -06:00
|
|
|
|
|
|
|
# Test list --long --no-share
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
"network list -f json " +
|
|
|
|
"--no-share " +
|
|
|
|
"--long"
|
|
|
|
))
|
|
|
|
col_name = [x["Name"] for x in cmd_output]
|
|
|
|
self.assertIn(name1, col_name)
|
|
|
|
self.assertNotIn(name2, col_name)
|
2015-06-10 12:52:40 -06:00
|
|
|
|
|
|
|
def test_network_set(self):
|
2016-12-30 12:57:02 -06:00
|
|
|
"""Tests create options, set, show, delete"""
|
|
|
|
name = uuid.uuid4().hex
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
'network create -f json ' +
|
2016-12-30 12:57:02 -06:00
|
|
|
'--description aaaa ' +
|
|
|
|
'--enable ' +
|
|
|
|
'--no-share ' +
|
|
|
|
'--internal ' +
|
|
|
|
'--no-default ' +
|
|
|
|
'--enable-port-security ' +
|
|
|
|
name
|
2017-01-13 12:00:31 -08:00
|
|
|
))
|
2016-12-30 12:57:02 -06:00
|
|
|
self.addCleanup(self.openstack, 'network delete ' + name)
|
2017-01-13 12:00:31 -08:00
|
|
|
self.assertIsNotNone(cmd_output["id"])
|
2016-12-30 12:57:02 -06:00
|
|
|
self.assertEqual(
|
|
|
|
'aaaa',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["description"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'UP',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["admin_state_up"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
False,
|
|
|
|
cmd_output["shared"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'Internal',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["router:external"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
# NOTE(dtroyer): is_default is not present in the create output
|
|
|
|
# so make sure it stays that way.
|
2017-01-13 12:00:31 -08:00
|
|
|
# NOTE(stevemar): is_default *is* present in SDK 0.9.11 and newer,
|
|
|
|
# but the value seems to always be None, regardless
|
|
|
|
# of the --default or --no-default value.
|
|
|
|
if ('is_default' in cmd_output):
|
|
|
|
self.assertEqual(
|
|
|
|
None,
|
|
|
|
cmd_output["is_default"],
|
|
|
|
)
|
2016-12-30 12:57:02 -06:00
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
True,
|
|
|
|
cmd_output["port_security_enabled"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
raw_output = self.openstack(
|
|
|
|
'network set ' +
|
|
|
|
'--description cccc ' +
|
|
|
|
'--disable ' +
|
|
|
|
'--share ' +
|
|
|
|
'--external ' +
|
|
|
|
'--disable-port-security ' +
|
|
|
|
name
|
|
|
|
)
|
|
|
|
self.assertOutput('', raw_output)
|
|
|
|
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
'network show -f json ' + name
|
|
|
|
))
|
2016-12-30 12:57:02 -06:00
|
|
|
|
|
|
|
self.assertEqual(
|
|
|
|
'cccc',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["description"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'DOWN',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["admin_state_up"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
True,
|
|
|
|
cmd_output["shared"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
'External',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["router:external"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
# why not 'None' like above??
|
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
False,
|
|
|
|
cmd_output["is_default"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
False,
|
|
|
|
cmd_output["port_security_enabled"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
# NOTE(dtroyer): There is ambiguity around is_default in that
|
|
|
|
# it is not in the API docs and apparently can
|
|
|
|
# not be set when the network is --external,
|
|
|
|
# although the option handling code only looks at
|
|
|
|
# the value of is_default when external is True.
|
|
|
|
raw_output = self.openstack(
|
|
|
|
'network set ' +
|
|
|
|
'--default ' +
|
|
|
|
name
|
|
|
|
)
|
|
|
|
self.assertOutput('', raw_output)
|
|
|
|
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output = json.loads(self.openstack(
|
|
|
|
'network show -f json ' + name
|
|
|
|
))
|
2016-12-30 12:57:02 -06:00
|
|
|
|
|
|
|
self.assertEqual(
|
|
|
|
'cccc',
|
2017-01-13 12:00:31 -08:00
|
|
|
cmd_output["description"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|
|
|
|
# NOTE(dtroyer): This should be 'True'
|
|
|
|
self.assertEqual(
|
2017-01-13 12:00:31 -08:00
|
|
|
False,
|
|
|
|
cmd_output["port_security_enabled"],
|
2016-12-30 12:57:02 -06:00
|
|
|
)
|