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

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

Issue 12390017: Separating ONC<->Shill translation from the ONC signature. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed browser tests. Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "managed-network-repaired": { 2 "managed-network-repaired": {
3 "Recommended": [], 3 "Recommended": [],
4 "GUID": "guid", 4 "GUID": "guid",
5 "Type": "Ethernet", 5 "Type": "Ethernet",
6 "Name": "name", 6 "Name": "name",
7 "Ethernet": { 7 "Ethernet": {
8 "Authentication": "None" 8 "Authentication": "None"
9 } 9 }
10 }, 10 },
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 }, 83 },
84 "network-unknown-fieldname": { 84 "network-unknown-fieldname": {
85 "GUID": "guid", 85 "GUID": "guid",
86 "abc": "def", 86 "abc": "def",
87 "Type": "Ethernet", 87 "Type": "Ethernet",
88 "Name": "name", 88 "Name": "name",
89 "Ethernet": { 89 "Ethernet": {
90 "Authentication": "None" 90 "Authentication": "None"
91 } 91 }
92 }, 92 },
93 "network-state-field": {
94 "GUID": "guid",
95 "Type": "Ethernet",
96 "Name": "name",
97 "Ethernet": {
98 "Authentication": "None"
99 },
100 "ConnectionState": "NotConnected"
101 },
93 "network-unknown-value": { 102 "network-unknown-value": {
94 "GUID": "guid", 103 "GUID": "guid",
95 "Type": "LTE", 104 "Type": "LTE",
96 "Name": "name", 105 "Name": "name",
97 "Ethernet": { 106 "Ethernet": {
98 "Authentication": "None" 107 "Authentication": "None"
99 } 108 }
100 }, 109 },
101 "network-value-out-of-range": { 110 "network-value-out-of-range": {
102 "GUID": "guid", 111 "GUID": "guid",
(...skipping 16 matching lines...) Expand all
119 "Authentication": 123 128 "Authentication": 123
120 } 129 }
121 }, 130 },
122 "network-missing-required": { 131 "network-missing-required": {
123 "Type": "Ethernet", 132 "Type": "Ethernet",
124 "Name": "name", 133 "Name": "name",
125 "Ethernet": { 134 "Ethernet": {
126 "Authentication": "None" 135 "Authentication": "None"
127 } 136 }
128 }, 137 },
138 "network-nested-state-field-repaired": {
139 "GUID": "guid",
140 "Type": "WiFi",
141 "Name": "name",
142 "WiFi": {
143 "Passphrase": "some passphrase",
144 "SSID": "ssid",
145 "Security": "WPA-PSK"
146 }
147 },
148 "network-nested-state-field": {
149 "GUID": "guid",
150 "Type": "WiFi",
151 "Name": "name",
152 "WiFi": {
153 "Passphrase": "some passphrase",
154 "SSID": "ssid",
155 "Security": "WPA-PSK",
156 "SignalStrength": 123
157 }
158 },
129 "network-with-illegal-recommended": { 159 "network-with-illegal-recommended": {
130 "GUID": "guid", 160 "GUID": "guid",
131 "Recommended": ["Name"], 161 "Recommended": ["Name"],
132 "Type": "Ethernet", 162 "Type": "Ethernet",
133 "Name": "name", 163 "Name": "name",
134 "Ethernet": { 164 "Ethernet": {
135 "Authentication": "None" 165 "Authentication": "None"
136 } 166 }
137 }, 167 },
138 "network-with-client-cert-pattern": { 168 "network-with-client-cert-pattern": {
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 "Type": "Authority", 266 "Type": "Authority",
237 "X509": "abc" }, 267 "X509": "abc" },
238 { "GUID": "2", 268 { "GUID": "2",
239 "Type": "Server", 269 "Type": "Server",
240 "X509": "abc" }, 270 "X509": "abc" },
241 { "GUID": "3", 271 { "GUID": "3",
242 "PKCS12": "abc" , 272 "PKCS12": "abc" ,
243 "Type": "Client" } ] 273 "Type": "Client" } ]
244 } 274 }
245 } 275 }
OLDNEW
« no previous file with comments | « chromeos/network/onc/onc_validator_unittest.cc ('k') | chromeos/test/data/network/shill_wifi_with_state.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698