summaryrefslogtreecommitdiff
path: root/openstackclient/tests/unit/integ/cli/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/tests/unit/integ/cli/test_shell.py')
-rw-r--r--openstackclient/tests/unit/integ/cli/test_shell.py506
1 files changed, 506 insertions, 0 deletions
diff --git a/openstackclient/tests/unit/integ/cli/test_shell.py b/openstackclient/tests/unit/integ/cli/test_shell.py
new file mode 100644
index 00000000..9d819ed2
--- /dev/null
+++ b/openstackclient/tests/unit/integ/cli/test_shell.py
@@ -0,0 +1,506 @@
+# 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 copy
+import mock
+
+from osc_lib.tests import utils as osc_lib_utils
+
+from openstackclient import shell
+from openstackclient.tests.unit.integ import base as test_base
+from openstackclient.tests.unit import test_shell
+
+
+class TestIntegShellCliV2(test_base.TestInteg):
+
+ def setUp(self):
+ super(TestIntegShellCliV2, self).setUp()
+ env = {
+ "OS_AUTH_URL": test_base.V2_AUTH_URL,
+ "OS_PROJECT_NAME": test_shell.DEFAULT_PROJECT_NAME,
+ "OS_USERNAME": test_shell.DEFAULT_USERNAME,
+ "OS_PASSWORD": test_shell.DEFAULT_PASSWORD,
+ "OS_IDENTITY_API_VERSION": "2",
+ }
+ self.useFixture(osc_lib_utils.EnvFixture(copy.deepcopy(env)))
+
+ self.token = test_base.make_v2_token(self.requests_mock)
+
+ def test_shell_args_no_options(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check discovery request
+ self.assertEqual(
+ test_base.V2_AUTH_URL,
+ self.requests_mock.request_history[0].url,
+ )
+
+ # Check auth request
+ auth_req = self.requests_mock.request_history[1].json()
+
+ self.assertEqual(
+ test_shell.DEFAULT_PROJECT_NAME,
+ auth_req['auth']['tenantName'],
+ )
+ self.assertEqual(
+ test_shell.DEFAULT_USERNAME,
+ auth_req['auth']['passwordCredentials']['username'],
+ )
+ self.assertEqual(
+ test_shell.DEFAULT_PASSWORD,
+ auth_req['auth']['passwordCredentials']['password'],
+ )
+
+ def test_shell_args_verify(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("--verify configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check verify
+ self.assertTrue(self.requests_mock.request_history[0].verify)
+
+ def test_shell_args_insecure(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("--insecure configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check verify
+ self.assertFalse(self.requests_mock.request_history[0].verify)
+
+ def test_shell_args_cacert(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("--os-cacert xyzpdq configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check verify
+ self.assertEqual(
+ 'xyzpdq',
+ self.requests_mock.request_history[0].verify,
+ )
+
+ def test_shell_args_cacert_insecure(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("--os-cacert xyzpdq --insecure configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check verify
+ self.assertFalse(self.requests_mock.request_history[0].verify)
+
+
+class TestIntegShellCliV2Ignore(test_base.TestInteg):
+
+ def setUp(self):
+ super(TestIntegShellCliV2Ignore, self).setUp()
+ env = {
+ "OS_AUTH_URL": test_base.V2_AUTH_URL,
+ "OS_PROJECT_NAME": test_shell.DEFAULT_PROJECT_NAME,
+ "OS_USERNAME": test_shell.DEFAULT_USERNAME,
+ "OS_PASSWORD": test_shell.DEFAULT_PASSWORD,
+ "OS_PROJECT_DOMAIN_ID": test_shell.DEFAULT_PROJECT_DOMAIN_ID,
+ "OS_USER_DOMAIN_ID": test_shell.DEFAULT_USER_DOMAIN_ID,
+ "OS_IDENTITY_API_VERSION": "2",
+ }
+ self.useFixture(osc_lib_utils.EnvFixture(copy.deepcopy(env)))
+
+ self.token = test_base.make_v2_token(self.requests_mock)
+
+ def test_shell_args_ignore_v3(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check discovery request
+ self.assertEqual(
+ test_base.V2_AUTH_URL,
+ self.requests_mock.request_history[0].url,
+ )
+
+ # Check auth request
+ auth_req = self.requests_mock.request_history[1].json()
+
+ self.assertEqual(
+ test_shell.DEFAULT_PROJECT_NAME,
+ auth_req['auth']['tenantName'],
+ )
+ self.assertEqual(
+ test_shell.DEFAULT_USERNAME,
+ auth_req['auth']['passwordCredentials']['username'],
+ )
+ self.assertEqual(
+ test_shell.DEFAULT_PASSWORD,
+ auth_req['auth']['passwordCredentials']['password'],
+ )
+
+
+class TestIntegShellCliV3(test_base.TestInteg):
+
+ def setUp(self):
+ super(TestIntegShellCliV3, self).setUp()
+ env = {
+ "OS_AUTH_URL": test_base.V3_AUTH_URL,
+ "OS_PROJECT_DOMAIN_ID": test_shell.DEFAULT_PROJECT_DOMAIN_ID,
+ "OS_USER_DOMAIN_ID": test_shell.DEFAULT_USER_DOMAIN_ID,
+ "OS_USERNAME": test_shell.DEFAULT_USERNAME,
+ "OS_PASSWORD": test_shell.DEFAULT_PASSWORD,
+ "OS_IDENTITY_API_VERSION": "3",
+ }
+ self.useFixture(osc_lib_utils.EnvFixture(copy.deepcopy(env)))
+
+ self.token = test_base.make_v3_token(self.requests_mock)
+
+ def test_shell_args_no_options(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check discovery request
+ self.assertEqual(
+ test_base.V3_AUTH_URL,
+ self.requests_mock.request_history[0].url,
+ )
+
+ # Check auth request
+ auth_req = self.requests_mock.request_history[1].json()
+
+ self.assertEqual(
+ test_shell.DEFAULT_PROJECT_DOMAIN_ID,
+ auth_req['auth']['identity']['password']['user']['domain']['id'],
+ )
+ self.assertEqual(
+ test_shell.DEFAULT_USERNAME,
+ auth_req['auth']['identity']['password']['user']['name'],
+ )
+ self.assertEqual(
+ test_shell.DEFAULT_PASSWORD,
+ auth_req['auth']['identity']['password']['user']['password'],
+ )
+
+ def test_shell_args_verify(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("--verify configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check verify
+ self.assertTrue(self.requests_mock.request_history[0].verify)
+
+ def test_shell_args_insecure(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("--insecure configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check verify
+ self.assertFalse(self.requests_mock.request_history[0].verify)
+
+ def test_shell_args_cacert(self):
+ _shell = shell.OpenStackShell()
+ _shell.run("--os-cacert xyzpdq configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check verify
+ self.assertEqual(
+ 'xyzpdq',
+ self.requests_mock.request_history[0].verify,
+ )
+
+ def test_shell_args_cacert_insecure(self):
+ # This test verifies the outcome of bug 1447784
+ # https://bugs.launchpad.net/python-openstackclient/+bug/1447784
+ _shell = shell.OpenStackShell()
+ _shell.run("--os-cacert xyzpdq --insecure configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check verify
+ self.assertFalse(self.requests_mock.request_history[0].verify)
+
+
+class TestIntegShellCliV3Prompt(test_base.TestInteg):
+
+ def setUp(self):
+ super(TestIntegShellCliV3Prompt, self).setUp()
+ env = {
+ "OS_AUTH_URL": test_base.V3_AUTH_URL,
+ "OS_PROJECT_DOMAIN_ID": test_shell.DEFAULT_PROJECT_DOMAIN_ID,
+ "OS_USER_DOMAIN_ID": test_shell.DEFAULT_USER_DOMAIN_ID,
+ "OS_USERNAME": test_shell.DEFAULT_USERNAME,
+ "OS_IDENTITY_API_VERSION": "3",
+ }
+ self.useFixture(osc_lib_utils.EnvFixture(copy.deepcopy(env)))
+
+ self.token = test_base.make_v3_token(self.requests_mock)
+
+ @mock.patch("osc_lib.shell.prompt_for_password")
+ def test_shell_callback(self, mock_prompt):
+ mock_prompt.return_value = "qaz"
+ _shell = shell.OpenStackShell()
+ _shell.run("configuration show".split())
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check password callback set correctly
+ self.assertEqual(
+ mock_prompt,
+ _shell.cloud._openstack_config._pw_callback
+ )
+
+ # Check auth request
+ auth_req = self.requests_mock.request_history[1].json()
+
+ # Check returned password from prompt function
+ self.assertEqual(
+ "qaz",
+ auth_req['auth']['identity']['password']['user']['password'],
+ )
+
+
+class TestIntegShellCliPrecedence(test_base.TestInteg):
+ """Validate option precedence rules without clouds.yaml
+
+ Global option values may be set in three places:
+ * command line options
+ * environment variables
+ * clouds.yaml
+
+ Verify that the above order is the precedence used,
+ i.e. a command line option overrides all others, etc
+ """
+
+ def setUp(self):
+ super(TestIntegShellCliPrecedence, self).setUp()
+ env = {
+ "OS_AUTH_URL": test_base.V3_AUTH_URL,
+ "OS_PROJECT_DOMAIN_ID": test_shell.DEFAULT_PROJECT_DOMAIN_ID,
+ "OS_USER_DOMAIN_ID": test_shell.DEFAULT_USER_DOMAIN_ID,
+ "OS_USERNAME": test_shell.DEFAULT_USERNAME,
+ "OS_IDENTITY_API_VERSION": "3",
+ }
+ self.useFixture(osc_lib_utils.EnvFixture(copy.deepcopy(env)))
+
+ self.token = test_base.make_v3_token(self.requests_mock)
+
+ # Patch a v3 auth URL into the o-c-c data
+ test_shell.PUBLIC_1['public-clouds']['megadodo']['auth']['auth_url'] \
+ = test_base.V3_AUTH_URL
+
+ def test_shell_args_options(self):
+ """Verify command line options override environment variables"""
+
+ _shell = shell.OpenStackShell()
+ _shell.run(
+ "--os-username zarquon --os-password qaz "
+ "configuration show".split(),
+ )
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check discovery request
+ self.assertEqual(
+ test_base.V3_AUTH_URL,
+ self.requests_mock.request_history[0].url,
+ )
+
+ # Check auth request
+ auth_req = self.requests_mock.request_history[1].json()
+
+ # -env, -cli
+ # No test, everything not specified tests this
+
+ # -env, +cli
+ self.assertEqual(
+ 'qaz',
+ auth_req['auth']['identity']['password']['user']['password'],
+ )
+
+ # +env, -cli
+ self.assertEqual(
+ test_shell.DEFAULT_PROJECT_DOMAIN_ID,
+ auth_req['auth']['identity']['password']['user']['domain']['id'],
+ )
+
+ # +env, +cli
+ self.assertEqual(
+ 'zarquon',
+ auth_req['auth']['identity']['password']['user']['name'],
+ )
+
+
+class TestIntegShellCliPrecedenceOCC(test_base.TestInteg):
+ """Validate option precedence rules with clouds.yaml
+
+ Global option values may be set in three places:
+ * command line options
+ * environment variables
+ * clouds.yaml
+
+ Verify that the above order is the precedence used,
+ i.e. a command line option overrides all others, etc
+ """
+
+ def setUp(self):
+ super(TestIntegShellCliPrecedenceOCC, self).setUp()
+ env = {
+ "OS_CLOUD": "megacloud",
+ "OS_AUTH_URL": test_base.V3_AUTH_URL,
+ "OS_PROJECT_DOMAIN_ID": test_shell.DEFAULT_PROJECT_DOMAIN_ID,
+ "OS_USER_DOMAIN_ID": test_shell.DEFAULT_USER_DOMAIN_ID,
+ "OS_USERNAME": test_shell.DEFAULT_USERNAME,
+ "OS_IDENTITY_API_VERSION": "3",
+ "OS_CLOUD_NAME": "qaz",
+ }
+ self.useFixture(osc_lib_utils.EnvFixture(copy.deepcopy(env)))
+
+ self.token = test_base.make_v3_token(self.requests_mock)
+
+ # Patch a v3 auth URL into the o-c-c data
+ test_shell.PUBLIC_1['public-clouds']['megadodo']['auth']['auth_url'] \
+ = test_base.V3_AUTH_URL
+
+ @mock.patch("os_client_config.config.OpenStackConfig._load_vendor_file")
+ @mock.patch("os_client_config.config.OpenStackConfig._load_config_file")
+ def test_shell_args_precedence_1(self, config_mock, vendor_mock):
+ """Precedence run 1
+
+ Run 1 has --os-password on CLI
+ """
+
+ config_mock.return_value = (
+ 'file.yaml',
+ copy.deepcopy(test_shell.CLOUD_2),
+ )
+ vendor_mock.return_value = (
+ 'file.yaml',
+ copy.deepcopy(test_shell.PUBLIC_1),
+ )
+ _shell = shell.OpenStackShell()
+ _shell.run(
+ "--os-password qaz configuration show".split(),
+ )
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check discovery request
+ self.assertEqual(
+ test_base.V3_AUTH_URL,
+ self.requests_mock.request_history[0].url,
+ )
+
+ # Check auth request
+ auth_req = self.requests_mock.request_history[1].json()
+
+ # -env, -cli, -occ
+ # No test, everything not specified tests this
+
+ # -env, -cli, +occ
+ self.assertEqual(
+ "heart-o-gold",
+ auth_req['auth']['scope']['project']['name'],
+ )
+
+ # -env, +cli, -occ
+ self.assertEqual(
+ 'qaz',
+ auth_req['auth']['identity']['password']['user']['password'],
+ )
+
+ # -env, +cli, +occ
+
+ # +env, -cli, -occ
+ self.assertEqual(
+ test_shell.DEFAULT_USER_DOMAIN_ID,
+ auth_req['auth']['identity']['password']['user']['domain']['id'],
+ )
+
+ # +env, -cli, +occ
+ print("auth_req: %s" % auth_req['auth'])
+ self.assertEqual(
+ test_shell.DEFAULT_USERNAME,
+ auth_req['auth']['identity']['password']['user']['name'],
+ )
+
+ # +env, +cli, -occ
+ # see test_shell_args_precedence_2()
+
+ # +env, +cli, +occ
+ # see test_shell_args_precedence_2()
+
+ @mock.patch("os_client_config.config.OpenStackConfig._load_vendor_file")
+ @mock.patch("os_client_config.config.OpenStackConfig._load_config_file")
+ def test_shell_args_precedence_2(self, config_mock, vendor_mock):
+ """Precedence run 2
+
+ Run 2 has --os-username, --os-password, --os-project-domain-id on CLI
+ """
+
+ config_mock.return_value = (
+ 'file.yaml',
+ copy.deepcopy(test_shell.CLOUD_2),
+ )
+ vendor_mock.return_value = (
+ 'file.yaml',
+ copy.deepcopy(test_shell.PUBLIC_1),
+ )
+ _shell = shell.OpenStackShell()
+ _shell.run(
+ "--os-username zarquon --os-password qaz "
+ "--os-project-domain-id 5678 configuration show".split(),
+ )
+
+ # Check general calls
+ self.assertEqual(len(self.requests_mock.request_history), 2)
+
+ # Check discovery request
+ self.assertEqual(
+ test_base.V3_AUTH_URL,
+ self.requests_mock.request_history[0].url,
+ )
+
+ # Check auth request
+ auth_req = self.requests_mock.request_history[1].json()
+
+ # +env, +cli, -occ
+ self.assertEqual(
+ '5678',
+ auth_req['auth']['scope']['project']['domain']['id'],
+ )
+
+ # +env, +cli, +occ
+ print("auth_req: %s" % auth_req['auth'])
+ self.assertEqual(
+ 'zarquon',
+ auth_req['auth']['identity']['password']['user']['name'],
+ )