123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- from unittest import TestCase
- from test_base import PackstackTestCaseMixin
- from packstack.plugins import prescript_000
- class OSPluginUtilsTestCase(PackstackTestCaseMixin, TestCase):
- def test_rhn_creds_quoted(self):
- """Make sure RHN password is quoted."""
-
-
- if not prescript_000.is_rhel():
- return
- password = "dasd|'asda%><?"
- prescript_000.controller.CONF["CONFIG_KEYSTONE_HOST"] = "1.2.3.4"
- prescript_000.controller.CONF["CONFIG_USE_EPEL"] = "n"
- prescript_000.controller.CONF["CONFIG_REPO"] = ""
- prescript_000.controller.CONF["CONFIG_RH_USER"] = "testuser"
- prescript_000.controller.CONF["CONFIG_RH_PW"] = password
- prescript_000.controller.CONF["CONFIG_RH_BETA_REPO"] = "n"
- prescript_000.controller.CONF["CONFIG_SATELLITE_FLAGS"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_URL"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_USER"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_PW"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_CACERT"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_AKEY"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_PROFILE"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_PROXY"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_PROXY_USER"] = ""
- prescript_000.controller.CONF["CONFIG_SATELLITE_PROXY_PW"] = ""
- prescript_000.serverprep(prescript_000.controller.CONF)
- self.assertNotEqual(
- self.fake_popen.data.find('--password="%s"' % password), -1
- )
|