diff options
author | Thomas Duval <thomas.duval@orange.com> | 2016-09-07 14:09:19 +0200 |
---|---|---|
committer | Thomas Duval <thomas.duval@orange.com> | 2016-09-20 10:38:37 +0200 |
commit | b7fd8f7f7a634d1b0298a7b0200347330b75c4eb (patch) | |
tree | d0138cd8ef337b499de1685cf191180b7f9f25e2 /moonclient | |
parent | e2e0f874b274c818776f79fb8df60778c47967cb (diff) |
Update subprocess code to be compliant with Python2 and update credentials for Swift Moonclient test.
Change-Id: I571f3c48765da02ed7ad6c23b006afe0f97a8636
(cherry picked from commit 705b9d51a9d81ca75b07f71c09d9a4e9f35ed49a)
Diffstat (limited to 'moonclient')
-rw-r--r-- | moonclient/moonclient/shell.py | 7 | ||||
-rw-r--r-- | moonclient/moonclient/tests.py | 2 | ||||
-rw-r--r-- | moonclient/moonclient/tests/tests_empty_policy_swift.json | 3 |
3 files changed, 8 insertions, 4 deletions
diff --git a/moonclient/moonclient/shell.py b/moonclient/moonclient/shell.py index d1d02518..8be73621 100644 --- a/moonclient/moonclient/shell.py +++ b/moonclient/moonclient/shell.py @@ -135,9 +135,12 @@ class MoonClient(App): def nb_error(self): return self._nb_error - def incr_error(self): + def incr_error(self, msg=""): self._nb_error += 1 - print("INCREMENTING ERRORS {}".format(self._nb_error)) + if not msg: + print("INCREMENTING ERRORS {}".format(self._nb_error)) + else: + print("INCREMENTING ERRORS {} [{}]".format(self._nb_error, msg)) def get_tenant_uuid(self, tenant_name): return self.get_url("/v3/projects?name={}".format(tenant_name), authtoken=True, port=5000)["projects"][0]["id"] diff --git a/moonclient/moonclient/tests.py b/moonclient/moonclient/tests.py index 3ef2aa90..b2c02f11 100644 --- a/moonclient/moonclient/tests.py +++ b/moonclient/moonclient/tests.py @@ -220,7 +220,7 @@ class TestsLaunch(Lister): overall_result = overall_result and True else: compare = "\033[1m\033[31mFalse\033[m" - self.app.incr_error() + self.app.incr_error(error_str) overall_result = overall_result and False else: overall_result = overall_result and compare diff --git a/moonclient/moonclient/tests/tests_empty_policy_swift.json b/moonclient/moonclient/tests/tests_empty_policy_swift.json index 6d8de2e4..e935da98 100644 --- a/moonclient/moonclient/tests/tests_empty_policy_swift.json +++ b/moonclient/moonclient/tests/tests_empty_policy_swift.json @@ -4,7 +4,8 @@ "authz": [ { "auth_name": "admin", - "auth_tenant": "demo", + "auth_password": "console", + "auth_tenant": "admin", "description": "Change user to admin (just in case...)" }, |