Skip to content

Commit

Permalink
Fix Discovery Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shweta83 committed Nov 12, 2024
1 parent 37a277b commit 0a7ef4a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
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
19 changes: 10 additions & 9 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 @@ -167,7 +167,7 @@ class TestDiscoveredHost:

@pytest.mark.upgrade
@pytest.mark.e2e
@pytest.mark.on_premises_provisioning
# @pytest.mark.on_premises_provisioning
@pytest.mark.parametrize('module_provisioning_sat', ['discovery'], indirect=True)
@pytest.mark.parametrize('pxe_loader', ['bios', 'uefi'], indirect=True)
@pytest.mark.rhel_ver_list([8, 9])
Expand All @@ -179,6 +179,7 @@ def test_positive_provision_pxe_host(
provisioning_host,
provisioning_hostgroup,
pxe_loader,
request,
):
"""Provision a pxe-based discovered host
Expand All @@ -201,7 +202,7 @@ def test_positive_provision_pxe_host(
mac = provisioning_host._broker_args['provisioning_nic_mac_addr']
wait_for(
lambda: sat.api.DiscoveredHost().search(query={'mac': mac}) != [],
timeout=1500,
timeout=1800,
delay=40,
)
discovered_host = sat.api.DiscoveredHost().search(query={'mac': mac})[0]
Expand All @@ -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 Down Expand Up @@ -263,9 +264,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)
sat.provisioning_cleanup(host.name)

@pytest.mark.tier3
def test_positive_auto_provision_pxe_host(
Expand Down

0 comments on commit 0a7ef4a

Please sign in to comment.