diff options
| author | TerryHowe <terrylhowe@gmail.com> | 2015-08-21 11:05:36 -0600 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2015-11-20 10:57:36 -0600 |
| commit | c0cc53807754b5957e84d159f70fe42407d77f29 (patch) | |
| tree | 748caeb85ae586fbc56d23a84115ee51f00a000d /functional | |
| parent | 3751dbf1272bf20d82c55d61c2e20bcc0b29c983 (diff) | |
| download | python-openstackclient-c0cc53807754b5957e84d159f70fe42407d77f29.tar.gz | |
Have configuration tests support OCC
Change-Id: Ia8b0e5672e2e6cf6a37582bf231385aafda8836d
Diffstat (limited to 'functional')
| -rw-r--r-- | functional/tests/common/test_configuration.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/functional/tests/common/test_configuration.py b/functional/tests/common/test_configuration.py index f4a02099..801ee10d 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) |
