summaryrefslogtreecommitdiff
path: root/openstackclient/tests/identity/v3
diff options
context:
space:
mode:
authorJulien Danjou <julien@danjou.info>2016-05-24 15:56:27 +0200
committerJulien Danjou <julien@danjou.info>2016-05-25 16:13:48 +0200
commite44bb009d36bddc0fdfb6e949ddc293de291dcca (patch)
tree8eb8d16f5b95fdd7b117fc988679799c0bf0e794 /openstackclient/tests/identity/v3
parent5ae8f1b7d52ca9c94a01aeef13754b1d5a15a91f (diff)
downloadpython-openstackclient-e44bb009d36bddc0fdfb6e949ddc293de291dcca.tar.gz
keystone: fix catalog output when region is unset
If no region is set in Keystone, null is deserialized as None and the region has None has value, which triggers a type error when building the output string. This patch fixes that. Change-Id: I7637dc2595655cf452f38308f99fe66ac782e16d
Diffstat (limited to 'openstackclient/tests/identity/v3')
-rw-r--r--openstackclient/tests/identity/v3/test_catalog.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/openstackclient/tests/identity/v3/test_catalog.py b/openstackclient/tests/identity/v3/test_catalog.py
index a03c9d3e..1b8fa085 100644
--- a/openstackclient/tests/identity/v3/test_catalog.py
+++ b/openstackclient/tests/identity/v3/test_catalog.py
@@ -38,6 +38,11 @@ class TestCatalog(utils.TestCommand):
'url': 'https://internal.example.com',
'interface': 'internal',
},
+ {
+ 'region': None,
+ 'url': 'https://none.example.com',
+ 'interface': 'none',
+ },
],
}
@@ -81,7 +86,8 @@ class TestCatalogList(TestCatalog):
'compute',
'onlyone\n public: https://public.example.com\n'
'onlyone\n admin: https://admin.example.com\n'
- '<none>\n internal: https://internal.example.com\n',
+ '<none>\n internal: https://internal.example.com\n'
+ '<none>\n none: https://none.example.com\n',
), )
self.assertEqual(datalist, tuple(data))
@@ -114,7 +120,8 @@ class TestCatalogShow(TestCatalog):
datalist = (
'onlyone\n public: https://public.example.com\nonlyone\n'
' admin: https://admin.example.com\n'
- '<none>\n internal: https://internal.example.com\n',
+ '<none>\n internal: https://internal.example.com\n'
+ '<none>\n none: https://none.example.com\n',
'qwertyuiop',
'supernova',
'compute',