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 6B738FF2A for ; Wed, 5 Nov 2014 10:45:01 +0000 (UTC) Received: (qmail 48375 invoked by uid 500); 5 Nov 2014 10:44:56 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 48308 invoked by uid 500); 5 Nov 2014 10:44:56 -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 47886 invoked by uid 99); 5 Nov 2014 10:44:56 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Nov 2014 10:44:56 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3EC71A0A23D; Wed, 5 Nov 2014 10:44:56 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rajani@apache.org To: commits@cloudstack.apache.org Date: Wed, 05 Nov 2014 10:45:12 -0000 Message-Id: In-Reply-To: <05c6863fb3b34541b89505ec934bced5@git.apache.org> References: <05c6863fb3b34541b89505ec934bced5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [18/50] [abbrv] git commit: updated refs/heads/master to 4c5f792 CLOUDSTACK-7728: Test script to identify product issue Signed-off-by: SrikanteswaraRao Talluri Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/aa1e2608 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/aa1e2608 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/aa1e2608 Branch: refs/heads/master Commit: aa1e26081208b5d6c758a6efbbf3b62ab2d6720d Parents: 4f297ef Author: Gaurav Aradhye Authored: Fri Oct 17 14:43:21 2014 +0530 Committer: SrikanteswaraRao Talluri Committed: Thu Oct 30 15:35:32 2014 +0530 ---------------------------------------------------------------------- test/integration/component/test_egress_fw_rules.py | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/aa1e2608/test/integration/component/test_egress_fw_rules.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_egress_fw_rules.py b/test/integration/component/test_egress_fw_rules.py index 12bade4..0122e4f 100755 --- a/test/integration/component/test_egress_fw_rules.py +++ b/test/integration/component/test_egress_fw_rules.py @@ -397,11 +397,18 @@ class TestEgressFWRules(cloudstackTestCase): # 2. login to VM. # 3. ping public network. # 4. public network should be reachable from the VM. + # 5. Reboot the router + # 6. Ping public network from VM, it should be reachable self.create_vm() self.exec_script_on_user_vm('ping -c 1 www.google.com', "| grep -oP \'\d+(?=% packet loss)\'", "['0']", negative_test=False) + self.reboot_Router() + self.exec_script_on_user_vm('ping -c 1 www.google.com', + "| grep -oP \'\d+(?=% packet loss)\'", + "['0']", + negative_test=False) @attr(tags=["advanced"], required_hardware="true") def test_01_1_egress_fr1(self):