summaryrefslogtreecommitdiff
path: root/openstackclient/tests/unit/test_shell.py
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2023-05-08 11:37:42 +0100
committerStephen Finucane <sfinucan@redhat.com>2023-05-10 10:51:30 +0100
commitd3f4a3d7f5a14c78b56bcc0609c32f74f0c0f845 (patch)
tree8759b78c1819a699609ec18fb1423a5d6bcca1af /openstackclient/tests/unit/test_shell.py
parenta6f81a736c503e45e1fca9fe49f9f46b9ced7cb8 (diff)
downloadpython-openstackclient-d3f4a3d7f5a14c78b56bcc0609c32f74f0c0f845.tar.gz
Blacken everything else
Black used with the '-l 79 -S' flags. A future change will ignore this commit in git-blame history by adding a 'git-blame-ignore-revs' file. Change-Id: I356643d06b2cd408ccaedfe02b858aea55388949 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'openstackclient/tests/unit/test_shell.py')
-rw-r--r--openstackclient/tests/unit/test_shell.py53
1 files changed, 28 insertions, 25 deletions
diff --git a/openstackclient/tests/unit/test_shell.py b/openstackclient/tests/unit/test_shell.py
index bee2b401..4081b670 100644
--- a/openstackclient/tests/unit/test_shell.py
+++ b/openstackclient/tests/unit/test_shell.py
@@ -96,7 +96,7 @@ global_options = {
'--os-cacert': ('/dev/null', True, True),
'--timing': (True, True, False),
'--os-profile': ('SECRET_KEY', True, False),
- '--os-interface': (DEFAULT_INTERFACE, True, True)
+ '--os-interface': (DEFAULT_INTERFACE, True, True),
}
@@ -138,7 +138,6 @@ wrapt.wrap_function_wrapper(
class TestShell(osc_lib_test_utils.TestShell):
-
# Full name of the OpenStackShell class to test (cliff.app.App subclass)
shell_class_name = "openstackclient.shell.OpenStackShell"
@@ -179,8 +178,8 @@ class TestShell(osc_lib_test_utils.TestShell):
def _assert_token_auth(self, cmd_options, default_args):
with mock.patch(
- self.app_patch + ".initialize_app",
- self.app,
+ self.app_patch + ".initialize_app",
+ self.app,
):
_shell = osc_lib_test_utils.make_shell(
shell_class=self.shell_class,
@@ -191,20 +190,18 @@ class TestShell(osc_lib_test_utils.TestShell):
self.app.assert_called_with(["list", "role"])
self.assertEqual(
- default_args.get("token", ''),
- _shell.options.token,
- "token"
+ default_args.get("token", ''), _shell.options.token, "token"
)
self.assertEqual(
default_args.get("auth_url", ''),
_shell.options.auth_url,
- "auth_url"
+ "auth_url",
)
def _assert_cli(self, cmd_options, default_args):
with mock.patch(
- self.shell_class_name + ".initialize_app",
- self.app,
+ self.shell_class_name + ".initialize_app",
+ self.app,
):
_shell = osc_lib_test_utils.make_shell(
shell_class=self.shell_class,
@@ -213,20 +210,29 @@ class TestShell(osc_lib_test_utils.TestShell):
osc_lib_test_utils.fake_execute(_shell, _cmd)
self.app.assert_called_with(["list", "server"])
- self.assertEqual(default_args["compute_api_version"],
- _shell.options.os_compute_api_version)
- self.assertEqual(default_args["identity_api_version"],
- _shell.options.os_identity_api_version)
- self.assertEqual(default_args["image_api_version"],
- _shell.options.os_image_api_version)
- self.assertEqual(default_args["volume_api_version"],
- _shell.options.os_volume_api_version)
- self.assertEqual(default_args["network_api_version"],
- _shell.options.os_network_api_version)
+ self.assertEqual(
+ default_args["compute_api_version"],
+ _shell.options.os_compute_api_version,
+ )
+ self.assertEqual(
+ default_args["identity_api_version"],
+ _shell.options.os_identity_api_version,
+ )
+ self.assertEqual(
+ default_args["image_api_version"],
+ _shell.options.os_image_api_version,
+ )
+ self.assertEqual(
+ default_args["volume_api_version"],
+ _shell.options.os_volume_api_version,
+ )
+ self.assertEqual(
+ default_args["network_api_version"],
+ _shell.options.os_network_api_version,
+ )
class TestShellOptions(TestShell):
-
def setUp(self):
super(TestShellOptions, self).setUp()
self.useFixture(osc_lib_test_utils.EnvFixture())
@@ -289,7 +295,6 @@ class TestShellOptions(TestShell):
class TestShellTokenAuthEnv(TestShell):
-
def setUp(self):
super(TestShellTokenAuthEnv, self).setUp()
env = {
@@ -333,7 +338,6 @@ class TestShellTokenAuthEnv(TestShell):
class TestShellTokenEndpointAuthEnv(TestShell):
-
def setUp(self):
super(TestShellTokenEndpointAuthEnv, self).setUp()
env = {
@@ -377,7 +381,6 @@ class TestShellTokenEndpointAuthEnv(TestShell):
class TestShellCli(TestShell):
-
def setUp(self):
super(TestShellCli, self).setUp()
env = {
@@ -408,6 +411,6 @@ class TestShellCli(TestShell):
"identity_api_version": LIB_IDENTITY_API_VERSION,
"image_api_version": LIB_IMAGE_API_VERSION,
"volume_api_version": LIB_VOLUME_API_VERSION,
- "network_api_version": LIB_NETWORK_API_VERSION
+ "network_api_version": LIB_NETWORK_API_VERSION,
}
self._assert_cli(flag, kwargs)