| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/cros/onc_network_parser.h" | 5 #include "chrome/browser/chromeos/cros/onc_network_parser.h" |
| 6 | 6 |
| 7 #include <cert.h> | 7 #include <cert.h> |
| 8 #include <keyhi.h> | 8 #include <keyhi.h> |
| 9 #include <pk11pub.h> | 9 #include <pk11pub.h> |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "chrome/test/base/testing_browser_process.h" | 26 #include "chrome/test/base/testing_browser_process.h" |
| 27 #include "chrome/test/base/testing_pref_service.h" | 27 #include "chrome/test/base/testing_pref_service.h" |
| 28 #include "chromeos/dbus/dbus_thread_manager.h" | 28 #include "chromeos/dbus/dbus_thread_manager.h" |
| 29 #include "content/test/test_browser_thread.h" | 29 #include "content/test/test_browser_thread.h" |
| 30 #include "crypto/nss_util.h" | 30 #include "crypto/nss_util.h" |
| 31 #include "net/base/cert_database.h" | 31 #include "net/base/cert_database.h" |
| 32 #include "net/base/cert_type.h" | 32 #include "net/base/cert_type.h" |
| 33 #include "net/base/crypto_module.h" | 33 #include "net/base/crypto_module.h" |
| 34 #include "net/base/x509_certificate.h" | 34 #include "net/base/x509_certificate.h" |
| 35 #include "net/proxy/proxy_config.h" | 35 #include "net/proxy/proxy_config.h" |
| 36 #include "net/third_party/mozilla_security_manager/nsNSSCertTrust.h" | |
| 37 #include "testing/gtest/include/gtest/gtest.h" | 36 #include "testing/gtest/include/gtest/gtest.h" |
| 38 #include "third_party/cros_system_api/dbus/service_constants.h" | 37 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 39 | 38 |
| 40 using ::testing::AnyNumber; | 39 using ::testing::AnyNumber; |
| 41 using ::testing::Return; | 40 using ::testing::Return; |
| 42 | 41 |
| 43 namespace msm = mozilla_security_manager; | |
| 44 namespace chromeos { | 42 namespace chromeos { |
| 45 | 43 |
| 46 namespace { | 44 namespace { |
| 47 | 45 |
| 48 const char g_token_name[] = "OncNetworkParserTest token"; | 46 const char g_token_name[] = "OncNetworkParserTest token"; |
| 49 | 47 |
| 50 net::CertType GetCertType(const net::X509Certificate* cert) { | 48 net::CertType GetCertType(const net::X509Certificate* cert) { |
| 51 DCHECK(cert); | 49 DCHECK(cert); |
| 52 return x509_certificate_model::GetType(cert->os_cert_handle()); | 50 return x509_certificate_model::GetType(cert->os_cert_handle()); |
| 53 } | 51 } |
| (...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 | 934 |
| 937 EXPECT_EQ("a onc b", | 935 EXPECT_EQ("a onc b", |
| 938 chromeos::OncNetworkParser::GetUserExpandedValue( | 936 chromeos::OncNetworkParser::GetUserExpandedValue( |
| 939 login_id_pattern, source)); | 937 login_id_pattern, source)); |
| 940 EXPECT_EQ("a onc@example.com b", | 938 EXPECT_EQ("a onc@example.com b", |
| 941 chromeos::OncNetworkParser::GetUserExpandedValue( | 939 chromeos::OncNetworkParser::GetUserExpandedValue( |
| 942 login_email_pattern, source)); | 940 login_email_pattern, source)); |
| 943 } | 941 } |
| 944 | 942 |
| 945 } // namespace chromeos | 943 } // namespace chromeos |
| OLD | NEW |