Skip to content

Commit

Permalink
test jira issue handler, Do not merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jameerpathan111 committed Apr 17, 2024
1 parent 625017b commit 8805b12
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/foreman/api/test_ping.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ def test_positive_ping(target_sat):
:id: b8ecc7ba-8007-4067-bf99-21a82c833de7
:expectedresults: Overall and individual services status should be 'ok'.
:Verifies: SAT-24621
:BlockedBy: SAT-24553
"""
response = target_sat.api.Ping().search_json()
assert response['status'] == 'ok' # overall status
Expand Down
2 changes: 2 additions & 0 deletions tests/foreman/cli/test_ping.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ def test_positive_ping(target_sat, switch_user):
:BZ: 2122176, 2115775
:customerscenario: true
:BlockedBy: SAT-24621
"""
result = target_sat.execute(f"su - {'postgres' if switch_user else 'root'} -c 'hammer ping'")
assert result.stderr[1].decode() == ''
Expand Down

0 comments on commit 8805b12

Please sign in to comment.