blob: ac6f50ac7ec2f0bf55d302d2c19ab8b4b418f786 [file] [log] [blame]
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
AUTHOR = 'timkovich'
TIME = 'SHORT'
NAME = 'policy_WiFiTypesServer.open'
TEST_TYPE = 'Server'
ATTRIBUTES = 'suite:ent-wificell'
DEPENDENCIES = 'wificell'
DOC = """
'policy_WiFiTypesServer.open' test configures an open network and runs the
client side 'policy_WiFiTypes' test that sets the user network policy and
attempts to connect.
"""
from autotest_lib.client.cros.enterprise.network_config import NetworkConfig
from autotest_lib.server.cros.network import hostap_config
def run(machine):
n_mode = hostap_config.HostapConfig.MODE_11N_MIXED
ap_config = hostap_config.HostapConfig(channel=6, mode=n_mode)
network = NetworkConfig()
host = hosts.create_host(machine)
job.run_test('policy_WiFiTypesServer',
raw_cmdline_args=args,
host=host,
ap_config=ap_config,
network=network)
parallel_simple(run, machines)