Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6A3D2C8AD for ; Thu, 27 Jun 2013 15:01:18 +0000 (UTC) Received: (qmail 67748 invoked by uid 500); 27 Jun 2013 15:01:17 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 67668 invoked by uid 500); 27 Jun 2013 15:01:17 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 67655 invoked by uid 99); 27 Jun 2013 15:01:16 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Jun 2013 15:01:16 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id AEF52387AB; Thu, 27 Jun 2013 15:01:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tsp@apache.org To: commits@cloudstack.apache.org Date: Thu, 27 Jun 2013 15:01:16 -0000 Message-Id: <49b5de534074413f8c59fec996ba3d0e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: updated refs/heads/master to 8dc99d9 Updated Branches: refs/heads/master 181567ba7 -> 8dc99d92b Fix reviewboard messup of python indentation Signed-off-by: Prasanna Santhanam Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/8dc99d92 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/8dc99d92 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/8dc99d92 Branch: refs/heads/master Commit: 8dc99d92b6f82e435610dfcc01d3458a99503119 Parents: 2af6db2 Author: Prasanna Santhanam Authored: Wed Jun 26 17:12:54 2013 +0530 Committer: Prasanna Santhanam Committed: Thu Jun 27 20:30:36 2013 +0530 ---------------------------------------------------------------------- test/integration/smoke/test_routers.py | 64 ++++++++++++++--------------- 1 file changed, 32 insertions(+), 32 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8dc99d92/test/integration/smoke/test_routers.py ---------------------------------------------------------------------- diff --git a/test/integration/smoke/test_routers.py b/test/integration/smoke/test_routers.py index 2e4553b..6fa08e0 100644 --- a/test/integration/smoke/test_routers.py +++ b/test/integration/smoke/test_routers.py @@ -171,7 +171,7 @@ class TestRouterServices(cloudstackTestCase): "Check list host returns a valid list" ) host = hosts[0] - + self.debug("Router ID: %s, state: %s" % (router.id, router.state)) self.assertEqual( @@ -180,32 +180,32 @@ class TestRouterServices(cloudstackTestCase): "Check list router response for router state" ) - if self.apiclient.hypervisor.lower() == 'vmware': - result = get_process_status( - self.apiclient.connection.mgtSvr, - 22, - self.apiclient.connection.user, - self.apiclient.connection.passwd, - router.linklocalip, - "service dnsmasq status", - hypervisor=self.apiclient.hypervisor - ) - else: - result = get_process_status( - host.ipaddress, - self.services['virtual_machine']["publicport"], - self.vm_1.username, - self.vm_1.password, - router.linklocalip, - "service dnsmasq status" - ) - res = str(result) - self.debug("Dnsmasq process status: %s" % res) + if self.apiclient.hypervisor.lower() == 'vmware': + result = get_process_status( + self.apiclient.connection.mgtSvr, + 22, + self.apiclient.connection.user, + self.apiclient.connection.passwd, + router.linklocalip, + "service dnsmasq status", + hypervisor=self.apiclient.hypervisor + ) + else: + result = get_process_status( + host.ipaddress, + self.services['virtual_machine']["publicport"], + self.vm_1.username, + self.vm_1.password, + router.linklocalip, + "service dnsmasq status" + ) + res = str(result) + self.debug("Dnsmasq process status: %s" % res) - self.assertEqual( - res.count("running"), - 1, - "Check dnsmasq service is running or not" + self.assertEqual( + res.count("running"), + 1, + "Check dnsmasq service is running or not" ) return @@ -253,7 +253,7 @@ class TestRouterServices(cloudstackTestCase): "Check list router response for router state" ) - if self.apiclient.hypervisor.lower() == 'vmware': + if self.apiclient.hypervisor.lower() == 'vmware': result = get_process_status( self.apiclient.connection.mgtSvr, 22, @@ -263,7 +263,7 @@ class TestRouterServices(cloudstackTestCase): "service dnsmasq status", hypervisor=self.apiclient.hypervisor ) - else: + else: result = get_process_status( host.ipaddress, self.services['virtual_machine']["publicport"], @@ -281,7 +281,7 @@ class TestRouterServices(cloudstackTestCase): "Check dnsmasq service is running or not" ) - if self.apiclient.hypervisor.lower() == 'vmware': + if self.apiclient.hypervisor.lower() == 'vmware': result = get_process_status( self.apiclient.connection.mgtSvr, 22, @@ -291,7 +291,7 @@ class TestRouterServices(cloudstackTestCase): "service haproxy status", hypervisor=self.apiclient.hypervisor ) - else: + else: result = get_process_status( host.ipaddress, self.services['virtual_machine']["publicport"], @@ -456,7 +456,7 @@ class TestRouterServices(cloudstackTestCase): ) host = hosts[0] - if self.apiclient.hypervisor.lower() == 'vmware': + if self.apiclient.hypervisor.lower() == 'vmware': res = get_process_status( self.apiclient.connection.mgtSvr, 22, @@ -466,7 +466,7 @@ class TestRouterServices(cloudstackTestCase): "uptime", hypervisor=self.apiclient.hypervisor ) - else: + else: res = get_process_status( host.ipaddress, self.services['virtual_machine']["publicport"],