blob: 38d370cd39750655a44632336a94b32da274de31 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2014 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//
Alex Deymo560ae1d2014-10-28 02:17:54 -070016
17#ifndef UPDATE_ENGINE_MOCK_OMAHA_REQUEST_PARAMS_H_
18#define UPDATE_ENGINE_MOCK_OMAHA_REQUEST_PARAMS_H_
19
20#include <string>
21
22#include <gmock/gmock.h>
23
24#include "update_engine/omaha_request_params.h"
25
26namespace chromeos_update_engine {
27
28class MockOmahaRequestParams : public OmahaRequestParams {
29 public:
30 explicit MockOmahaRequestParams(SystemState* system_state)
31 : OmahaRequestParams(system_state) {
32 // Delegate all calls to the parent instance by default. This helps the
33 // migration from tests using the real RequestParams when they should have
34 // use a fake or mock.
35 ON_CALL(*this, to_more_stable_channel())
36 .WillByDefault(testing::Invoke(
37 this, &MockOmahaRequestParams::fake_to_more_stable_channel));
38 ON_CALL(*this, GetAppId())
39 .WillByDefault(testing::Invoke(
40 this, &MockOmahaRequestParams::FakeGetAppId));
41 ON_CALL(*this, SetTargetChannel(testing::_, testing::_))
42 .WillByDefault(testing::Invoke(
43 this, &MockOmahaRequestParams::FakeSetTargetChannel));
44 ON_CALL(*this, UpdateDownloadChannel())
45 .WillByDefault(testing::Invoke(
46 this, &MockOmahaRequestParams::FakeUpdateDownloadChannel));
47 ON_CALL(*this, is_powerwash_allowed())
48 .WillByDefault(testing::Invoke(
49 this, &MockOmahaRequestParams::fake_is_powerwash_allowed));
50 }
51
52 MOCK_CONST_METHOD0(to_more_stable_channel, bool(void));
53 MOCK_CONST_METHOD0(GetAppId, std::string(void));
54 MOCK_METHOD2(SetTargetChannel, bool(const std::string& channel,
55 bool is_powerwash_allowed));
56 MOCK_METHOD0(UpdateDownloadChannel, void(void));
57 MOCK_CONST_METHOD0(is_powerwash_allowed, bool(void));
David Pursell02c18642014-11-06 11:26:11 -080058 MOCK_CONST_METHOD0(IsUpdateUrlOfficial, bool(void));
Alex Deymo560ae1d2014-10-28 02:17:54 -070059
60 private:
61 // Wrappers to call the parent class and behave like the real object by
62 // default. See "Delegating Calls to a Parent Class" in gmock's documentation.
63 bool fake_to_more_stable_channel() const {
64 return OmahaRequestParams::to_more_stable_channel();
65 }
66
67 std::string FakeGetAppId() const {
68 return OmahaRequestParams::GetAppId();
69 }
70
71 bool FakeSetTargetChannel(const std::string& channel,
72 bool is_powerwash_allowed) {
73 return OmahaRequestParams::SetTargetChannel(channel, is_powerwash_allowed);
74 }
75
76 void FakeUpdateDownloadChannel() {
77 return OmahaRequestParams::UpdateDownloadChannel();
78 }
79
80 bool fake_is_powerwash_allowed() const {
81 return OmahaRequestParams::is_powerwash_allowed();
82 }
83};
84
85} // namespace chromeos_update_engine
86
87#endif // UPDATE_ENGINE_MOCK_OMAHA_REQUEST_PARAMS_H_