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 = 'zqiu, wiley, pstew' 6 NAME = 'apmanager_SimpleConnect.default' 7 TIME = 'SHORT' 8 TEST_TYPE = 'Server' 9 DEPENDENCIES = 'wificell' 10 11 DOC = """ 12 This test verifies that DUT can connect to an WiFi network created using 13 apmanager with default configurations (SSID will be generated during test). 14 """ 15 16 def run(machine): 17 # Using default configuration provided by apmanager. SSID will be generated 18 # during test. 19 configurations = {} 20 host = hosts.create_host(machine) 21 job.run_test('apmanager_SimpleConnect', 22 host=host, 23 raw_cmdline_args=args, 24 additional_params=configurations) 25 26 27 parallel_simple(run, machines) 28