summaryrefslogtreecommitdiff
path: root/quantumclient/tests/unit/test_cli20_subnet.py
diff options
context:
space:
mode:
authorYong Sheng Gong <gongysh@cn.ibm.com>2012-07-05 15:01:39 +0800
committerYong Sheng Gong <gongysh@cn.ibm.com>2012-07-05 15:06:08 +0800
commit1586c923d9dd0a717df07cc1d729fc45d55d3b06 (patch)
tree9353e7b788054c1db3539cc5c2ecc49094c917ba /quantumclient/tests/unit/test_cli20_subnet.py
parentd955740671000b2b915c8c6717d12a5e52f3b89e (diff)
downloadpython-neutronclient-1586c923d9dd0a717df07cc1d729fc45d55d3b06.tar.gz
Make quantum cli consistent with other cli's practice.
Bug 1011759 We use dash in command names, underscore in options or arguments, adopt noun-verb format command names. Change-Id: Ibeb2b4a31929dbb7008cec3b04bd77e75d9ace1a
Diffstat (limited to 'quantumclient/tests/unit/test_cli20_subnet.py')
-rw-r--r--quantumclient/tests/unit/test_cli20_subnet.py24
1 files changed, 11 insertions, 13 deletions
diff --git a/quantumclient/tests/unit/test_cli20_subnet.py b/quantumclient/tests/unit/test_cli20_subnet.py
index 08385ee..1c5d7ae 100644
--- a/quantumclient/tests/unit/test_cli20_subnet.py
+++ b/quantumclient/tests/unit/test_cli20_subnet.py
@@ -29,7 +29,7 @@ from quantumclient.quantum.v2_0.subnet import DeleteSubnet
class CLITestV20Subnet(CLITestV20Base):
def test_create_subnet(self):
- """ create_subnet --gateway gateway netid cidr"""
+ """Create sbunet: --gateway gateway netid cidr."""
resource = 'subnet'
cmd = CreateSubnet(MyApp(sys.stdout), None)
name = 'myname'
@@ -45,14 +45,14 @@ class CLITestV20Subnet(CLITestV20Base):
position_names, position_values)
def test_create_subnet_tenant(self):
- """create_subnet --tenant-id tenantid netid cidr"""
+ """Create subnet: --tenant_id tenantid netid cidr."""
resource = 'subnet'
cmd = CreateSubnet(MyApp(sys.stdout), None)
name = 'myname'
myid = 'myid'
netid = 'netid'
cidr = 'prefixvalue'
- args = ['--tenant-id', 'tenantid', netid, cidr]
+ args = ['--tenant_id', 'tenantid', netid, cidr]
position_names = ['ip_version', 'network_id', 'cidr']
position_values = [4, ]
position_values.extend([netid, cidr])
@@ -61,7 +61,7 @@ class CLITestV20Subnet(CLITestV20Base):
tenant_id='tenantid')
def test_create_subnet_tags(self):
- """ create_subnet netid cidr --tags a b"""
+ """Create subnet: netid cidr --tags a b."""
resource = 'subnet'
cmd = CreateSubnet(MyApp(sys.stdout), None)
name = 'myname'
@@ -77,32 +77,32 @@ class CLITestV20Subnet(CLITestV20Base):
tags=['a', 'b'])
def test_list_subnets_detail(self):
- """list_subnets -D"""
+ """List subnets: -D."""
resources = "subnets"
cmd = ListSubnet(MyApp(sys.stdout), None)
self._test_list_resources(resources, cmd, True)
def test_list_subnets_tags(self):
- """list_subnets -- --tags a b"""
+ """List subnets: -- --tags a b."""
resources = "subnets"
cmd = ListSubnet(MyApp(sys.stdout), None)
self._test_list_resources(resources, cmd, tags=['a', 'b'])
def test_list_subnets_detail_tags(self):
- """list_subnets -D -- --tags a b"""
+ """List subnets: -D -- --tags a b."""
resources = "subnets"
cmd = ListSubnet(MyApp(sys.stdout), None)
self._test_list_resources(resources, cmd, detail=True, tags=['a', 'b'])
def test_list_subnets_fields(self):
- """list_subnets --fields a --fields b -- --fields c d"""
+ """List subnets: --fields a --fields b -- --fields c d."""
resources = "subnets"
cmd = ListSubnet(MyApp(sys.stdout), None)
self._test_list_resources(resources, cmd,
fields_1=['a', 'b'], fields_2=['c', 'd'])
def test_update_subnet(self):
- """ update_subnet myid --name myname --tags a b"""
+ """Update subnet: myid --name myname --tags a b."""
resource = 'subnet'
cmd = UpdateSubnet(MyApp(sys.stdout), None)
self._test_update_resource(resource, cmd, 'myid',
@@ -112,7 +112,7 @@ class CLITestV20Subnet(CLITestV20Base):
)
def test_show_subnet(self):
- """ show_subnet --fields id --fields name myid """
+ """Show subnet: --fields id --fields name myid."""
resource = 'subnet'
cmd = ShowSubnet(MyApp(sys.stdout), None)
myid = 'myid'
@@ -120,9 +120,7 @@ class CLITestV20Subnet(CLITestV20Base):
self._test_show_resource(resource, cmd, myid, args, ['id', 'name'])
def test_delete_subnet(self):
- """
- delete_subnet myid
- """
+ """Delete subnet: subnetid."""
resource = 'subnet'
cmd = DeleteSubnet(MyApp(sys.stdout), None)
myid = 'myid'