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

Side by Side Diff: chromeos/test/data/network/invalid_settings_with_repairs.json

Issue 759663004: ONC: add support for non-utf-8 SSIDs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
OLDNEW
1 { 1 {
2 "duplicate-network-guid": { 2 "duplicate-network-guid": {
3 "NetworkConfigurations": [ 3 "NetworkConfigurations": [
4 { 4 {
5 "GUID": "1", 5 "GUID": "1",
6 "Type": "WiFi", 6 "Type": "WiFi",
7 "Name": "My WiFi Network", 7 "Name": "My WiFi Network",
8 "WiFi": { 8 "WiFi": {
9 "Passphrase": "dummy", 9 "Passphrase": "dummy",
10 "SSID": "dummySSID", 10 "SSID": "dummySSID",
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 }, 151 },
152 "network-state-field": { 152 "network-state-field": {
153 "GUID": "guid", 153 "GUID": "guid",
154 "Type": "Ethernet", 154 "Type": "Ethernet",
155 "Name": "name", 155 "Name": "name",
156 "Ethernet": { 156 "Ethernet": {
157 "Authentication": "None" 157 "Authentication": "None"
158 }, 158 },
159 "ConnectionState": "NotConnected" 159 "ConnectionState": "NotConnected"
160 }, 160 },
161 "network-wifi-invalid-hexssid": {
162 "GUID": "guid",
163 "Type": "WiFi",
164 "Name": "name",
165 "WiFi": {
166 "Passphrase": "some passphrase",
167 "HexSSID": "notvalid",
pneubeck (no reviews) 2014/11/26 10:15:34 nit: notvalid -> invalidhex
cschuet (SLOW) 2014/11/27 11:03:58 Done.
168 "Security": "WPA-PSK"
169 }
170 },
171 "network-wifi-ssid-and-hexssid-inconsistent": {
172 "GUID": "guid",
173 "Type": "WiFi",
174 "Name": "name",
175 "WiFi": {
176 "Passphrase": "some passphrase",
177 "SSID": "ssid",
178 "HexSSID": "FFFFFF",
179 "Security": "WPA-PSK"
180 }
181 },
161 "network-unknown-value": { 182 "network-unknown-value": {
162 "GUID": "guid", 183 "GUID": "guid",
163 "Type": "LTE", 184 "Type": "LTE",
164 "Name": "name", 185 "Name": "name",
165 "Ethernet": { 186 "Ethernet": {
166 "Authentication": "None" 187 "Authentication": "None"
167 } 188 }
168 }, 189 },
169 "network-value-out-of-range": { 190 "network-value-out-of-range": {
170 "GUID": "guid", 191 "GUID": "guid",
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 "SSID": "ssid-wpa", 481 "SSID": "ssid-wpa",
461 "UnknownField1": "Value1", 482 "UnknownField1": "Value1",
462 "Security": "WPA-PSK" } 483 "Security": "WPA-PSK" }
463 } 484 }
464 ], 485 ],
465 "Certificates": [], 486 "Certificates": [],
466 "Type": "UnencryptedConfiguration", 487 "Type": "UnencryptedConfiguration",
467 "UnknownField3": [], 488 "UnknownField3": [],
468 } 489 }
469 } 490 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698