Repository: cloudstack Updated Branches: refs/heads/master 9e37a51bd -> 8b636bd41
CLOUDSTACK-7728: Test script to identify product issue Signed-off-by: SrikanteswaraRao Talluri <tall...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b277b1ab Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b277b1ab Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b277b1ab Branch: refs/heads/master Commit: b277b1abd812391bf5e0a9aba3406fc369a1a087 Parents: 9e37a51 Author: Gaurav Aradhye <gaurav.arad...@clogeny.com> Authored: Fri Oct 17 14:43:21 2014 +0530 Committer: SrikanteswaraRao Talluri <tall...@apache.org> Committed: Tue Nov 4 11:22:07 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/b277b1ab/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):