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

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

Issue 61903002: ChromeOS: Add more host verification options for OpenVpn. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Made 'type' optional. More tests. Created 7 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
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 34c9ce195925cb2de9c26c032a14c51a8d8db21c..4f80434ba29fbc3e75b2e74364a58ec0dac94397 100644
--- a/chromeos/test/data/network/invalid_settings_with_repairs.json
+++ b/chromeos/test/data/network/invalid_settings_with_repairs.json
@@ -187,6 +187,36 @@
}
}
},
+ "openvpn-missing-verify-x509-name": {
+ "GUID": "guid",
+ "Type": "VPN",
+ "Name": "name",
+ "VPN": {
+ "Host": "host",
+ "Type": "OpenVPN",
+ "OpenVPN": {
+ "ClientCertType": "None",
+ "VerifyX509": {
+ "Type": "name"
+ }
+ }
+ }
+ },
+ "openvpn-invalid-verify-x509-type": {
+ "GUID": "guid",
+ "Type": "VPN",
+ "Name": "name",
+ "VPN": {
+ "Host": "host",
+ "Type": "OpenVPN",
+ "OpenVPN": {
+ "ClientCertType": "None",
+ "VerifyX509": {
+ "Type": "unknown type"
+ }
+ }
+ }
+ },
"toplevel-empty": {
"Type": "UnencryptedConfiguration",
"NetworkConfigurations": [ ]

Powered by Google App Engine
This is Rietveld 408576698