• 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_matfunc, suite:wifi_release, subsystem:wifi')
10DEPENDENCIES = 'wificell'
11
12DOC = """
13This test attempts to verify that we can connect to a hidden network on both
142.4 and 5 Ghz channels.
15"""
16
17import copy
18
19from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
20from autotest_lib.server.cros.network import hostap_config
21
22
23def run(machine):
24    g = hostap_config.HostapConfig.MODE_11G
25    n = hostap_config.HostapConfig.MODE_11N_PURE
26    assoc_params = xmlrpc_datatypes.AssociationParameters()
27    assoc_params.is_hidden = True
28    configurations = [
29            (hostap_config.HostapConfig(channel=6, mode=g, hide_ssid=True),
30             copy.copy(assoc_params)),
31            (hostap_config.HostapConfig(channel=36, mode=n, hide_ssid=True),
32             copy.copy(assoc_params)),
33            (hostap_config.HostapConfig(channel=48, mode=n, hide_ssid=True),
34             copy.copy(assoc_params))]
35
36    host = hosts.create_host(machine)
37    job.run_test('network_WiFi_SimpleConnect',
38                 tag=NAME.split('.')[1],
39                 host=host,
40                 raw_cmdline_args=args,
41                 additional_params=configurations)
42
43
44parallel_simple(run, machines)
45