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

Unified Diff: chromeos/test/data/network/invalid_settings_with_repairs.json

Issue 166903002: Identify and repair ONC files with duplicate GUIDs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Issue_23567011
Patch Set: Identify and repair ONC files with duplicate GUIDs Created 6 years, 10 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: chromeos/test/data/network/invalid_settings_with_repairs.json
diff --git a/chromeos/test/data/network/invalid_settings_with_repairs.json b/chromeos/test/data/network/invalid_settings_with_repairs.json
index fbe6ada38f8a1f23f41c9749e72f8c609a6ec5f4..9590233aae288e7696263ac3654a91d295267f69 100644
--- a/chromeos/test/data/network/invalid_settings_with_repairs.json
+++ b/chromeos/test/data/network/invalid_settings_with_repairs.json
@@ -1,4 +1,63 @@
{
+ "duplicate-network-guid": {
+ "NetworkConfigurations": [
+ {
+ "GUID": "1",
+ "Type": "WiFi",
+ "Name": "My WiFi Network",
+ "WiFi": {
+ "Passphrase": "chromeos",
+ "SSID": "CrOS_WPA_DlinkN150",
pneubeck (no reviews) 2014/02/17 16:07:40 as discussed please also change the SSIDs/passphra
+ "Security": "WPA-PSK"
+ }
+ },
+ {
+ "GUID": "1",
+ "Type": "WiFi",
+ "Name": "My WiFi Network",
+ "WiFi": {
+ "Passphrase": "chromeos",
+ "SSID": "CrOS_WPA2_trendnet_tew639_gr",
+ "Security": "WPA-PSK"
+ }
+ }
+ ],
+ "Type": "UnencryptedConfiguration"
+ },
+ "repaired-duplicate-network-guid": {
+ "NetworkConfigurations": [
+ {
+ "GUID": "1",
+ "Type": "WiFi",
+ "Name": "My WiFi Network",
+ "WiFi": {
+ "Passphrase": "chromeos",
+ "SSID": "CrOS_WPA_DlinkN150",
+ "Security": "WPA-PSK"
+ }
+ }
+ ],
+ "Type": "UnencryptedConfiguration"
+ },
+ "duplicate-cert-guid": {
+ "Type": "UnencryptedConfiguration",
+ "Certificates": [
+ { "GUID": "2",
+ "Type": "Server",
+ "X509": "abc" },
+ { "GUID": "2",
+ "PKCS12": "abc" ,
+ "Type": "Client" }
+ ]
+ },
+ "repaired-duplicate-cert-guid": {
+ "Type": "UnencryptedConfiguration",
+ "Certificates": [
+ { "GUID": "2",
+ "Type": "Server",
+ "X509": "abc" }
+ ]
+ },
"managed-network-repaired": {
"Recommended": [],
"GUID": "guid",
@@ -181,7 +240,7 @@
"{58ac1967-a0e7-49e9-be68-123abc}"
],
"EnrollmentURI": [
- "chrome-extension://delkjfjibodjclmdijflfnimdmgdagfk/generate-cert.html"
+ "chrome-extension://delkjfjibodjclmdijflfnimdmgdagfk/generate-cert.html"
]
}
}
« chromeos/network/onc/onc_validator.cc ('K') | « chromeos/network/onc/onc_validator_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698