summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-08-02 04:29:21 +0000
committerGerrit Code Review <review@openstack.org>2013-08-02 04:29:21 +0000
commitfad71220eaf3c3c9b30ce4f16207967eab5ec2a9 (patch)
tree5f3273ec2f66178890c816f1df54cde17b8280f2 /tests
parent6322f175ecc99ff207dfbcc510c1df0b370b1182 (diff)
parent93f0630e3dd4a5ca12184066acc9a872c08f5ebc (diff)
downloadpython-neutronclient-fad71220eaf3c3c9b30ce4f16207967eab5ec2a9.tar.gz
Merge "Add command for listing available service providers"
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_cli20_servicetype.py62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/unit/test_cli20_servicetype.py b/tests/unit/test_cli20_servicetype.py
new file mode 100644
index 0000000..863af78
--- /dev/null
+++ b/tests/unit/test_cli20_servicetype.py
@@ -0,0 +1,62 @@
+# Copyright 2013 Mirantis Inc.
+# 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.
+#
+# @author: Eugene Nikanorov, Mirantis Inc.
+#
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+import sys
+
+from neutronclient.neutron.v2_0 import servicetype
+from tests.unit import test_cli20
+
+
+class CLITestV20ServiceProvidersJSON(test_cli20.CLITestV20Base):
+ id_field = "name"
+
+ def setUp(self):
+ super(CLITestV20ServiceProvidersJSON, self).setUp(
+ plurals={'tags': 'tag'}
+ )
+
+ def test_list_service_providers(self):
+ resources = "service_providers"
+ cmd = servicetype.ListServiceProvider(test_cli20.MyApp(sys.stdout),
+ None)
+ self._test_list_resources(resources, cmd, True)
+
+ def test_list_service_providers_pagination(self):
+ resources = "service_providers"
+ cmd = servicetype.ListServiceProvider(test_cli20.MyApp(sys.stdout),
+ None)
+ self._test_list_resources_with_pagination(resources, cmd)
+
+ def test_list_service_providers_sort(self):
+ resources = "service_providers"
+ cmd = servicetype.ListServiceProvider(test_cli20.MyApp(sys.stdout),
+ None)
+ self._test_list_resources(resources, cmd,
+ sort_key=["name"],
+ sort_dir=["asc", "desc"])
+
+ def test_list_service_providers_limit(self):
+ resources = "service_providers"
+ cmd = servicetype.ListServiceProvider(test_cli20.MyApp(sys.stdout),
+ None)
+ self._test_list_resources(resources, cmd, page_size=1000)
+
+
+class CLITestV20ServiceProvidersXML(CLITestV20ServiceProvidersJSON):
+ format = 'xml'