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

Unified Diff: server/site_tests/network_WiFiSecMat/000StaticKeyWEP40

Issue 669118: automated WiFi test framework and start of tests (Closed)
Patch Set: revert correctly Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: server/site_tests/network_WiFiSecMat/000StaticKeyWEP40
diff --git a/server/site_tests/network_WiFiSecMat/000StaticKeyWEP40 b/server/site_tests/network_WiFiSecMat/000StaticKeyWEP40
new file mode 100644
index 0000000000000000000000000000000000000000..aea544810fddc4541ce4dde6e6719801baeeecad
--- /dev/null
+++ b/server/site_tests/network_WiFiSecMat/000StaticKeyWEP40
@@ -0,0 +1,44 @@
+# 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.
+
+{ "name":"CheckStaticKey_WEP40",
+ "steps":[ # Channel [1,6,11]
+ [ "create", { "type":"hostap" } ],
+ [ "config", { "channel":"2412", "mode":"11g",
+# "authmode":"open", "wepmode":"on",
+ "wepmode":"on",
+ # 10 digits : 0123456789
+ "wep_key0": "0123456789",
+ "wep_key1": "89abcdef01",
+ "wep_key2": "9876543210",
+ "wep_key3": "fedcba9876"
+ }
+ ],
+
+ # key index 0, 40-bit WEP
+ [ "config", { "deftxkey":"0" } ],
+ [ "connect", { "security":"wep", "psk":"0:0123456789" } ],
+ [ "client_ping", { "count":"10" } ],
+ [ "deconfig" ],
+
+ # key index 1, 40-bit WEP
+ [ "config", { "deftxkey":"1" } ],
+ [ "connect", { "security":"wep", "psk":"1:89abcdef01" } ],
+ [ "client_ping", { "count":"10" } ],
+ [ "deconfig" ],
+
+ # key index 2, 40-bit WEP
+ [ "config", { "deftxkey":"2" } ],
+ [ "connect", { "security":"wep", "psk":"2:9876543210" } ],
+ [ "client_ping", { "count":"10" } ],
+ [ "deconfig" ],
+
+ # key index 3, 40-bit WEP
+ [ "config", { "deftxkey":"3" } ],
+ [ "connect", { "security":"wep", "psk":"3:fedcba9876" } ],
+ [ "client_ping", { "count":"10" } ],
+
+ [ "destroy" ],
+ ],
+}
« no previous file with comments | « server/site_tests/network_WiFiMatFunc/control ('k') | server/site_tests/network_WiFiSecMat/001StaticKeyWEP104 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698