Updated Branches: refs/heads/4.2 c653f0eb1 -> 1106116b4
CLOUDSTACK-5168: Fixed test script issue related to SSH command Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/1106116b Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/1106116b Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/1106116b Branch: refs/heads/4.2 Commit: 1106116b48cdb253046462c2d9d483b63876a740 Parents: c653f0e Author: Ashutosh K <ashut...@clogeny.com> Authored: Fri Nov 15 11:20:44 2013 +0530 Committer: Girish Shilamkar <gir...@clogeny.com> Committed: Fri Nov 15 11:20:44 2013 +0530 ---------------------------------------------------------------------- test/integration/component/test_egress_rules.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/1106116b/test/integration/component/test_egress_rules.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_egress_rules.py b/test/integration/component/test_egress_rules.py index 983b7ce..eb38c1a 100644 --- a/test/integration/component/test_egress_rules.py +++ b/test/integration/component/test_egress_rules.py @@ -907,7 +907,7 @@ class TestRevokeEgressRule(cloudstackTestCase): # CIDR: 0.0.0.0/0 # 5. deployVirtualMachine into this security group (ssh) # 6. deployed VM should be Running, ssh should be allowed into the VM, - # ping out to google.com from the VM should fail, + # ping out to google.com from the VM should be successful, # ssh from within VM to mgt server should pass # 7. Revoke egress rule. Verify ping and SSH access to management server # is restored @@ -1005,7 +1005,7 @@ class TestRevokeEgressRule(cloudstackTestCase): result = str(res) self.assertEqual( - result.count("0 received"), + result.count("1 received"), 1, "Ping to outside world from VM should be successful" ) @@ -1014,7 +1014,7 @@ class TestRevokeEgressRule(cloudstackTestCase): self.debug("SSHing into management server from VM") res = ssh.execute("ssh %s@%s" % ( self.services["mgmt_server"]["username"], - self.services["mgmt_server"]["ipaddress"] + self.apiclient.connection.mgtSvr )) self.debug("SSH result: %s" % str(res)) @@ -1062,16 +1062,16 @@ class TestRevokeEgressRule(cloudstackTestCase): result = str(res) self.assertEqual( - result.count("1 received"), + result.count("0 received"), 1, - "Ping to outside world from VM should be successful" + "Ping to outside world from VM should fail" ) try: self.debug("SSHing into management server from VM") res = ssh.execute("ssh %s@%s" % ( self.services["mgmt_server"]["username"], - self.services["mgmt_server"]["ipaddress"] + self.apiclient.connection.mgtSvr )) self.debug("SSH result: %s" % str(res))