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

Side by Side Diff: net/cert/internal/verify_certificate_chain_unittest.cc

Issue 2233233002: Refactor some certificate verification tests in preparation to adding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@trust_anchor
Patch Set: moar Created 4 years, 4 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "net/cert/internal/verify_certificate_chain.h" 5 #include "net/cert/internal/verify_certificate_chain.h"
6 6
7 #include "net/cert/internal/signature_policy.h" 7 #include "net/cert/internal/signature_policy.h"
8 #include "net/cert/internal/trust_store.h" 8 #include "net/cert/internal/trust_store.h"
9 #include "net/cert/internal/verify_certificate_chain_typed_unittest.h" 9 #include "net/cert/internal/verify_certificate_chain_typed_unittest.h"
10 10
11 namespace net { 11 namespace net {
12 12
13 namespace { 13 namespace {
14 14
15 class VerifyCertificateChainDelegate { 15 class VerifyCertificateChainDelegate {
16 public: 16 public:
17 static void Verify(const ParsedCertificateList& chain, 17 static void Verify(const ParsedCertificateList& chain,
18 const TrustAnchors& anchors, 18 const scoped_refptr<TrustAnchor>& trust_anchor,
19 const der::GeneralizedTime& time, 19 const der::GeneralizedTime& time,
20 bool expected_result) { 20 bool expected_result) {
21 ASSERT_EQ(1U, anchors.size()); 21 ASSERT_TRUE(trust_anchor);
22 ASSERT_TRUE(anchors.front().get());
23 22
24 SimpleSignaturePolicy signature_policy(1024); 23 SimpleSignaturePolicy signature_policy(1024);
25 24
26 bool result = VerifyCertificateChain(chain, anchors.front().get(), 25 bool result = VerifyCertificateChain(chain, trust_anchor.get(),
27 &signature_policy, time); 26 &signature_policy, time);
28 27
29 ASSERT_EQ(expected_result, result); 28 ASSERT_EQ(expected_result, result);
30 } 29 }
31 }; 30 };
32 31
33 } // namespace 32 } // namespace
34 33
35 INSTANTIATE_TYPED_TEST_CASE_P(VerifyCertificateChain, 34 INSTANTIATE_TYPED_TEST_CASE_P(VerifyCertificateChain,
36 VerifyCertificateChainSingleRootTest, 35 VerifyCertificateChainSingleRootTest,
37 VerifyCertificateChainDelegate); 36 VerifyCertificateChainDelegate);
38 37
39 } // namespace net 38 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698