• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2013 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 = 'wiley, pstew, quiche'
6NAME = 'network_WiFi_SimpleConnect.wifi_checkHidden'
7TIME = 'SHORT'
8TEST_TYPE = 'Server'
9ATTRIBUTES = ('suite:wifi_correctness_cros_core, suite:wifi_matfunc, '
10              'suite:wifi_matfunc_bcm4371, suite:wifi_release, subsystem:wifi,'
11              'suite:android_wifi_connect')
12DEPENDENCIES = 'wificell'
13
14DOC = """
15This test attempts to verify that we can connect to a hidden network on both
162.4 and 5 Ghz channels.
17"""
18
19import copy
20
21from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
22from autotest_lib.server.cros.network import hostap_config
23
24
25def run(machine):
26    g = hostap_config.HostapConfig.MODE_11G
27    n = hostap_config.HostapConfig.MODE_11N_PURE
28    assoc_params = xmlrpc_datatypes.AssociationParameters()
29    assoc_params.is_hidden = True
30    configurations = [
31            (hostap_config.HostapConfig(channel=6, mode=g, hide_ssid=True),
32             copy.copy(assoc_params)),
33            (hostap_config.HostapConfig(channel=36, mode=n, hide_ssid=True),
34             copy.copy(assoc_params)),
35            (hostap_config.HostapConfig(channel=48, mode=n, hide_ssid=True),
36             copy.copy(assoc_params))]
37
38    host = hosts.create_host(machine)
39    job.run_test('network_WiFi_SimpleConnect',
40                 tag=NAME.split('.')[1],
41                 host=host,
42                 raw_cmdline_args=args,
43                 additional_params=configurations)
44
45
46parallel_simple(run, machines)
47