forked from redhat-openstack/packstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_plugin_prescript.py
More file actions
56 lines (45 loc) · 2.35 KB
/
Copy pathtest_plugin_prescript.py
File metadata and controls
56 lines (45 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2013, Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
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."""
# On non-RHEL, the CONFIG_{RH,SATELLITE} options are never set,
# i.e. this test would always fail. Therefore, only run it on RHEL.
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
)