blob: d080ce877a19ae53db8099f3f268de525c0b5173 [file] [log] [blame]
Tianjie Xu282aa1f2017-09-05 13:42:45 -07001//
2// Copyright (C) 2017 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//
16
Tianjie Xu098f7022017-08-24 21:37:16 -070017#ifndef UPDATE_ENGINE_MOCK_METRICS_REPORTER_H
18#define UPDATE_ENGINE_MOCK_METRICS_REPORTER_H
Tianjie Xu282aa1f2017-09-05 13:42:45 -070019
Marton Hunyadya0302682018-05-16 18:52:13 +020020#include <string>
21
Tianjie Xu282aa1f2017-09-05 13:42:45 -070022#include <gmock/gmock.h>
23
24#include "update_engine/metrics_reporter_interface.h"
25
26namespace chromeos_update_engine {
27
Tianjie Xu1f93d092017-10-09 12:13:29 -070028class MockMetricsReporter : public MetricsReporterInterface {
Tianjie Xu282aa1f2017-09-05 13:42:45 -070029 public:
30 MOCK_METHOD0(Initialize, void());
31
32 MOCK_METHOD1(ReportRollbackMetrics, void(metrics::RollbackResult result));
33
Marton Hunyadya0302682018-05-16 18:52:13 +020034 MOCK_METHOD2(ReportEnterpriseRollbackMetrics,
35 void(bool success, const std::string& rollback_version));
36
Tianjie Xu282aa1f2017-09-05 13:42:45 -070037 MOCK_METHOD1(ReportDailyMetrics, void(base::TimeDelta os_age));
38
39 MOCK_METHOD4(ReportUpdateCheckMetrics,
40 void(SystemState* system_state,
41 metrics::CheckResult result,
42 metrics::CheckReaction reaction,
43 metrics::DownloadErrorCode download_error_code));
44
Tianjie Xu1f93d092017-10-09 12:13:29 -070045 MOCK_METHOD8(ReportUpdateAttemptMetrics,
46 void(SystemState* system_state,
47 int attempt_number,
48 PayloadType payload_type,
49 base::TimeDelta duration,
50 base::TimeDelta duration_uptime,
51 int64_t payload_size,
52 metrics::AttemptResult attempt_result,
53 ErrorCode internal_error_code));
54
55 MOCK_METHOD5(ReportUpdateAttemptDownloadMetrics,
56 void(int64_t payload_bytes_downloaded,
57 int64_t payload_download_speed_bps,
58 DownloadSource download_source,
59 metrics::DownloadErrorCode payload_download_error_code,
60 metrics::ConnectionType connection_type));
Tianjie Xu282aa1f2017-09-05 13:42:45 -070061
62 MOCK_METHOD0(ReportAbnormallyTerminatedUpdateAttemptMetrics, void());
63
64 MOCK_METHOD9(ReportSuccessfulUpdateMetrics,
65 void(int attempt_count,
66 int updates_abandoned_count,
67 PayloadType payload_type,
68 int64_t payload_size,
69 int64_t num_bytes_downloaded[kNumDownloadSources],
70 int download_overhead_percentage,
71 base::TimeDelta total_duration,
72 int reboot_count,
73 int url_switch_count));
74
75 MOCK_METHOD2(ReportCertificateCheckMetrics,
76 void(ServerToCheck server_to_check,
77 CertificateCheckResult result));
78
79 MOCK_METHOD1(ReportFailedUpdateCount, void(int target_attempt));
80
81 MOCK_METHOD1(ReportTimeToReboot, void(int time_to_reboot_minutes));
82
83 MOCK_METHOD2(ReportInstallDateProvisioningSource, void(int source, int max));
Amin Hassani80f4d4c2018-05-16 13:34:00 -070084
85 MOCK_METHOD1(ReportInternalErrorCode, void(ErrorCode error_code));
Tianjie Xu282aa1f2017-09-05 13:42:45 -070086};
87
88} // namespace chromeos_update_engine
89
Tianjie Xu098f7022017-08-24 21:37:16 -070090#endif // UPDATE_ENGINE_MOCK_METRICS_REPORTER_H