Home | History | Annotate | Download | only in network_WiFi_SimpleConnect
      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 
      5 AUTHOR = 'wiley, pstew, quiche'
      6 NAME = 'network_WiFi_SimpleConnect.wifi_checkHidden'
      7 TIME = 'SHORT'
      8 TEST_TYPE = 'Server'
      9 ATTRIBUTES = ('suite:wifi_correctness_cros_core, suite:wifi_matfunc, '
     10               'suite:wifi_matfunc_bcm4371, suite:wifi_release, subsystem:wifi,'
     11               'suite:android_wifi_connect')
     12 DEPENDENCIES = 'wificell'
     13 
     14 DOC = """
     15 This test attempts to verify that we can connect to a hidden network on both
     16 2.4 and 5 Ghz channels.
     17 """
     18 
     19 import copy
     20 
     21 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
     22 from autotest_lib.server.cros.network import hostap_config
     23 
     24 
     25 def 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 
     46 parallel_simple(run, machines)
     47