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
|
|
|
|
|
|
|
|
from quantumclient.tests.unit.test_cli20 import CLITestV20Base
|
|
|
|
from quantumclient.tests.unit.test_cli20 import MyApp
|
|
|
|
from quantumclient.quantum.v2_0.port import CreatePort
|
|
|
|
from quantumclient.quantum.v2_0.port import ListPort
|
|
|
|
from quantumclient.quantum.v2_0.port import UpdatePort
|
|
|
|
from quantumclient.quantum.v2_0.port import ShowPort
|
|
|
|
from quantumclient.quantum.v2_0.port import DeletePort
|
|
|
|
|
|
|
|
|
|
|
|
class CLITestV20Port(CLITestV20Base):
|
|
|
|
|
|
|
|
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])
|
|
|
|
_str = self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values)
|
|
|
|
|
|
|
|
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']
|
|
|
|
_str = self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values)
|
|
|
|
|
|
|
|
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])
|
|
|
|
_str = self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values,
|
|
|
|
tenant_id='tenantid')
|
|
|
|
|
|
|
|
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])
|
|
|
|
_str = self._test_create_resource(resource, cmd, name, myid, args,
|
|
|
|
position_names, position_values,
|
|
|
|
tags=['a', 'b'])
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
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'])
|
|
|
|
|
|
|
|
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'], }
|
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
myid = 'myid'
|
|
|
|
args = ['--fields', 'id', '--fields', 'name', myid]
|
|
|
|
self._test_show_resource(resource, cmd, myid, args, ['id', 'name'])
|
|
|
|
|
|
|
|
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)
|