Skip to content
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
12 changes: 6 additions & 6 deletions test/integration/smoke/test_diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,11 +429,11 @@ def test_09_arping_in_cpvm(self):
@attr(tags=["advanced", "advancedns", "ssh", "smoke"], required_hardware="true")
def test_10_traceroute_in_vr(self):
'''
Test Arping command execution in VR
Test traceroute command execution in VR
'''

# Validate the following:
# 1. Arping command is executed remotely on VR
# 1. Traceroute command is executed remotely on VR

list_router_response = list_routers(
self.apiclient,
Expand All @@ -452,13 +452,13 @@ def test_10_traceroute_in_vr(self):
cmd.targetid = router.id
cmd.ipaddress = '8.8.4.4'
cmd.type = 'traceroute'
cmd.params = "-m 10"
cmd.params = "-m 5"
cmd_response = self.apiclient.runDiagnostics(cmd)

self.assertEqual(
'0',
cmd_response.exitcode,
'Failed to run remote Arping in VR')
'Failed to run remote Traceroute in VR')

@attr(tags=["advanced", "advancedns", "ssh", "smoke"], required_hardware="true")
def test_11_traceroute_in_ssvm(self):
Expand Down Expand Up @@ -488,7 +488,7 @@ def test_11_traceroute_in_ssvm(self):
cmd.targetid = ssvm.id
cmd.ipaddress = '8.8.4.4'
cmd.type = 'traceroute'
cmd.params = '-m 10'
cmd.params = '-m 5'
cmd_response = self.apiclient.runDiagnostics(cmd)

self.assertEqual(
Expand Down Expand Up @@ -525,7 +525,7 @@ def test_12_traceroute_in_cpvm(self):
cmd.targetid = cpvm.id
cmd.ipaddress = '8.8.4.4'
cmd.type = 'traceroute'
cmd.params = '-m 10'
cmd.params = '-m 5'
cmd_response = self.apiclient.runDiagnostics(cmd)

self.assertEqual(
Expand Down