blob: e1ce4b78c09a29f28207a520a4bc828fd9c0dcf2 [file] [log] [blame]
# Copyright (c) 2010 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.
# Purpose: This test verifies that DUT can connect to a hidden 802.11 network
# on both 2.4GHz and 5GHz channels.
{ "name":"CheckHiddenSSID",
"steps":[ # Channel 6, 48, 36
[ "create", { "type":"hostap" } ],
# 'hidessid' instructs the AP to send empty (length=0) SSID in beacon and to
# ignore probe request for broadcast SSID.
[ "config", { "channel":"2437", "mode":"11g", "hidessid":None,
"ssid_suffix": "ch6" } ],
[ "connect", { "security":"none", "hidden":True } ],
[ "client_ping", { "count":"10" } ],
[ "disconnect" ],
[ "deconfig" ],
[ "config", { "channel":"5745", "mode":"11a", "hidessid":None,
"ssid_suffix": "ch48" } ],
[ "connect", { "security":"none", "hidden":True } ],
[ "client_ping", { "count":"10" } ],
[ "disconnect" ],
[ "deconfig" ],
[ "config", { "channel":"5180", "mode":"11a", "hidessid":None,
"ssid_suffix": "ch36" } ],
[ "connect", { "security":"none", "hidden":True } ],
[ "client_ping", { "count":"10" } ],
[ "disconnect" ],
[ "destroy" ],
],
}