1 # Copyright 2014 The Chromium OS 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 = 'avakulenko, wiley, keybuk' 6 NAME = 'buffet_PrivetSetupFlow' 7 TIME = 'FAST' 8 TEST_TYPE = 'Server' 9 ATTRIBUTES = "suite:tendo_experimental" 10 DEPENDENCIES = 'wificell' 11 12 DOC = """ 13 This test validates the buffet pairing/authentication/setup flow. 14 15 """ 16 17 from autotest_lib.client.common_lib import utils 18 19 def run(machine): 20 CMDLINE_ROUTER_HOSTNAME = 'router_addr' 21 cmdline_args = utils.args_to_dict(args) 22 router_hostname = cmdline_args.get(CMDLINE_ROUTER_HOSTNAME, None) 23 job.run_test('buffet_PrivetSetupFlow', 24 host=hosts.create_host(machine), 25 router_hostname=router_hostname) 26 27 28 parallel_simple(run, machines) 29