2012-05-18 09:02:29 +08:00
|
|
|
# Copyright 2012 OpenStack LLC.
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
|
|
|
|
import sys
|
2012-12-31 22:25:00 +08:00
|
|
|
|
2012-10-10 17:24:35 +08:00
|
|
|
from mox import ContainsKeyValue
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
from quantumclient.quantum.v2_0.port import CreatePort
|
|
|
|
from quantumclient.quantum.v2_0.port import DeletePort
|
2012-12-31 22:25:00 +08:00
|
|
|
from quantumclient.quantum.v2_0.port import ListPort
|
2012-10-10 17:24:35 +08:00
|
|
|
from quantumclient.quantum.v2_0.port import ListRouterPort
|
2012-12-31 22:25:00 +08:00
|
|
|
from quantumclient.quantum.v2_0.port import ShowPort
|
|
|
|
from quantumclient.quantum.v2_0.port import UpdatePort
|
2013-04-05 23:20:45 +00:00
|
|
|
from quantumclient import shell
|
2013-02-18 15:06:41 +02:00
|
|
|
from tests.unit import test_cli20
|
|
|
|
from tests.unit.test_cli20 import CLITestV20Base
|
|
|
|
from tests.unit.test_cli20 import MyApp
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
|
2013-04-01 13:27:28 +08:00
|
|
|
class CLITestV20PortJSON(CLITestV20Base):
|
|
|
|
def setUp(self):
|
|
|
|
super(CLITestV20PortJSON, self).setUp(plurals={'tags': 'tag'})
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
def test_create_port(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""Create port: netid."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resource = 'port'
|
|
|
|
cmd = CreatePort(MyApp(sys.stdout), None)
|
|
|
|
name = 'myname'
|
|
|
|
myid = 'myid'
|
|
|
|
netid = 'netid'
|
|
|
|
args = [netid]
|
|
|
|
position_names = ['network_id']
|
|
|
|
position_values = []
|
|
|
|
position_values.extend([netid])
|
2012-10-10 17:24:35 +08:00
|
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
def test_create_port_full(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""Create port: --mac_address mac --device_id deviceid netid."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resource = 'port'
|
|
|
|
cmd = CreatePort(MyApp(sys.stdout), None)
|
|
|
|
name = 'myname'
|
|
|
|
myid = 'myid'
|
|
|
|
netid = 'netid'
|
2012-07-05 15:01:39 +08:00
|
|
|
args = ['--mac_address', 'mac', '--device_id', 'deviceid', netid]
|
2012-05-18 09:02:29 +08:00
|
|
|
position_names = ['network_id', 'mac_address', 'device_id']
|
|
|
|
position_values = [netid, 'mac', 'deviceid']
|
2012-10-10 17:24:35 +08:00
|
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
2012-08-23 13:09:54 -05:00
|
|
|
# Test dashed options
|
|
|
|
args = ['--mac-address', 'mac', '--device-id', 'deviceid', netid]
|
|
|
|
position_names = ['network_id', 'mac_address', 'device_id']
|
2012-10-10 17:24:35 +08:00
|
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values)
|
2012-08-23 13:09:54 -05:00
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
def test_create_port_tenant(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""Create port: --tenant_id tenantid netid."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resource = 'port'
|
|
|
|
cmd = CreatePort(MyApp(sys.stdout), None)
|
|
|
|
name = 'myname'
|
|
|
|
myid = 'myid'
|
|
|
|
netid = 'netid'
|
2012-07-05 15:01:39 +08:00
|
|
|
args = ['--tenant_id', 'tenantid', netid, ]
|
2012-05-18 09:02:29 +08:00
|
|
|
position_names = ['network_id']
|
|
|
|
position_values = []
|
|
|
|
position_values.extend([netid])
|
2012-10-10 17:24:35 +08:00
|
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values,
|
|
|
|
tenant_id='tenantid')
|
2012-05-18 09:02:29 +08:00
|
|
|
|
2012-08-23 13:09:54 -05:00
|
|
|
# Test dashed options
|
|
|
|
args = ['--tenant-id', 'tenantid', netid, ]
|
2012-10-10 17:24:35 +08:00
|
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values,
|
|
|
|
tenant_id='tenantid')
|
2012-08-23 13:09:54 -05:00
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
def test_create_port_tags(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""Create port: netid mac_address device_id --tags a b."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resource = 'port'
|
|
|
|
cmd = CreatePort(MyApp(sys.stdout), None)
|
|
|
|
name = 'myname'
|
|
|
|
myid = 'myid'
|
|
|
|
netid = 'netid'
|
|
|
|
args = [netid, '--tags', 'a', 'b']
|
|
|
|
position_names = ['network_id']
|
|
|
|
position_values = []
|
|
|
|
position_values.extend([netid])
|
2012-10-10 17:24:35 +08:00
|
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values,
|
|
|
|
tags=['a', 'b'])
|
2012-05-18 09:02:29 +08:00
|
|
|
|
2012-12-14 15:00:21 +09:00
|
|
|
def test_create_port_secgroup(self):
|
2013-04-05 23:20:45 +00:00
|
|
|
"""Create port: --security-group sg1_id netid."""
|
2012-12-14 15:00:21 +09:00
|
|
|
resource = 'port'
|
|
|
|
cmd = CreatePort(MyApp(sys.stdout), None)
|
|
|
|
name = 'myname'
|
|
|
|
myid = 'myid'
|
|
|
|
netid = 'netid'
|
|
|
|
args = ['--security-group', 'sg1_id', netid]
|
|
|
|
position_names = ['network_id', 'security_groups']
|
|
|
|
position_values = [netid, ['sg1_id']]
|
|
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values)
|
|
|
|
|
|
|
|
def test_create_port_secgroups(self):
|
|
|
|
"""Create port: <security_groups> netid
|
|
|
|
|
|
|
|
The <security_groups> are
|
|
|
|
--security-group sg1_id --security-group sg2_id
|
|
|
|
"""
|
|
|
|
resource = 'port'
|
|
|
|
cmd = CreatePort(MyApp(sys.stdout), None)
|
|
|
|
name = 'myname'
|
|
|
|
myid = 'myid'
|
|
|
|
netid = 'netid'
|
|
|
|
args = ['--security-group', 'sg1_id',
|
|
|
|
'--security-group', 'sg2_id',
|
|
|
|
netid]
|
|
|
|
position_names = ['network_id', 'security_groups']
|
|
|
|
position_values = [netid, ['sg1_id', 'sg2_id']]
|
|
|
|
self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values)
|
|
|
|
|
2012-07-05 15:01:39 +08:00
|
|
|
def test_list_ports(self):
|
|
|
|
"""List ports: -D."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resources = "ports"
|
|
|
|
cmd = ListPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_resources(resources, cmd, True)
|
|
|
|
|
2013-01-17 19:38:36 +08:00
|
|
|
def test_list_ports_pagination(self):
|
|
|
|
resources = "ports"
|
|
|
|
cmd = ListPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_resources_with_pagination(resources, cmd)
|
|
|
|
|
|
|
|
def test_list_ports_sort(self):
|
|
|
|
"""list ports: --sort-key name --sort-key id --sort-key asc
|
|
|
|
--sort-key desc
|
|
|
|
"""
|
|
|
|
resources = "ports"
|
|
|
|
cmd = ListPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_resources(resources, cmd,
|
|
|
|
sort_key=["name", "id"],
|
|
|
|
sort_dir=["asc", "desc"])
|
|
|
|
|
|
|
|
def test_list_ports_limit(self):
|
2013-04-05 23:20:45 +00:00
|
|
|
"""list ports: -P."""
|
2013-01-17 19:38:36 +08:00
|
|
|
resources = "ports"
|
|
|
|
cmd = ListPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_resources(resources, cmd, page_size=1000)
|
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
def test_list_ports_tags(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""List ports: -- --tags a b."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resources = "ports"
|
|
|
|
cmd = ListPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_resources(resources, cmd, tags=['a', 'b'])
|
|
|
|
|
|
|
|
def test_list_ports_detail_tags(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""List ports: -D -- --tags a b."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resources = "ports"
|
|
|
|
cmd = ListPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_resources(resources, cmd, detail=True, tags=['a', 'b'])
|
|
|
|
|
|
|
|
def test_list_ports_fields(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""List ports: --fields a --fields b -- --fields c d."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resources = "ports"
|
|
|
|
cmd = ListPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_resources(resources, cmd,
|
|
|
|
fields_1=['a', 'b'], fields_2=['c', 'd'])
|
|
|
|
|
2012-10-10 17:24:35 +08:00
|
|
|
def _test_list_router_port(self, resources, cmd,
|
|
|
|
myid, detail=False, tags=[],
|
|
|
|
fields_1=[], fields_2=[]):
|
|
|
|
self.mox.StubOutWithMock(cmd, "get_client")
|
|
|
|
self.mox.StubOutWithMock(self.client.httpclient, "request")
|
|
|
|
cmd.get_client().MultipleTimes().AndReturn(self.client)
|
|
|
|
reses = {resources: [{'id': 'myid1', },
|
|
|
|
{'id': 'myid2', }, ], }
|
|
|
|
|
|
|
|
resstr = self.client.serialize(reses)
|
|
|
|
|
|
|
|
# url method body
|
|
|
|
query = ""
|
|
|
|
args = detail and ['-D', ] or []
|
|
|
|
|
|
|
|
if fields_1:
|
|
|
|
for field in fields_1:
|
|
|
|
args.append('--fields')
|
|
|
|
args.append(field)
|
|
|
|
args.append(myid)
|
|
|
|
if tags:
|
|
|
|
args.append('--')
|
|
|
|
args.append("--tag")
|
|
|
|
for tag in tags:
|
|
|
|
args.append(tag)
|
|
|
|
if (not tags) and fields_2:
|
|
|
|
args.append('--')
|
|
|
|
if fields_2:
|
|
|
|
args.append("--fields")
|
|
|
|
for field in fields_2:
|
|
|
|
args.append(field)
|
|
|
|
fields_1.extend(fields_2)
|
|
|
|
for field in fields_1:
|
|
|
|
if query:
|
|
|
|
query += "&fields=" + field
|
|
|
|
else:
|
|
|
|
query = "fields=" + field
|
|
|
|
|
|
|
|
for tag in tags:
|
|
|
|
if query:
|
|
|
|
query += "&tag=" + tag
|
|
|
|
else:
|
|
|
|
query = "tag=" + tag
|
|
|
|
if detail:
|
|
|
|
query = query and query + '&verbose=True' or 'verbose=True'
|
|
|
|
query = query and query + '&device_id=%s' or 'device_id=%s'
|
|
|
|
path = getattr(self.client, resources + "_path")
|
|
|
|
self.client.httpclient.request(
|
|
|
|
test_cli20.end_url(path, query % myid), 'GET',
|
|
|
|
body=None,
|
|
|
|
headers=ContainsKeyValue('X-Auth-Token',
|
|
|
|
test_cli20.TOKEN)).AndReturn(
|
|
|
|
(test_cli20.MyResp(200), resstr))
|
|
|
|
self.mox.ReplayAll()
|
|
|
|
cmd_parser = cmd.get_parser("list_" + resources)
|
2013-01-28 12:19:22 +08:00
|
|
|
shell.run_command(cmd, cmd_parser, args)
|
2012-10-10 17:24:35 +08:00
|
|
|
self.mox.VerifyAll()
|
|
|
|
self.mox.UnsetStubs()
|
|
|
|
_str = self.fake_stdout.make_string()
|
|
|
|
|
|
|
|
self.assertTrue('myid1' in _str)
|
|
|
|
|
|
|
|
def test_list_router_ports(self):
|
|
|
|
"""List router ports: -D."""
|
|
|
|
resources = "ports"
|
|
|
|
cmd = ListRouterPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_router_port(resources, cmd,
|
|
|
|
self.test_id, True)
|
|
|
|
|
|
|
|
def test_list_router_ports_tags(self):
|
|
|
|
"""List router ports: -- --tags a b."""
|
|
|
|
resources = "ports"
|
|
|
|
cmd = ListRouterPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_router_port(resources, cmd,
|
|
|
|
self.test_id, tags=['a', 'b'])
|
|
|
|
|
|
|
|
def test_list_router_ports_detail_tags(self):
|
|
|
|
"""List router ports: -D -- --tags a b."""
|
|
|
|
resources = "ports"
|
|
|
|
cmd = ListRouterPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_router_port(resources, cmd, self.test_id,
|
|
|
|
detail=True, tags=['a', 'b'])
|
|
|
|
|
|
|
|
def test_list_router_ports_fields(self):
|
|
|
|
"""List ports: --fields a --fields b -- --fields c d."""
|
|
|
|
resources = "ports"
|
|
|
|
cmd = ListRouterPort(MyApp(sys.stdout), None)
|
|
|
|
self._test_list_router_port(resources, cmd, self.test_id,
|
|
|
|
fields_1=['a', 'b'],
|
|
|
|
fields_2=['c', 'd'])
|
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
def test_update_port(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""Update port: myid --name myname --tags a b."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resource = 'port'
|
|
|
|
cmd = UpdatePort(MyApp(sys.stdout), None)
|
|
|
|
self._test_update_resource(resource, cmd, 'myid',
|
|
|
|
['myid', '--name', 'myname',
|
|
|
|
'--tags', 'a', 'b'],
|
|
|
|
{'name': 'myname', 'tags': ['a', 'b'], }
|
|
|
|
)
|
|
|
|
|
2013-01-31 19:54:11 -08:00
|
|
|
def test_update_port_security_group_off(self):
|
|
|
|
"""Update port: --no-security-groups myid."""
|
|
|
|
resource = 'port'
|
|
|
|
cmd = UpdatePort(MyApp(sys.stdout), None)
|
|
|
|
self._test_update_resource(resource, cmd, 'myid',
|
|
|
|
['--no-security-groups', 'myid'],
|
|
|
|
{'security_groups': None})
|
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
def test_show_port(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""Show port: --fields id --fields name myid."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resource = 'port'
|
|
|
|
cmd = ShowPort(MyApp(sys.stdout), None)
|
2012-07-24 23:45:10 -07:00
|
|
|
args = ['--fields', 'id', '--fields', 'name', self.test_id]
|
|
|
|
self._test_show_resource(resource, cmd, self.test_id,
|
|
|
|
args, ['id', 'name'])
|
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
def test_delete_port(self):
|
2012-07-05 15:01:39 +08:00
|
|
|
"""Delete port: myid."""
|
2012-05-18 09:02:29 +08:00
|
|
|
resource = 'port'
|
|
|
|
cmd = DeletePort(MyApp(sys.stdout), None)
|
|
|
|
myid = 'myid'
|
|
|
|
args = [myid]
|
|
|
|
self._test_delete_resource(resource, cmd, myid, args)
|
2013-04-01 13:27:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
class CLITestV20PortXML(CLITestV20PortJSON):
|
|
|
|
format = 'xml'
|