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 5AUTHOR = 'zqiu, wiley, pstew' 6NAME = 'apmanager_SimpleConnect.default' 7TIME = 'SHORT' 8TEST_TYPE = 'Server' 9DEPENDENCIES = 'wificell' 10 11DOC = """ 12This test verifies that DUT can connect to an WiFi network created using 13apmanager with default configurations (SSID will be generated during test). 14""" 15 16def 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 27parallel_simple(run, machines) 28