Source code for rhui3_tests.test_cds_cmd

'''CDS management tests for the CLI'''

from __future__ import print_function

from os.path import basename
import random

import logging
import nose
from stitches.expect import CTRL_C, Expect

from rhui3_tests_lib.conmgr import ConMgr, SUDO_USER_NAME, SUDO_USER_KEY
from rhui3_tests_lib.helpers import Helpers
from rhui3_tests_lib.rhui_cmd import RHUICLI
from rhui3_tests_lib.rhuimanager import RHUIManager
from rhui3_tests_lib.util import Util

logging.basicConfig(level=logging.DEBUG)

CDS_HOSTNAMES = ConMgr.get_cds_hostnames()

RHUA = ConMgr.connect()
CDS = [ConMgr.connect(host) for host in CDS_HOSTNAMES]

[docs]def setup(): ''' announce the beginning of the test run ''' print("*** Running %s: *** " % basename(__file__))
[docs]def test_01_init(): ''' log in to RHUI ''' RHUIManager.initial_run(RHUA)
[docs]def test_02_list_cds(): ''' check if there are no CDSs ''' cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [])
[docs]def test_03_add_cds(): ''' add all known CDSs ''' for cds in CDS_HOSTNAMES: status = RHUICLI.add(RHUA, "cds", cds, unsafe=True) nose.tools.ok_(status, msg="unexpected %s installation status: %s" % (cds, status))
[docs]def test_04_list_cds(): ''' check if the CDSs have been added ''' cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, CDS_HOSTNAMES)
[docs]def test_05_reinstall_cds(): ''' add one of the CDSs again by reinstalling it ''' # choose a random CDS hostname from the list cds = random.choice(CDS_HOSTNAMES) status = RHUICLI.reinstall(RHUA, "cds", cds) nose.tools.ok_(status, msg="unexpected %s reinstallation status: %s" % (cds, status))
[docs]def test_06_list_cds(): ''' check if the CDSs are still tracked, and nothing extra has appeared ''' cds_list = RHUICLI.list(RHUA, "cds") # the reinstalled CDS is now the last one in the list; the list may not be the same, sort it! cds_list.sort() nose.tools.eq_(cds_list, CDS_HOSTNAMES)
[docs]def test_07_readd_cds_noforce(): ''' check if rhui refuses to add a CDS again if no extra parameter is used ''' # again choose a random CDS hostname from the list cds = random.choice(CDS_HOSTNAMES) status = RHUICLI.add(RHUA, "cds", cds, unsafe=True) nose.tools.ok_(not status, msg="unexpected %s readdition status: %s" % (cds, status))
[docs]def test_08_list_cds(): ''' check if nothing extra has been added ''' cds_list = RHUICLI.list(RHUA, "cds") # the readded CDS is now the last one in the list; the list may not be the same, sort it! cds_list.sort() nose.tools.eq_(cds_list, CDS_HOSTNAMES)
[docs]def test_09_readd_cds(): ''' add one of the CDSs again by using force ''' # again choose a random CDS hostname from the list cds = random.choice(CDS_HOSTNAMES) status = RHUICLI.add(RHUA, "cds", cds, force=True, unsafe=True) nose.tools.ok_(status, msg="unexpected %s readdition status: %s" % (cds, status))
[docs]def test_10_list_cds(): ''' check if the CDSs are still tracked, and nothing extra has appeared ''' cds_list = RHUICLI.list(RHUA, "cds") # the readded CDS is now the last one in the list; the list may not be the same, sort it! cds_list.sort() nose.tools.eq_(cds_list, CDS_HOSTNAMES)
[docs]def test_11_delete_cds_noforce(): ''' check if rhui refuses to delete the node when it's the only/last one and force isn't used ''' # delete all but the first node (if there are more nodes to begin with) if len(CDS_HOSTNAMES) > 1: RHUICLI.delete(RHUA, "cds", CDS_HOSTNAMES[1:]) status = RHUICLI.delete(RHUA, "cds", [CDS_HOSTNAMES[0]]) nose.tools.ok_(not status, msg="unexpected deletion status: %s" % status)
[docs]def test_12_list_cds(): ''' check if the last CDS really hasn't been deleted ''' cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [CDS_HOSTNAMES[0]])
[docs]def test_13_delete_cds_force(): ''' delete the last CDS forcibly ''' status = RHUICLI.delete(RHUA, "cds", [CDS_HOSTNAMES[0]], force=True) nose.tools.ok_(status, msg="unexpected deletion status: %s" % status)
[docs]def test_14_list_cds(): ''' check if the last CDS has been deleted ''' cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [])
[docs]def test_15_add_bad_cds(): ''' try adding an incorrect CDS hostname, expect trouble and nothing added ''' status = RHUICLI.add(RHUA, "cds", "foo" + CDS_HOSTNAMES[0]) nose.tools.ok_(not status, msg="unexpected addition status: %s" % status) cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [])
[docs]def test_16_delete_bad_cds(): ''' try deleting a non-existing CDS hostname, expect trouble ''' # for RHBZ#1409697 # first try a case where only an unknown (ie. no known) hostname is used on the command line status = RHUICLI.delete(RHUA, "cds", ["bar" + CDS_HOSTNAMES[0]], force=True) nose.tools.ok_(not status, msg="unexpected deletion status: %s" % status) # and now a combination of a known and an unknown hostname # the known hostname should be deleted, the unknown skipped, exit code 1 # so, add a node first cds = random.choice(CDS_HOSTNAMES) RHUICLI.add(RHUA, "cds", cds, unsafe=True) cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [cds]) # deleting now status = RHUICLI.delete(RHUA, "cds", ["baz" + cds, cds], force=True) nose.tools.ok_(not status, msg="unexpected deletion status: %s" % status) # check if the valid hostname was deleted and nothing remained cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [])
[docs]def test_17_add_cds_changed_case(): ''' add and delete a CDS with uppercase characters, should work ''' # for RHBZ#1572623 # choose a random CDS hostname from the list cds_up = random.choice(CDS_HOSTNAMES).replace("cds", "CDS") status = RHUICLI.add(RHUA, "cds", cds_up, unsafe=True) nose.tools.ok_(status, msg="unexpected %s addition status: %s" % (cds_up, status)) cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [cds_up]) status = RHUICLI.delete(RHUA, "cds", [cds_up], force=True) nose.tools.ok_(status, msg="unexpected %s deletion status: %s" % (cds_up, status))
[docs]def test_18_add_safe_unknown_key(): ''' try adding a CDS whose SSH key is unknown, without using --unsafe; should fail ''' # for RHBZ#1409460 # choose a random CDS hostname from the list cds = random.choice(CDS_HOSTNAMES) # make sure its key is unknown ConMgr.remove_ssh_keys(RHUA, [cds]) # try adding the CDS status = RHUICLI.add(RHUA, "cds", cds) nose.tools.ok_(not status, msg="unexpected %s addition status: %s" % (cds, status)) cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [])
[docs]def test_19_add_safe_known_key(): ''' add and delete a CDS whose SSH key is known, without using --unsafe; should work ''' # for RHBZ#1409460 # choose a random CDS hostname from the list cds = random.choice(CDS_HOSTNAMES) # accept the host's SSH key ConMgr.add_ssh_keys(RHUA, [cds]) # actually add and delete the host status = RHUICLI.add(RHUA, "cds", cds) nose.tools.ok_(status, msg="unexpected %s addition status: %s" % (cds, status)) cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [cds]) status = RHUICLI.delete(RHUA, "cds", [cds], force=True) nose.tools.ok_(status, msg="unexpected %s deletion status: %s" % (cds, status)) # clean up the SSH key ConMgr.remove_ssh_keys(RHUA, [cds])
[docs]def test_20_delete_unreachable(): ''' add a CDS, make it unreachable, and see if it can still be deleted from the RHUA ''' # for RHBZ#1639996 # choose a random CDS hostname from the list cds = random.choice(CDS_HOSTNAMES) status = RHUICLI.add(RHUA, "cds", cds, unsafe=True) nose.tools.ok_(status, msg="unexpected installation status: %s" % status) cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, [cds]) Helpers.break_hostname(RHUA, cds) # delete it status = RHUICLI.delete(RHUA, "cds", [cds], force=True) nose.tools.ok_(status, msg="unexpected deletion status: %s" % status) # check it cds_list = RHUICLI.list(RHUA, "cds") nose.tools.eq_(cds_list, []) Helpers.unbreak_hostname(RHUA) # the node remains configured (RHUI mount point, httpd)... unconfigure it properly # do so by adding and deleting it again RHUICLI.add(RHUA, "cds", cds, unsafe=True) RHUICLI.delete(RHUA, "cds", [cds], force=True)
[docs]def test_21_check_cleanup(): ''' check if Apache was stopped and the remote file system unmounted on all CDSs ''' # for RHBZ#1640002 service = "httpd" mdir = "/var/lib/rhui/remote_share" dirty_hosts = dict() errors = [] dirty_hosts["httpd"] = [cds.hostname for cds in CDS if Helpers.check_service(cds, service)] dirty_hosts["mount"] = [cds.hostname for cds in CDS if Helpers.check_mountpoint(cds, mdir)] if dirty_hosts["httpd"]: errors.append("Apache is still running on %s" % dirty_hosts["httpd"]) if dirty_hosts["mount"]: errors.append("The remote file system is still mounted on %s" % dirty_hosts["mount"]) nose.tools.ok_(not errors, msg=errors)
[docs]def test_22_verbose_reporting(): ''' check if a failure is reported properly (if puppet is run with --verbose) ''' # for RHBZ#1751378 # choose a random CDS and open port 443 on it, which will later prevent Apache from starting cds = random.choice(CDS) Expect.enter(cds, "ncat -l 443 --keep-open") # try adding the CDS and capture the output error_msg = "change from stopped to running failed" out = Util.mktemp_remote(RHUA) cmd = "rhui cds add %s %s %s -u &> %s" % (cds.hostname, SUDO_USER_NAME, SUDO_USER_KEY, out) RHUA.recv_exit_status(cmd, timeout=120) # delete the CDS and free the port RHUICLI.delete(RHUA, "cds", [cds.hostname], force=True) Expect.enter(cds, CTRL_C) # check if the failure is in the output Expect.expect_retval(RHUA, "grep '%s' %s" % (error_msg, out)) Expect.expect_retval(RHUA, "rm -f %s" % out)
[docs]def teardown(): ''' announce the end of the test run ''' # also clean up SSH keys left by rhui ConMgr.remove_ssh_keys(RHUA, CDS_HOSTNAMES) print("*** Finished running %s. *** " % basename(__file__))