OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/policy/policy_cert_verifier.h" | 5 #include "chrome/browser/chromeos/policy/policy_cert_verifier.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
| 8 #include <string> |
8 | 9 |
9 #include "base/bind.h" | 10 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
11 #include "base/callback.h" | 12 #include "base/callback.h" |
12 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
13 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
14 #include "base/threading/thread_task_runner_handle.h" | 15 #include "base/threading/thread_task_runner_handle.h" |
15 #include "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h" | 16 #include "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h" |
16 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
17 #include "content/public/test/test_browser_thread_bundle.h" | 18 #include "content/public/test/test_browser_thread_bundle.h" |
18 #include "crypto/nss_util_internal.h" | 19 #include "crypto/nss_util_internal.h" |
19 #include "crypto/scoped_test_nss_chromeos_user.h" | 20 #include "crypto/scoped_test_nss_chromeos_user.h" |
20 #include "net/base/test_completion_callback.h" | 21 #include "net/base/test_completion_callback.h" |
21 #include "net/cert/cert_verify_result.h" | 22 #include "net/cert/cert_verify_result.h" |
22 #include "net/cert/nss_cert_database_chromeos.h" | 23 #include "net/cert/nss_cert_database_chromeos.h" |
23 #include "net/cert/x509_certificate.h" | 24 #include "net/cert/x509_certificate.h" |
24 #include "net/log/net_log.h" | 25 #include "net/log/net_log_with_source.h" |
25 #include "net/test/cert_test_util.h" | 26 #include "net/test/cert_test_util.h" |
26 #include "net/test/test_data_directory.h" | 27 #include "net/test/test_data_directory.h" |
27 #include "testing/gtest/include/gtest/gtest.h" | 28 #include "testing/gtest/include/gtest/gtest.h" |
28 | 29 |
29 namespace policy { | 30 namespace policy { |
30 | 31 |
31 class PolicyCertVerifierTest : public testing::Test { | 32 class PolicyCertVerifierTest : public testing::Test { |
32 public: | 33 public: |
33 PolicyCertVerifierTest() | 34 PolicyCertVerifierTest() |
34 : trust_anchor_used_(false), test_nss_user_("user1") {} | 35 : trust_anchor_used_(false), test_nss_user_("user1") {} |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 int error = VerifyTestServerCert(callback, &verify_result, &request); | 228 int error = VerifyTestServerCert(callback, &verify_result, &request); |
228 // Note: this hits the cached result from the first Verify() in this test. | 229 // Note: this hits the cached result from the first Verify() in this test. |
229 EXPECT_EQ(net::ERR_CERT_AUTHORITY_INVALID, error); | 230 EXPECT_EQ(net::ERR_CERT_AUTHORITY_INVALID, error); |
230 } | 231 } |
231 // The additional trust anchors were reset, thus |cert_verifier_| should not | 232 // The additional trust anchors were reset, thus |cert_verifier_| should not |
232 // signal it's usage anymore. | 233 // signal it's usage anymore. |
233 EXPECT_FALSE(WasTrustAnchorUsedAndReset()); | 234 EXPECT_FALSE(WasTrustAnchorUsedAndReset()); |
234 } | 235 } |
235 | 236 |
236 } // namespace policy | 237 } // namespace policy |
OLD | NEW |