Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: server/site_tests/network_WiFiManager/040MutiAuth

Issue 6905170: Add test to select between identical SSID/different Auth (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | server/site_wlan_connect.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2010 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 # This test run is designed to check that we can successfully select
6 # between two networks with identical SSIDs that have different
7 # security parameters.
8 { "name":"MultiAuth",
9 "steps":[
10 [ "create", { "type":"hostap" } ],
11
12 # Create an AP with no security
13 [ "config", { "channel":"2412", "mode":"11g", "pureg":None } ],
14
15 # Create a second AP with the same SSID that requres WPA authentication
16 [ "config", { "channel":"5240", "ht40-":None, "puren":None,
17 "multi_interface":None,
18 "wpa":"1", "wpa_key_mgmt":"WPA-PSK",
19 "wpa_pairwise":"CCMP",
20 "wpa_passphrase":"chromeos" } ],
21
22 # Connect to the first non-WPA AP.
23 [ "connect", { "security":"none" } ],
24 [ "client_ping", { "count":"10" } ],
25
26 # Connect to the WPA AP.
27 [ "connect", { "security":"wpa", "psk":"chromeos" } ],
28 [ "client_ping", { "count":"10" } ],
29
30 [ "destroy" ],
31 ],
32 }
OLDNEW
« no previous file with comments | « no previous file | server/site_wlan_connect.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698