Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

[1LP][RFR] New Test:: Testing App IP is present or not on appliance console #9783

Merged
Merged
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
8 changes: 5 additions & 3 deletions cfme/tests/cli/test_appliance_console.py
Original file line number Diff line number Diff line change
Expand Up @@ -847,9 +847,8 @@ def test_appliance_console_evm_start():
pass


@pytest.mark.manual
@pytest.mark.tier(1)
def test_appliance_console_check_default_ip():
def test_appliance_console_check_default_ip(appliance):
"""
test ip settings, checking all the defaults are what is expected.

Expand All @@ -865,7 +864,10 @@ def test_appliance_console_check_default_ip():
1. See all default values related to IP
2. Cross-check default vaules via commandline.
"""
pass
result = appliance.ssh_client.run_command("appliance_console")
assert (appliance.hostname in result.output), (
"ip address is not found on appliance conmsole output."
)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please improve formatting here.


@pytest.mark.manual
Expand Down