blob: e8961b1b917c0b59bdddf0e47ff022d35c448925 [file] [log] [blame]
Aaron Wood56d8ab32017-09-22 15:56:18 -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
17#include "update_engine/update_manager/policy_test_utils.h"
18
Aaron Woodc73fdc12017-12-06 11:09:15 -080019#include <memory>
Aaron Wood56d8ab32017-09-22 15:56:18 -070020#include <tuple>
21#include <vector>
22
Amin Hassani0468a762020-11-17 23:53:48 -080023#include "update_engine/cros/fake_system_state.h"
Aaron Wood56d8ab32017-09-22 15:56:18 -070024#include "update_engine/update_manager/next_update_check_policy_impl.h"
25
26using base::Time;
27using base::TimeDelta;
28using chromeos_update_engine::ErrorCode;
Amin Hassani0468a762020-11-17 23:53:48 -080029using chromeos_update_engine::FakeSystemState;
Aaron Wood56d8ab32017-09-22 15:56:18 -070030using std::string;
31using std::tuple;
32using std::vector;
33
34namespace chromeos_update_manager {
35
36void UmPolicyTestBase::SetUp() {
37 loop_.SetAsCurrent();
Amin Hassani0468a762020-11-17 23:53:48 -080038 FakeSystemState::CreateInstance();
39 fake_clock_ = FakeSystemState::Get()->fake_clock();
Aaron Wood56d8ab32017-09-22 15:56:18 -070040 SetUpDefaultClock();
Amin Hassani0468a762020-11-17 23:53:48 -080041 eval_ctx_.reset(new EvaluationContext(TimeDelta::FromSeconds(5)));
Aaron Wood56d8ab32017-09-22 15:56:18 -070042 SetUpDefaultState();
43}
44
45void UmPolicyTestBase::TearDown() {
46 EXPECT_FALSE(loop_.PendingTasks());
47}
48
49// Sets the clock to fixed values.
50void UmPolicyTestBase::SetUpDefaultClock() {
Amin Hassani0468a762020-11-17 23:53:48 -080051 fake_clock_->SetMonotonicTime(Time::FromInternalValue(12345678L));
52 fake_clock_->SetWallclockTime(Time::FromInternalValue(12345678901234L));
Aaron Wood56d8ab32017-09-22 15:56:18 -070053}
54
Adolfo Victoria94ffe132018-06-28 16:14:56 -070055void UmPolicyTestBase::SetUpDefaultTimeProvider() {
Amin Hassani0468a762020-11-17 23:53:48 -080056 Time current_time = FakeSystemState::Get()->clock()->GetWallclockTime();
Adolfo Victoria94ffe132018-06-28 16:14:56 -070057 base::Time::Exploded exploded;
58 current_time.LocalExplode(&exploded);
59 fake_state_.time_provider()->var_curr_hour()->reset(new int(exploded.hour));
60 fake_state_.time_provider()->var_curr_minute()->reset(
61 new int(exploded.minute));
62 fake_state_.time_provider()->var_curr_date()->reset(
63 new Time(current_time.LocalMidnight()));
64}
65
Aaron Wood56d8ab32017-09-22 15:56:18 -070066void UmPolicyTestBase::SetUpDefaultState() {
67 fake_state_.updater_provider()->var_updater_started_time()->reset(
Amin Hassani0468a762020-11-17 23:53:48 -080068 new Time(fake_clock_->GetWallclockTime()));
Aaron Wood56d8ab32017-09-22 15:56:18 -070069 fake_state_.updater_provider()->var_last_checked_time()->reset(
Amin Hassani0468a762020-11-17 23:53:48 -080070 new Time(fake_clock_->GetWallclockTime()));
Aaron Wood56d8ab32017-09-22 15:56:18 -070071 fake_state_.updater_provider()->var_consecutive_failed_update_checks()->reset(
Aaron Woodc73fdc12017-12-06 11:09:15 -080072 new unsigned int(0)); // NOLINT(readability/casting)
Aaron Wood56d8ab32017-09-22 15:56:18 -070073 fake_state_.updater_provider()->var_server_dictated_poll_interval()->reset(
Aaron Woodc73fdc12017-12-06 11:09:15 -080074 new unsigned int(0)); // NOLINT(readability/casting)
Aaron Wood56d8ab32017-09-22 15:56:18 -070075 fake_state_.updater_provider()->var_forced_update_requested()->reset(
76 new UpdateRequestStatus{UpdateRequestStatus::kNone});
77
78 // Chosen by fair dice roll. Guaranteed to be random.
79 fake_state_.random_provider()->var_seed()->reset(new uint64_t(4));
80}
81
82// Returns a default UpdateState structure:
83UpdateState UmPolicyTestBase::GetDefaultUpdateState(
84 TimeDelta first_seen_period) {
Amin Hassani0468a762020-11-17 23:53:48 -080085 Time first_seen_time =
86 FakeSystemState::Get()->clock()->GetWallclockTime() - first_seen_period;
Aaron Wood56d8ab32017-09-22 15:56:18 -070087 UpdateState update_state = UpdateState();
88
89 // This is a non-interactive check returning a delta payload, seen for the
90 // first time (|first_seen_period| ago). Clearly, there were no failed
91 // attempts so far.
Amin Hassanied37d682018-04-06 13:22:00 -070092 update_state.interactive = false;
Aaron Wood56d8ab32017-09-22 15:56:18 -070093 update_state.is_delta_payload = false;
94 update_state.first_seen = first_seen_time;
95 update_state.num_checks = 1;
96 update_state.num_failures = 0;
97 update_state.failures_last_updated = Time(); // Needs to be zero.
98 // There's a single HTTP download URL with a maximum of 10 retries.
99 update_state.download_urls = vector<string>{"http://fake/url/"};
100 update_state.download_errors_max = 10;
101 // Download was never attempted.
102 update_state.last_download_url_idx = -1;
103 update_state.last_download_url_num_errors = 0;
104 // There were no download errors.
105 update_state.download_errors = vector<tuple<int, ErrorCode, Time>>();
106 // P2P is not disabled by Omaha.
107 update_state.p2p_downloading_disabled = false;
108 update_state.p2p_sharing_disabled = false;
109 // P2P was not attempted.
110 update_state.p2p_num_attempts = 0;
111 update_state.p2p_first_attempted = Time();
112 // No active backoff period, backoff is not disabled by Omaha.
113 update_state.backoff_expiry = Time();
114 update_state.is_backoff_disabled = false;
115 // There is no active scattering wait period (max 7 days allowed) nor check
116 // threshold (none allowed).
117 update_state.scatter_wait_period = TimeDelta();
118 update_state.scatter_check_threshold = 0;
119 update_state.scatter_wait_period_max = TimeDelta::FromDays(7);
120 update_state.scatter_check_threshold_min = 0;
121 update_state.scatter_check_threshold_max = 0;
122
123 return update_state;
124}
125
Aaron Woodc73fdc12017-12-06 11:09:15 -0800126} // namespace chromeos_update_manager