mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
test: reduce vr traceroute hops (#4913)
Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
parent
f00b5fc7ac
commit
50da578fde
@ -429,11 +429,11 @@ class TestRemoteDiagnostics(cloudstackTestCase):
|
|||||||
@attr(tags=["advanced", "advancedns", "ssh", "smoke"], required_hardware="true")
|
@attr(tags=["advanced", "advancedns", "ssh", "smoke"], required_hardware="true")
|
||||||
def test_10_traceroute_in_vr(self):
|
def test_10_traceroute_in_vr(self):
|
||||||
'''
|
'''
|
||||||
Test Arping command execution in VR
|
Test traceroute command execution in VR
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# Validate the following:
|
# Validate the following:
|
||||||
# 1. Arping command is executed remotely on VR
|
# 1. Traceroute command is executed remotely on VR
|
||||||
|
|
||||||
list_router_response = list_routers(
|
list_router_response = list_routers(
|
||||||
self.apiclient,
|
self.apiclient,
|
||||||
@ -452,13 +452,13 @@ class TestRemoteDiagnostics(cloudstackTestCase):
|
|||||||
cmd.targetid = router.id
|
cmd.targetid = router.id
|
||||||
cmd.ipaddress = '8.8.4.4'
|
cmd.ipaddress = '8.8.4.4'
|
||||||
cmd.type = 'traceroute'
|
cmd.type = 'traceroute'
|
||||||
cmd.params = "-m 10"
|
cmd.params = "-m 5"
|
||||||
cmd_response = self.apiclient.runDiagnostics(cmd)
|
cmd_response = self.apiclient.runDiagnostics(cmd)
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
'0',
|
'0',
|
||||||
cmd_response.exitcode,
|
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")
|
@attr(tags=["advanced", "advancedns", "ssh", "smoke"], required_hardware="true")
|
||||||
def test_11_traceroute_in_ssvm(self):
|
def test_11_traceroute_in_ssvm(self):
|
||||||
@ -488,7 +488,7 @@ class TestRemoteDiagnostics(cloudstackTestCase):
|
|||||||
cmd.targetid = ssvm.id
|
cmd.targetid = ssvm.id
|
||||||
cmd.ipaddress = '8.8.4.4'
|
cmd.ipaddress = '8.8.4.4'
|
||||||
cmd.type = 'traceroute'
|
cmd.type = 'traceroute'
|
||||||
cmd.params = '-m 10'
|
cmd.params = '-m 5'
|
||||||
cmd_response = self.apiclient.runDiagnostics(cmd)
|
cmd_response = self.apiclient.runDiagnostics(cmd)
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
@ -525,7 +525,7 @@ class TestRemoteDiagnostics(cloudstackTestCase):
|
|||||||
cmd.targetid = cpvm.id
|
cmd.targetid = cpvm.id
|
||||||
cmd.ipaddress = '8.8.4.4'
|
cmd.ipaddress = '8.8.4.4'
|
||||||
cmd.type = 'traceroute'
|
cmd.type = 'traceroute'
|
||||||
cmd.params = '-m 10'
|
cmd.params = '-m 5'
|
||||||
cmd_response = self.apiclient.runDiagnostics(cmd)
|
cmd_response = self.apiclient.runDiagnostics(cmd)
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user