Home | History | Annotate | Download | only in buffet_PrivetSetupFlow
      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 SUITE='tendo_experimental'
     11 DEPENDENCIES = 'wificell'
     12 
     13 DOC = """
     14 This test validates the buffet pairing/authentication/setup flow.
     15 
     16 """
     17 
     18 from autotest_lib.client.common_lib import utils
     19 
     20 def run(machine):
     21     CMDLINE_ROUTER_HOSTNAME = 'router_addr'
     22     cmdline_args = utils.args_to_dict(args)
     23     router_hostname = cmdline_args.get(CMDLINE_ROUTER_HOSTNAME, None)
     24     job.run_test('buffet_PrivetSetupFlow',
     25                  host=hosts.create_host(machine),
     26                  router_hostname=router_hostname)
     27 
     28 
     29 parallel_simple(run, machines)
     30