Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[6.15.z] Fix Discovery Tests #16904

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pytest_fixtures/component/provision_pxe.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def module_ssh_key_file():


@pytest.fixture
def provisioning_host(module_ssh_key_file, pxe_loader):
def provisioning_host(module_ssh_key_file, pxe_loader, module_provisioning_sat):
"""Fixture to check out blank VM"""
vlan_id = settings.provisioning.vlan_id
cd_iso = (
Expand All @@ -234,6 +234,7 @@ def provisioning_host(module_ssh_key_file, pxe_loader):
) as prov_host:
yield prov_host
# Set host as non-blank to run teardown of the host
assert module_provisioning_sat.sat.execute('systemctl restart dhcpd').status == 0
prov_host.blank = getattr(prov_host, 'blank', False)


Expand Down
16 changes: 9 additions & 7 deletions tests/foreman/api/test_discoveredhost.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class HostNotDiscoveredException(Exception):
def _read_log(ch, pattern):
"""Read the first line from the given channel buffer and return the matching line"""
# read lines until the buffer is empty
for log_line in ch.stdout().splitlines():
for log_line in ch.result.stdout.splitlines():
logger.debug(f'foreman-tail: {log_line}')
if re.search(pattern, log_line):
return log_line
Expand Down Expand Up @@ -179,6 +179,7 @@ def test_positive_provision_pxe_host(
provisioning_host,
provisioning_hostgroup,
pxe_loader,
request,
):
"""Provision a pxe-based discovered host

Expand Down Expand Up @@ -214,9 +215,9 @@ def test_positive_provision_pxe_host(
host = discovered_host.update(['hostgroup', 'build', 'location', 'organization'])
host = sat.api.Host().search(query={"search": f'name={host.name}'})[0]
assert host
assert_discovered_host_provisioned(shell, module_provisioning_rhel_content.ksrepo)
sat.provisioning_cleanup(host.name)
provisioning_host.blank = True
shell.close()
assert_discovered_host_provisioned(shell, module_provisioning_rhel_content.ksrepo)
request.addfinalizer(lambda: sat.provisioning_cleanup(host.name))

@pytest.mark.upgrade
@pytest.mark.e2e
Expand All @@ -231,6 +232,7 @@ def test_positive_provision_pxe_less_host(
pxeless_discovery_host,
module_provisioning_rhel_content,
provisioning_hostgroup,
request,
):
"""Provision a pxe-less discovered hosts

Expand Down Expand Up @@ -263,9 +265,9 @@ def test_positive_provision_pxe_less_host(
host = discovered_host.update(['hostgroup', 'build', 'location', 'organization'])
host = sat.api.Host().search(query={"search": f'name={host.name}'})[0]
assert host
assert_discovered_host_provisioned(shell, module_provisioning_rhel_content.ksrepo)
sat.provisioning_cleanup(host.name)
pxeless_discovery_host.blank = True
shell.close()
assert_discovered_host_provisioned(shell, module_provisioning_rhel_content.ksrepo)
request.addfinalizer(lambda: sat.provisioning_cleanup(host.name))

@pytest.mark.tier3
def test_positive_auto_provision_pxe_host(
Expand Down
3 changes: 2 additions & 1 deletion tests/foreman/api/test_provisioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
def _read_log(ch, pattern):
"""Read the first line from the given channel buffer and return the matching line"""
# read lines until the buffer is empty
for log_line in ch.stdout().splitlines():
for log_line in ch.result.stdout.splitlines():
logger.debug(f'foreman-tail: {log_line}')
if re.search(pattern, log_line):
return log_line
Expand Down Expand Up @@ -389,6 +389,7 @@ def test_rhel_httpboot_provisioning(
# check for proper HTTP requests
shell = module_provisioning_sat.session.shell()
shell.send('foreman-tail')
shell.close()
assert_host_logs(shell, f'GET /httpboot/grub2/grub.cfg-{host_mac_addr} with 200')
# Host should do call back to the Satellite reporting
# the result of the installation. Wait until Satellite reports that the host is installed.
Expand Down
Loading