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

success > Succeeded status change in host table #16952

Merged
merged 1 commit into from
Nov 20, 2024
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
2 changes: 1 addition & 1 deletion tests/foreman/ui/test_ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ def test_positive_install_ansible_collection(
status = session.jobinvocation.read(
entity_name=job_description, host_name=client.hostname
)
assert status['overview']['hosts_table'][0]['Status'] == 'success'
assert status['overview']['hosts_table'][0]['Status'] == 'Succeeded'

collection_path = client.execute('ls ~/ansible_collections').stdout
assert 'oasis_roles' in collection_path
Expand Down
2 changes: 1 addition & 1 deletion tests/foreman/ui/test_leapp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ def test_leapp_preupgrade_report(
status = session.jobinvocation.read(
entity_name='Upgradeability check for rhel host', host_name=hostname
)
assert status['overview']['hosts_table'][0]['Status'] == 'success'
assert status['overview']['hosts_table'][0]['Status'] == 'Succeeded'
10 changes: 5 additions & 5 deletions tests/foreman/ui/test_remoteexecution.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def test_positive_run_default_job_template(
)
session.jobinvocation.wait_job_invocation_state(entity_name='Run ls', host_name=hostname)
status = session.jobinvocation.read(entity_name='Run ls', host_name=hostname)
assert status['overview']['hosts_table'][0]['Status'] == 'success'
assert status['overview']['hosts_table'][0]['Status'] == 'Succeeded'

# check status also on the job dashboard
job_name = f'Run {command}'
Expand Down Expand Up @@ -250,7 +250,7 @@ def test_positive_run_custom_job_template(
entity_name=job_description, host_name=hostname
)
status = session.jobinvocation.read(entity_name=job_description, host_name=hostname)
assert status['overview']['hosts_table'][0]['Status'] == 'success'
assert status['overview']['hosts_table'][0]['Status'] == 'Succeeded'


@pytest.mark.upgrade
Expand Down Expand Up @@ -364,7 +364,7 @@ def test_positive_run_scheduled_job_template_by_ip(session, module_org, rex_cont
assert job_status['overview']['hosts_table'][0]['Status'] in (
'Awaiting start',
'N/A',
'success',
'Succeeded',
)
# recalculate the job left time to be more accurate
job_left_time = (plan_time - session.browser.get_client_datetime()).total_seconds()
Expand All @@ -383,14 +383,14 @@ def test_positive_run_scheduled_job_template_by_ip(session, module_org, rex_cont
lambda: session.jobinvocation.read(
f'Run {command_to_run}', hostname, 'overview.hosts_table'
)['overview']['hosts_table'][0]['Status']
== 'success',
== 'Succeeded',
timeout=30,
delay=1,
)
job_status = session.jobinvocation.read(f'Run {command_to_run}', hostname, 'overview')
assert job_status['overview']['job_status'] == 'Success'
assert job_status['overview']['hosts_table'][0]['Host'] == hostname
assert job_status['overview']['hosts_table'][0]['Status'] == 'success'
assert job_status['overview']['hosts_table'][0]['Status'] == 'Succeeded'


@pytest.mark.tier2
Expand Down
Loading