Expand CLI test
Start nova-manage simple read only test
Change-Id: I4f52e804220b0b9d1357ee6b8b034e48d82f0aee
diff --git a/cli/simple_read_only/test_compute_manage.py b/cli/simple_read_only/test_compute_manage.py
new file mode 100644
index 0000000..17b3bf6
--- /dev/null
+++ b/cli/simple_read_only/test_compute_manage.py
@@ -0,0 +1,61 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2013 OpenStack Foundation
+# 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 logging
+import subprocess
+
+import testtools
+
+import cli
+
+
+LOG = logging.getLogger(__name__)
+
+
+class SimpleReadOnlyNovaManageTest(cli.ClientTestBase):
+
+ """
+ This is a first pass at a simple read only nova-manage test. This
+ only exercises client commands that are read only.
+
+ This should test commands:
+ * with and without optional parameters
+ * initially just check return codes, and later test command outputs
+
+ """
+
+ def test_admin_fake_action(self):
+ self.assertRaises(subprocess.CalledProcessError,
+ self.nova_manage,
+ 'this-does-nova-exist')
+
+ #NOTE(jogo): Commands in order listed in 'nova-manage -h'
+
+ # test flags
+ def test_help_flag(self):
+ self.nova_manage('', '-h')
+
+ @testtools.skip("version is empty, bug 1138844")
+ def test_version_flag(self):
+ self.assertNotEqual("", self.nova_manage('', '--version'))
+
+ # test actions
+ def test_version(self):
+ self.assertNotEqual("", self.nova_manage('version'))
+
+ def test_flavor_list(self):
+ self.assertNotEqual("", self.nova_manage('flavor list'))