Updated Branches: refs/heads/master 868e944bf -> b178d0645
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/b178d064 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b178d064 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b178d064 Branch: refs/heads/master Commit: b178d0645418faa947c414be4241e01657dcadb4 Parents: 868e944 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:24:30 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/b178d064/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))