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

Unified Diff: chrome/test/data/chromeos/network_settings/invalid_settings_with_repairs.json

Issue 10944009: Implementation of ONC signature, validator and normalizer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@gperffix
Patch Set: Addressed remaining nits. Created 8 years, 1 month 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/chromeos/network_settings/policy.onc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/chromeos/network_settings/invalid_settings_with_repairs.json
diff --git a/chrome/test/data/chromeos/network_settings/invalid_settings_with_repairs.json b/chrome/test/data/chromeos/network_settings/invalid_settings_with_repairs.json
new file mode 100644
index 0000000000000000000000000000000000000000..34f521fa10be4f4aa5760d7b5aede00bbd403737
--- /dev/null
+++ b/chrome/test/data/chromeos/network_settings/invalid_settings_with_repairs.json
@@ -0,0 +1,92 @@
+{
+ "managed-network-repaired": {
+ "Recommended": [],
+ "GUID": "guid",
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "managed-network-unknown-fieldname": {
+ "abc": "def",
+ "Recommended": [],
+ "GUID": "guid",
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "managed-network-unknown-type": {
+ "GUID": "guid",
+ "Type": "LTE",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "managed-network-unknown-recommended": {
+ "Recommended": ["abc"],
+ "GUID": "guid",
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "managed-network-dict-recommended": {
+ "Recommended": ["Ethernet"],
+ "GUID": "guid",
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "managed-network-missing-required": {
+ "Recommended": [],
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "network-repaired": {
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "network-unknown-fieldname": {
+ "abc": "def",
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "network-unknown-type": {
+ "Type": "LTE",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "network-missing-required": {
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+ "network-illegal-recommended": {
+ "Recommended": [],
+ "Type": "Ethernet",
+ "Name": "name",
+ "Ethernet": {
+ "Authentication": "None"
+ }
+ },
+}
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/chromeos/network_settings/policy.onc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698