f9ceed4f43
With reference to [1], neutron address-scope-update has 'shared'
option missing. The following patch fixes this issue.
[1]:9b830dde9b/neutron/extensions/address_scope.py
TrivialFix
Change-Id: I520ea471f5ab2681d0890370349433440734ab69
179 lines
7.5 KiB
Python
179 lines
7.5 KiB
Python
# Copyright 2015 Huawei Technologies India Pvt. Ltd.
|
|
# All Rights Reserved
|
|
#
|
|
# 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 sys
|
|
|
|
from mox3 import mox
|
|
|
|
from neutronclient.common import exceptions
|
|
from neutronclient.neutron.v2_0 import address_scope
|
|
from neutronclient.tests.unit import test_cli20
|
|
|
|
|
|
class CLITestV20AddressScopeJSON(test_cli20.CLITestV20Base):
|
|
|
|
non_admin_status_resources = ['address_scope']
|
|
|
|
def setUp(self):
|
|
super(CLITestV20AddressScopeJSON, self).setUp(plurals={'tags': 'tag'})
|
|
|
|
def test_create_address_scope_with_minimum_option_ipv4(self):
|
|
"""Create address_scope: foo-address-scope with minimum option."""
|
|
resource = 'address_scope'
|
|
cmd = address_scope.CreateAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
name = 'foo-address-scope'
|
|
myid = 'myid'
|
|
args = [name, '4']
|
|
position_names = ['name', 'ip_version']
|
|
position_values = [name, 4]
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
position_names, position_values)
|
|
|
|
def test_create_address_scope_with_minimum_option_ipv6(self):
|
|
"""Create address_scope: foo-address-scope with minimum option."""
|
|
resource = 'address_scope'
|
|
cmd = address_scope.CreateAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
name = 'foo-address-scope'
|
|
myid = 'myid'
|
|
args = [name, '6']
|
|
position_names = ['name', 'ip_version']
|
|
position_values = [name, 6]
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
position_names, position_values)
|
|
|
|
def test_create_address_scope_with_minimum_option_bad_ip_version(self):
|
|
"""Create address_scope: foo-address-scope with minimum option."""
|
|
resource = 'address_scope'
|
|
cmd = address_scope.CreateAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
name = 'foo-address-scope'
|
|
myid = 'myid'
|
|
args = [name, '5']
|
|
position_names = ['name', 'ip_version']
|
|
position_values = [name, 5]
|
|
self.assertRaises(SystemExit, self._test_create_resource,
|
|
resource, cmd, name, myid, args, position_names,
|
|
position_values)
|
|
|
|
def test_create_address_scope_with_all_option(self):
|
|
# Create address_scope: foo-address-scope with all options.
|
|
resource = 'address_scope'
|
|
cmd = address_scope.CreateAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
name = 'foo-address-scope'
|
|
myid = 'myid'
|
|
args = [name, '4', '--shared']
|
|
position_names = ['name', 'ip_version', 'shared']
|
|
position_values = [name, 4, True]
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
position_names, position_values)
|
|
|
|
def test_create_address_scope_with_unicode(self):
|
|
# Create address_scope: u'\u7f51\u7edc'.
|
|
resource = 'address_scope'
|
|
cmd = address_scope.CreateAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
name = u'\u7f51\u7edc'
|
|
ip_version = u'4'
|
|
myid = 'myid'
|
|
args = [name, ip_version]
|
|
position_names = ['name', 'ip_version']
|
|
position_values = [name, 4]
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
position_names, position_values)
|
|
|
|
def test_update_address_scope_exception(self):
|
|
# Update address_scope (Negative) : myid.
|
|
resource = 'address_scope'
|
|
cmd = address_scope.UpdateAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
self.assertRaises(exceptions.CommandError, self._test_update_resource,
|
|
resource, cmd, 'myid', ['myid'], {})
|
|
|
|
def test_update_address_scope(self):
|
|
# Update address_scope: myid --name newname-address-scope.
|
|
resource = 'address_scope'
|
|
cmd = address_scope.UpdateAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
self._test_update_resource(resource, cmd, 'myid',
|
|
['myid', '--name', 'newname-address-scope'],
|
|
{'name': 'newname-address-scope'}
|
|
)
|
|
# Update address_scope: myid --shared
|
|
self._test_update_resource(resource, cmd, 'myid',
|
|
['myid', '--shared', 'True'],
|
|
{'shared': "True"}
|
|
)
|
|
|
|
def test_list_address_scope(self):
|
|
# address_scope-list.
|
|
resources = "address_scopes"
|
|
cmd = address_scope.ListAddressScope(test_cli20.MyApp(sys.stdout),
|
|
None)
|
|
self._test_list_resources(resources, cmd, True)
|
|
|
|
def test_list_address_scope_pagination(self):
|
|
# address_scope-list.
|
|
cmd = address_scope.ListAddressScope(test_cli20.MyApp(sys.stdout),
|
|
None)
|
|
self.mox.StubOutWithMock(address_scope.ListAddressScope,
|
|
"extend_list")
|
|
address_scope.ListAddressScope.extend_list(mox.IsA(list),
|
|
mox.IgnoreArg())
|
|
self._test_list_resources_with_pagination("address_scopes",
|
|
cmd)
|
|
self.mox.VerifyAll()
|
|
self.mox.UnsetStubs()
|
|
|
|
def test_list_address_scope_sort(self):
|
|
# sorted list:
|
|
# address_scope-list --sort-key name --sort-key id --sort-key asc
|
|
# --sort-key desc
|
|
resources = "address_scopes"
|
|
cmd = address_scope.ListAddressScope(test_cli20.MyApp(sys.stdout),
|
|
None)
|
|
self._test_list_resources(resources, cmd,
|
|
sort_key=["name", "id", "ip_version"],
|
|
sort_dir=["asc", "desc"])
|
|
|
|
def test_list_address_scope_limit(self):
|
|
# size (1000) limited list: address_scope-list -P.
|
|
resources = "address_scopes"
|
|
cmd = address_scope.ListAddressScope(test_cli20.MyApp(sys.stdout),
|
|
None)
|
|
self._test_list_resources(resources, cmd, page_size=1000)
|
|
|
|
def test_show_address_scope(self):
|
|
# Show address_scope: --fields id --fields name myid.
|
|
resource = 'address_scope'
|
|
cmd = address_scope.ShowAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
args = ['--fields', 'id', '--fields', 'name', self.test_id,
|
|
'--fields', 'ip_version', '6']
|
|
self._test_show_resource(resource, cmd, self.test_id, args,
|
|
['id', 'name', 'ip_version'])
|
|
|
|
def test_delete_address_scope(self):
|
|
# Delete address_scope: address_scope_id.
|
|
resource = 'address_scope'
|
|
cmd = address_scope.DeleteAddressScope(
|
|
test_cli20.MyApp(sys.stdout), None)
|
|
myid = 'myid'
|
|
args = [myid]
|
|
self._test_delete_resource(resource, cmd, myid, args)
|