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_matfunc, suite:wifi_release, subsystem:wifi')
     10 DEPENDENCIES = 'wificell'
     11 
     12 DOC = """
     13 This test attempts to verify that we can connect to a hidden network on both
     14 2.4 and 5 Ghz channels.
     15 """
     16 
     17 import copy
     18 
     19 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
     20 from autotest_lib.server.cros.network import hostap_config
     21 
     22 
     23 def 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 
     44 parallel_simple(run, machines)
     45