From c0cc53807754b5957e84d159f70fe42407d77f29 Mon Sep 17 00:00:00 2001 From: TerryHowe Date: Fri, 21 Aug 2015 11:05:36 -0600 Subject: [PATCH] Have configuration tests support OCC Change-Id: Ia8b0e5672e2e6cf6a37582bf231385aafda8836d --- functional/tests/common/test_configuration.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/functional/tests/common/test_configuration.py b/functional/tests/common/test_configuration.py index f4a0209973..801ee10dfc 100644 --- a/functional/tests/common/test_configuration.py +++ b/functional/tests/common/test_configuration.py @@ -30,9 +30,15 @@ class ConfigurationTests(test.TestCase): def test_configuration_show_unmask(self): raw_output = self.openstack('configuration show --unmask ' + self.opts) - passwd = os.environ['OS_PASSWORD'] - self.assertOutput(passwd + '\n', raw_output) + # If we are using os-client-config, this will not be set. Rather than + # parse clouds.yaml to get the right value, just make sure + # we are not getting redacted. + passwd = os.environ.get('OS_PASSWORD') + if passwd: + self.assertEqual(passwd + '\n', raw_output) + else: + self.assertNotEqual(configuration.REDACTED + '\n', raw_output) def test_configuration_show_mask(self): raw_output = self.openstack('configuration show --mask ' + self.opts) - self.assertOutput(configuration.REDACTED + '\n', raw_output) + self.assertEqual(configuration.REDACTED + '\n', raw_output)