blob: 2d40a19645082c0bb70d2e7f8fed0e5e73c80ff1 [file] [log] [blame]
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Gilad Arnoldcf175a02014-07-10 16:48:47 -07005#ifndef UPDATE_ENGINE_MOCK_PAYLOAD_STATE_H_
6#define UPDATE_ENGINE_MOCK_PAYLOAD_STATE_H_
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08007
Alex Vakulenkod2779df2014-06-16 13:19:00 -07008#include <string>
9
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080010#include "gmock/gmock.h"
Jay Srinivasan2b5a0f02012-12-19 17:25:56 -080011#include "update_engine/omaha_request_action.h"
12#include "update_engine/payload_state_interface.h"
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080013
14namespace chromeos_update_engine {
15
Jay Srinivasan2b5a0f02012-12-19 17:25:56 -080016class MockPayloadState: public PayloadStateInterface {
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080017 public:
Jay Srinivasan19409b72013-04-12 19:23:36 -070018 bool Initialize(SystemState* system_state) {
Jay Srinivasan2b5a0f02012-12-19 17:25:56 -080019 return true;
20 }
21
Jay Srinivasan08262882012-12-28 19:29:43 -080022 // Significant methods.
Jay Srinivasan2b5a0f02012-12-19 17:25:56 -080023 MOCK_METHOD1(SetResponse, void(const OmahaResponse& response));
24 MOCK_METHOD0(DownloadComplete, void());
25 MOCK_METHOD1(DownloadProgress, void(size_t count));
Chris Sosabe45bef2013-04-09 18:25:12 -070026 MOCK_METHOD0(UpdateResumed, void());
Jay Srinivasan19409b72013-04-12 19:23:36 -070027 MOCK_METHOD0(UpdateRestarted, void());
David Zeuthen9a017f22013-04-11 16:10:26 -070028 MOCK_METHOD0(UpdateSucceeded, void());
David Zeuthena99981f2013-04-29 13:42:47 -070029 MOCK_METHOD1(UpdateFailed, void(ErrorCode error));
Alex Deymo42432912013-07-12 20:21:15 -070030 MOCK_METHOD0(ResetUpdateStatus, void());
Jay Srinivasan08262882012-12-28 19:29:43 -080031 MOCK_METHOD0(ShouldBackoffDownload, bool());
David Zeuthene4c58bf2013-06-18 17:26:50 -070032 MOCK_METHOD0(UpdateEngineStarted, void());
Chris Sosaaa18e162013-06-20 13:20:30 -070033 MOCK_METHOD0(Rollback, void());
Alex Deymo42432912013-07-12 20:21:15 -070034 MOCK_METHOD1(ExpectRebootInNewVersion,
35 void(const std::string& target_version_uid));
David Zeuthenbb8bdc72013-09-03 13:43:48 -070036 MOCK_METHOD0(P2PNewAttempt, void());
37 MOCK_METHOD0(P2PAttemptAllowed, bool());
Gilad Arnoldcf175a02014-07-10 16:48:47 -070038 MOCK_METHOD1(SetUsingP2PForDownloading, void(bool value));
Gilad Arnold74b5f552014-10-07 08:17:16 -070039 MOCK_METHOD1(SetUsingP2PForSharing, void(bool value));
Gilad Arnold519cfc72014-10-02 10:34:54 -070040 MOCK_METHOD1(SetScatteringWaitPeriod, void(base::TimeDelta));
Gilad Arnold74b5f552014-10-07 08:17:16 -070041 MOCK_METHOD1(SetP2PUrl, void(const std::string&));
Jay Srinivasan08262882012-12-28 19:29:43 -080042
43 // Getters.
44 MOCK_METHOD0(GetResponseSignature, std::string());
Alex Deymo820cc702013-06-28 15:43:46 -070045 MOCK_METHOD0(GetPayloadAttemptNumber, int());
46 MOCK_METHOD0(GetFullPayloadAttemptNumber, int());
Jay Srinivasan53173b92013-05-17 17:13:01 -070047 MOCK_METHOD0(GetCurrentUrl, std::string());
Jay Srinivasan2b5a0f02012-12-19 17:25:56 -080048 MOCK_METHOD0(GetUrlFailureCount, uint32_t());
David Zeuthencc6f9962013-04-18 11:57:24 -070049 MOCK_METHOD0(GetUrlSwitchCount, uint32_t());
David Zeuthena573d6f2013-06-14 16:13:36 -070050 MOCK_METHOD0(GetNumResponsesSeen, int());
Jay Srinivasan08262882012-12-28 19:29:43 -080051 MOCK_METHOD0(GetBackoffExpiryTime, base::Time());
David Zeuthen9a017f22013-04-11 16:10:26 -070052 MOCK_METHOD0(GetUpdateDuration, base::TimeDelta());
53 MOCK_METHOD0(GetUpdateDurationUptime, base::TimeDelta());
Jay Srinivasan19409b72013-04-12 19:23:36 -070054 MOCK_METHOD1(GetCurrentBytesDownloaded, uint64_t(DownloadSource source));
55 MOCK_METHOD1(GetTotalBytesDownloaded, uint64_t(DownloadSource source));
Chris Sosabe45bef2013-04-09 18:25:12 -070056 MOCK_METHOD0(GetNumReboots, uint32_t());
Chris Sosaaa18e162013-06-20 13:20:30 -070057 MOCK_METHOD0(GetRollbackVersion, std::string());
David Zeuthenbb8bdc72013-09-03 13:43:48 -070058 MOCK_METHOD0(GetP2PNumAttempts, int());
59 MOCK_METHOD0(GetP2PFirstAttemptTimestamp, base::Time());
Gilad Arnold74b5f552014-10-07 08:17:16 -070060 MOCK_CONST_METHOD0(GetUsingP2PForDownloading, bool());
61 MOCK_CONST_METHOD0(GetUsingP2PForSharing, bool());
Gilad Arnold519cfc72014-10-02 10:34:54 -070062 MOCK_METHOD0(GetScatteringWaitPeriod, base::TimeDelta());
Gilad Arnold74b5f552014-10-07 08:17:16 -070063 MOCK_CONST_METHOD0(GetP2PUrl, std::string());
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080064};
65
66} // namespace chromeos_update_engine
67
Gilad Arnoldcf175a02014-07-10 16:48:47 -070068#endif // UPDATE_ENGINE_MOCK_PAYLOAD_STATE_H_