Add git cl format presubmit warning for extension and apps.
[chromium-blink-merge.git] / chromeos / test / data / network / network_configs_with_resolved_certs.json
blob7e7a367f12eb2d56d00775f62b1cc2226543983f
2   "OpenVPN with CARefs": {
3     "WithCertRefs": [ {
4         "Type": "VPN",
5         "VPN": {
6           "Type": "OpenVPN",
7           "OpenVPN": {
8             "PushPeerInfo": true,
9             "ServerCARefs": [ "cert_google", "cert_webkit" ]
10           }
11         },
12       } ],
13     "WithResolvedRefs": [ {
14         "Type": "VPN",
15         "VPN": {
16           "Type": "OpenVPN",
17           "OpenVPN": {
18             "PushPeerInfo": true,
19             "ServerCAPEMs":  [ "pem_google", "pem_webkit" ]
20           }
21         },
22       } ]
23   },
24   "OpenVPN with CARefs and CARef": {
25     "WithCertRefs": [ {
26         "Type": "VPN",
27         "VPN": {
28           "Type": "OpenVPN",
29           "OpenVPN": {
30             "PushPeerInfo": true,
31             "ServerCARef": "cert_google",
32             "ServerCARefs": [ "cert_google", "cert_webkit" ]
33           }
34         },
35       } ],
36     "WithResolvedRefs": [ {
37         "Type": "VPN",
38         "VPN": {
39           "Type": "OpenVPN",
40           "OpenVPN": {
41             "PushPeerInfo": true,
42             "ServerCAPEMs":  [ "pem_google", "pem_webkit" ]
43           }
44         },
45       } ]
46   },
47   "EAP with CARefs": {
48     "WithCertRefs": 
49     [ { "WiFi": {
50           "EAP": {
51             "ServerCARefs": [ "cert_google", "cert_webkit" ]
52           }
53         }
54       }
55     ],
56     "WithResolvedRefs": 
57     [ { "WiFi": {
58           "EAP": {
59             "ServerCAPEMs": [ "pem_google", "pem_webkit" ]
60           }
61         }
62       }
63     ]
64   },
65   "L2TP with CARefs": {
66     "WithCertRefs": 
67     [ { "VPN": {
68           "IPsec": {
69             "SaveCredentials": true,
70             "ServerCARefs": [ "cert_google", "cert_webkit" ]
71           }
72         }
73       }
74     ],
75     "WithResolvedRefs": 
76     [ { "VPN": {
77           "IPsec": {
78             "SaveCredentials": true,
79             "ServerCAPEMs": [ "pem_google", "pem_webkit" ]
80           }
81         }
82       }
83     ]
84   },
85   "OpenVPN with ServerCARef and IssuerCARef": {
86     "WithCertRefs": [
87       {
88         "GUID": "{a3860e83-f03d-4cb1-bafa-789oij}",
89         "Type": "VPN",
90         "VPN": {
91           "Type": "OpenVPN",
92           "OpenVPN": {
93             "PushPeerInfo": true,
94             "Recommended" : [ "Username", "Password" ],
95             "RemoteCertEKU": "TLS Web Server Authentication",
96             "ServerCARef": "cert_google",
97             "ClientCertType": "Pattern",
98             "ClientCertPattern": {
99               "IssuerCARef": [
100                 "cert_google",
101                 "cert_webkit"
102               ],
103             }
104           }
105         },
106         "ProxySettings": {
107           "Type": "PAC",
108           "PAC": "http://proxycfg.my.domain/proxy.dat"
109         }
110       } ],
111     "WithResolvedRefs": [
112       {
113         "GUID": "{a3860e83-f03d-4cb1-bafa-789oij}",
114         "Type": "VPN",
115         "VPN": {
116           "Type": "OpenVPN",
117           "OpenVPN": {
118             "PushPeerInfo": true,
119             "Recommended" : [ "Username", "Password" ],
120             "RemoteCertEKU": "TLS Web Server Authentication",
121             "ServerCAPEMs":  [ "pem_google" ],
122             "ClientCertType": "Pattern",
123             "ClientCertPattern": {
124               "IssuerCAPEMs": [
125                 "pem_google",
126                 "pem_webkit"
127               ],
128             }
129           }
130         },
131         "ProxySettings": {
132           "Type": "PAC",
133           "PAC": "http://proxycfg.my.domain/proxy.dat"
134         }
135       } ]
136   },
137   "EAP with and L2TP without ref": {
138     "WithCertRefs": 
139     [ { "WiFi": {
140           "EAP": {
141             "ServerCARef": "cert_google",
142             "ClientCertType": "Pattern",
143             "ClientCertPattern": {
144               "EnrollmentURI": [
145                 "http://youtu.be/dQw4w9WgXcQ",
146                 "chrome-extension://abc/keygen-cert.html"
147               ]
148             }
149           }
150         }
151       },
152       { "VPN": {
153           "IPsec": {
154             "SaveCredentials": true
155           }
156         }
157       }
158     ],
159     "WithResolvedRefs": 
160     [ { "WiFi": {
161           "EAP": {
162             "ServerCAPEMs": [ 
163               "pem_google"
164             ],
165             "ClientCertType": "Pattern",
166             "ClientCertPattern": {
167               "EnrollmentURI": [
168                 "http://youtu.be/dQw4w9WgXcQ",
169                 "chrome-extension://abc/keygen-cert.html"
170               ]
171             }
172           }
173         }
174       },
175       { "VPN": {
176           "IPsec": {
177             "SaveCredentials": true
178           }
179         }
180       }
181     ]
182   },
183   "L2TP and EAP with unknown ref": {
184     "WithCertRefs": 
185     [ { "WiFi": {
186           "EAP": {
187             "ServerCARef": "cert_unknown",
188             "ClientCertType": "Pattern",
189             "ClientCertPattern": {
190               "EnrollmentURI": [
191                 "http://youtu.be/dQw4w9WgXcQ",
192                 "chrome-extension://abc/keygen-cert.html"
193               ]
194             }
195           }
196         }
197       },
198       { "VPN": {
199           "IPsec": {
200             "SaveCredentials": true,
201             "ServerCARef": "cert_google"
202           }
203         }
204       }
205     ],
206     "WithResolvedRefs": 
207     [ { "VPN": {
208           "IPsec": {
209             "SaveCredentials": true,
210             "ServerCAPEMs": [ 
211               "pem_google"
212             ]
213           }
214         }
215       }
216     ]
217   }