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

Use jira issue to get bug status #15359

Merged
merged 1 commit into from
Jun 7, 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/api/test_ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def test_positive_read_facts_with_filter(

# gather ansible facts by running ansible roles on the host
host.play_ansible_roles()
if is_open('BZ:2216471'):
if is_open('SAT-18656'):
wait_for(
lambda: len(rex_contenthost.nailgun_host.get_facts()) > 0,
timeout=30,
Expand Down
2 changes: 1 addition & 1 deletion tests/foreman/api/test_organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_positive_create(self, target_sat):
headers={'content-type': 'text/plain'},
verify=False,
)
if is_open('BZ:2228820'):
if is_open('SAT-20559'):
assert response.status_code in [http.client.UNSUPPORTED_MEDIA_TYPE, 500]
else:
assert response.status_code == http.client.UNSUPPORTED_MEDIA_TYPE
Expand Down
4 changes: 2 additions & 2 deletions tests/foreman/api/test_provisioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,11 +562,11 @@ def test_rhel_pxe_provisioning_fips_enabled(
# Verify FIPS is enabled on host after provisioning is completed sucessfully
if int(host_os.major) >= 8:
result = provisioning_host.execute('fips-mode-setup --check')
fips_status = 'FIPS mode is disabled' if is_open('BZ:2240076') else 'FIPS mode is enabled'
fips_status = 'FIPS mode is disabled' if is_open('SAT-20386') else 'FIPS mode is enabled'
assert fips_status in result.stdout
else:
result = provisioning_host.execute('cat /proc/sys/crypto/fips_enabled')
assert (0 if is_open('BZ:2240076') else 1) == int(result.stdout)
assert (0 if is_open('SAT-20386') else 1) == int(result.stdout)

# Run a command on the host using REX to verify that Satellite's SSH key is present on the host
template_id = (
Expand Down
2 changes: 1 addition & 1 deletion tests/foreman/sys/test_pulp3_filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_selinux_status(target_sat):
result = target_sat.execute('getenforce')
assert 'Enforcing' in result.stdout
# check there are no SELinux denials
if not is_open('BZ:2263294'):
if not is_open('SAT-23121'):
result = target_sat.execute('ausearch --input-logs -m avc -ts today --raw')
assert result.status == 1, 'Some SELinux denials were found in journal.'

Expand Down
2 changes: 1 addition & 1 deletion tests/foreman/ui/test_computeresource_vmware.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def _finalize():
assert provider_content['cluster'] == settings.vmware.cluster
assert provider_content['annotation_notes'] == annotation_notes
assert provider_content['virtual_hw_version'] == virtual_hw_version
if not is_open('BZ:2266672'):
if not is_open('SAT-23630'):
assert values['provider_content']['firmware'] == firmware
assert provider_content['resource_pool'] == resource_pool
assert provider_content['folder'] == folder
Expand Down
Loading