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

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

Issue 2859123003: Don't reject server and CA certs during device ONC validation (Closed)
Patch Set: Addressed comments. Created 3 years, 7 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
OLDNEW
1 { 1 {
2 "global-disabled-technologies": { 2 "global-disabled-technologies": {
3 "DisableNetworkTypes": ["WiMAX"] 3 "DisableNetworkTypes": ["WiMAX"]
4 }, 4 },
5 "duplicate-network-guid": { 5 "duplicate-network-guid": {
6 "NetworkConfigurations": [ 6 "NetworkConfigurations": [
7 { 7 {
8 "GUID": "1", 8 "GUID": "1",
9 "Type": "WiFi", 9 "Type": "WiFi",
10 "Name": "My WiFi Network", 10 "Name": "My WiFi Network",
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 }, 527 },
528 { "GUID": "guid", 528 { "GUID": "guid",
529 "Type": "Ethernet", 529 "Type": "Ethernet",
530 "Name": "eth0", 530 "Name": "eth0",
531 "Ethernet": { 531 "Ethernet": {
532 "Authentication": "None" 532 "Authentication": "None"
533 } 533 }
534 } 534 }
535 ] 535 ]
536 }, 536 },
537 "toplevel-server-and-ca-cert-dropped": {
538 "Type": "UnencryptedConfiguration",
539 "Certificates":
540 [ { "GUID": "3",
541 "PKCS12": "abc" ,
542 "Type": "Client" } ]
543 },
544 "toplevel-with-server-and-ca-cert": {
545 "Type": "UnencryptedConfiguration",
546 "Certificates":
547 [ { "TrustBits": ["Web"],
548 "GUID": "1",
549 "Type": "Authority",
550 "X509": "abc" },
551 { "GUID": "2",
552 "Type": "Server",
553 "X509": "abc" },
554 { "GUID": "3",
555 "PKCS12": "abc" ,
556 "Type": "Client" } ]
557 },
558 "toplevel-with-repaired-networks": { 537 "toplevel-with-repaired-networks": {
559 "NetworkConfigurations": 538 "NetworkConfigurations":
560 [ { "GUID": "{485d6076-dd44-6b6d-69787465725f5045}", 539 [ { "GUID": "{485d6076-dd44-6b6d-69787465725f5045}",
561 "Type": "WiFi", 540 "Type": "WiFi",
562 "Name": "My WiFi Network", 541 "Name": "My WiFi Network",
563 "WiFi": { 542 "WiFi": {
564 "SSID": "ssid-none", 543 "SSID": "ssid-none",
565 "Security": "None" } 544 "Security": "None" }
566 }, 545 },
567 { "GUID": "{485d6076-dd44-6b6d-69787465725f5046}", 546 { "GUID": "{485d6076-dd44-6b6d-69787465725f5046}",
(...skipping 28 matching lines...) Expand all
596 "SSID": "ssid-wpa", 575 "SSID": "ssid-wpa",
597 "UnknownField1": "Value1", 576 "UnknownField1": "Value1",
598 "Security": "WPA-PSK" } 577 "Security": "WPA-PSK" }
599 } 578 }
600 ], 579 ],
601 "Certificates": [], 580 "Certificates": [],
602 "Type": "UnencryptedConfiguration", 581 "Type": "UnencryptedConfiguration",
603 "UnknownField3": [], 582 "UnknownField3": [],
604 } 583 }
605 } 584 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698