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