1 # Copyright 2015 The Chromium Authors. All rights reserved. 2 # Use of this source code is governed by a BSD-style license that can be 3 # found in the LICENSE file. 4 5 AUTHOR = "krisr" 6 NAME = "network_FirewallHolePunchServer" 7 PURPOSE = "Verify Chrome apps can open holes in the firewall" 8 CRITERIA = """ 9 Test will pass if Chrome apps can open holes in the firewall, that those 10 holes are closed when the app is reloaded or closed""" 11 ATTRIBUTES = "suite:network_nightly" 12 TIME = "SHORT" 13 TEST_CATEGORY = "Functional" 14 TEST_CLASS = "network" 15 TEST_TYPE = "server" 16 17 DOC = """ 18 This test checks network firewall manipulations. See CRITERIA for more 19 details 20 """ 21 22 from autotest_lib.server import utils 23 24 def run(machine): 25 host = hosts.create_host(machine) 26 job.run_test('network_FirewallHolePunchServer', host=host) 27 28 parallel_simple(run, machines) 29 30