blob: 20efce9057d9ccaade9c897593261877a4721e8c [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2012 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
Bruno Rocha7f9aea22011-09-12 14:31:24 -070016
Alex Deymo14c0da82016-07-20 16:45:45 -070017#include "update_engine/certificate_checker.h"
Alex Deymo8427b4a2014-11-05 14:00:32 -080018
Bruno Rocha7f9aea22011-09-12 14:31:24 -070019#include <string>
20
Alex Vakulenko75039d72014-03-25 12:36:28 -070021#include <base/strings/string_util.h>
22#include <base/strings/stringprintf.h>
Bruno Rocha7f9aea22011-09-12 14:31:24 -070023#include <gmock/gmock.h>
24#include <gtest/gtest.h>
Bruno Rocha7f9aea22011-09-12 14:31:24 -070025
Alex Deymo39910dc2015-11-09 17:04:30 -080026#include "update_engine/common/constants.h"
Alex Deymo39910dc2015-11-09 17:04:30 -080027#include "update_engine/common/mock_prefs.h"
Alex Deymo14c0da82016-07-20 16:45:45 -070028#include "update_engine/mock_certificate_checker.h"
Bruno Rocha7f9aea22011-09-12 14:31:24 -070029
Bruno Rocha7f9aea22011-09-12 14:31:24 -070030using ::testing::DoAll;
31using ::testing::Return;
32using ::testing::SetArgumentPointee;
33using ::testing::SetArrayArgument;
Alex Deymof329b932014-10-30 01:37:48 -070034using ::testing::_;
Bruno Rocha7f9aea22011-09-12 14:31:24 -070035using std::string;
36
37namespace chromeos_update_engine {
38
Alex Deymoc1c17b42015-11-23 03:53:15 -030039class MockCertificateCheckObserver : public CertificateChecker::Observer {
Bruno Rocha7f9aea22011-09-12 14:31:24 -070040 public:
Alex Deymoc1c17b42015-11-23 03:53:15 -030041 MOCK_METHOD2(CertificateChecked,
42 void(ServerToCheck server_to_check,
43 CertificateCheckResult result));
44};
Bruno Rocha7f9aea22011-09-12 14:31:24 -070045
Alex Deymoc1c17b42015-11-23 03:53:15 -030046class CertificateCheckerTest : public testing::Test {
Bruno Rocha7f9aea22011-09-12 14:31:24 -070047 protected:
Alex Deymo610277e2014-11-11 21:18:11 -080048 void SetUp() override {
Alex Vakulenko75039d72014-03-25 12:36:28 -070049 cert_key_ = base::StringPrintf("%s-%d-%d",
50 cert_key_prefix_.c_str(),
Alex Deymoc1c17b42015-11-23 03:53:15 -030051 static_cast<int>(server_to_check_),
Alex Vakulenko75039d72014-03-25 12:36:28 -070052 depth_);
Alex Deymo33e91e72015-12-01 18:26:08 -030053 cert_checker.Init();
Alex Deymoc1c17b42015-11-23 03:53:15 -030054 cert_checker.SetObserver(&observer_);
Bruno Rocha7f9aea22011-09-12 14:31:24 -070055 }
56
Alex Deymoc1c17b42015-11-23 03:53:15 -030057 void TearDown() override {
58 cert_checker.SetObserver(nullptr);
59 }
Bruno Rocha7f9aea22011-09-12 14:31:24 -070060
Alex Deymoc1c17b42015-11-23 03:53:15 -030061 MockPrefs prefs_;
Alex Deymo8427b4a2014-11-05 14:00:32 -080062 MockOpenSSLWrapper openssl_wrapper_;
Bruno Rocha7f9aea22011-09-12 14:31:24 -070063 // Parameters of our mock certificate digest.
Alex Deymoc1c17b42015-11-23 03:53:15 -030064 int depth_{0};
65 unsigned int length_{4};
66 uint8_t digest_[4]{0x17, 0x7D, 0x07, 0x5F};
67 string digest_hex_{"177D075F"};
68 string diff_digest_hex_{"1234ABCD"};
69 string cert_key_prefix_{kPrefsUpdateServerCertificate};
70 ServerToCheck server_to_check_{ServerToCheck::kUpdate};
Bruno Rocha7f9aea22011-09-12 14:31:24 -070071 string cert_key_;
Alex Deymoc1c17b42015-11-23 03:53:15 -030072
73 testing::StrictMock<MockCertificateCheckObserver> observer_;
Alex Deymo33e91e72015-12-01 18:26:08 -030074 CertificateChecker cert_checker{&prefs_, &openssl_wrapper_};
Bruno Rocha7f9aea22011-09-12 14:31:24 -070075};
76
77// check certificate change, new
78TEST_F(CertificateCheckerTest, NewCertificate) {
Alex Vakulenko88b591f2014-08-28 16:48:57 -070079 EXPECT_CALL(openssl_wrapper_, GetCertificateDigest(nullptr, _, _, _))
Bruno Rocha7f9aea22011-09-12 14:31:24 -070080 .WillOnce(DoAll(
81 SetArgumentPointee<1>(depth_),
82 SetArgumentPointee<2>(length_),
83 SetArrayArgument<3>(digest_, digest_ + 4),
84 Return(true)));
Alex Deymoc1c17b42015-11-23 03:53:15 -030085 EXPECT_CALL(prefs_, GetString(cert_key_, _)).WillOnce(Return(false));
86 EXPECT_CALL(prefs_, SetString(cert_key_, digest_hex_)).WillOnce(Return(true));
87 EXPECT_CALL(observer_,
88 CertificateChecked(server_to_check_,
89 CertificateCheckResult::kValid));
Alex Deymo33e91e72015-12-01 18:26:08 -030090 ASSERT_TRUE(
91 cert_checker.CheckCertificateChange(1, nullptr, server_to_check_));
Bruno Rocha7f9aea22011-09-12 14:31:24 -070092}
93
94// check certificate change, unchanged
95TEST_F(CertificateCheckerTest, SameCertificate) {
Alex Vakulenko88b591f2014-08-28 16:48:57 -070096 EXPECT_CALL(openssl_wrapper_, GetCertificateDigest(nullptr, _, _, _))
Bruno Rocha7f9aea22011-09-12 14:31:24 -070097 .WillOnce(DoAll(
98 SetArgumentPointee<1>(depth_),
99 SetArgumentPointee<2>(length_),
100 SetArrayArgument<3>(digest_, digest_ + 4),
101 Return(true)));
Alex Deymoc1c17b42015-11-23 03:53:15 -0300102 EXPECT_CALL(prefs_, GetString(cert_key_, _))
103 .WillOnce(DoAll(SetArgumentPointee<1>(digest_hex_), Return(true)));
104 EXPECT_CALL(prefs_, SetString(_, _)).Times(0);
105 EXPECT_CALL(observer_,
106 CertificateChecked(server_to_check_,
107 CertificateCheckResult::kValid));
Alex Deymo33e91e72015-12-01 18:26:08 -0300108 ASSERT_TRUE(
109 cert_checker.CheckCertificateChange(1, nullptr, server_to_check_));
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700110}
111
112// check certificate change, changed
113TEST_F(CertificateCheckerTest, ChangedCertificate) {
Alex Vakulenko88b591f2014-08-28 16:48:57 -0700114 EXPECT_CALL(openssl_wrapper_, GetCertificateDigest(nullptr, _, _, _))
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700115 .WillOnce(DoAll(
116 SetArgumentPointee<1>(depth_),
117 SetArgumentPointee<2>(length_),
118 SetArrayArgument<3>(digest_, digest_ + 4),
119 Return(true)));
Alex Deymoc1c17b42015-11-23 03:53:15 -0300120 EXPECT_CALL(prefs_, GetString(cert_key_, _))
121 .WillOnce(DoAll(SetArgumentPointee<1>(diff_digest_hex_), Return(true)));
122 EXPECT_CALL(observer_,
123 CertificateChecked(server_to_check_,
124 CertificateCheckResult::kValidChanged));
125 EXPECT_CALL(prefs_, SetString(cert_key_, digest_hex_)).WillOnce(Return(true));
Alex Deymo33e91e72015-12-01 18:26:08 -0300126 ASSERT_TRUE(
127 cert_checker.CheckCertificateChange(1, nullptr, server_to_check_));
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700128}
129
130// check certificate change, failed
131TEST_F(CertificateCheckerTest, FailedCertificate) {
Alex Deymoc1c17b42015-11-23 03:53:15 -0300132 EXPECT_CALL(observer_, CertificateChecked(server_to_check_,
133 CertificateCheckResult::kFailed));
134 EXPECT_CALL(prefs_, GetString(_, _)).Times(0);
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700135 EXPECT_CALL(openssl_wrapper_, GetCertificateDigest(_, _, _, _)).Times(0);
Alex Deymo33e91e72015-12-01 18:26:08 -0300136 ASSERT_FALSE(
137 cert_checker.CheckCertificateChange(0, nullptr, server_to_check_));
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700138}
139
140} // namespace chromeos_update_engine