Skip to content

Commit

Permalink
Verify port 8443 is disabled on default capsule installation (Satelli…
Browse files Browse the repository at this point in the history
…teQE#15933)

Verify port 8443 is disabled on default capsule installtion
  • Loading branch information
jameerpathan111 authored Aug 16, 2024
1 parent 0ae0e33 commit 71bcecd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/foreman/installer/test_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ def test_capsule_installation(sat_non_default_install, cap_ready_rhel, setting_u
:CaseImportance: Critical
:Verifies: SAT-24520
:BZ: 1984400
:customerscenario: true
Expand Down Expand Up @@ -260,6 +262,14 @@ def test_capsule_installation(sat_non_default_install, cap_ready_rhel, setting_u
result = cap_ready_rhel.cli.Health.check()
assert 'FAIL' not in result.stdout

# Verify foreman-proxy-content-reverse-proxy and port 8443 are disabled on default installation
help_result = cap_ready_rhel.execute(
"satellite-installer --full-help | grep foreman-proxy-content-reverse-proxy"
)
assert "Add reverse proxy to the parent (current: false)" in help_result.stdout
port_result = cap_ready_rhel.execute("ss -tuln | grep 8443")
assert not port_result.stdout


@pytest.mark.e2e
@pytest.mark.tier1
Expand Down

0 comments on commit 71bcecd

Please sign in to comment.