Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2011 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 | // |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 16 | |
Alex Deymo | aab50e3 | 2014-11-10 19:55:35 -0800 | [diff] [blame] | 17 | #include "update_engine/omaha_response_handler_action.h" |
| 18 | |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 19 | #include <string> |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 20 | |
Alex Deymo | 110e030 | 2015-10-19 20:35:21 -0700 | [diff] [blame] | 21 | #include <base/files/file_util.h> |
Sen Jiang | 297e583 | 2016-03-17 14:45:51 -0700 | [diff] [blame] | 22 | #include <base/files/scoped_temp_dir.h> |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 23 | #include <brillo/message_loops/fake_message_loop.h> |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 24 | #include <gtest/gtest.h> |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 25 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 26 | #include "update_engine/common/constants.h" |
| 27 | #include "update_engine/common/platform_constants.h" |
| 28 | #include "update_engine/common/test_utils.h" |
| 29 | #include "update_engine/common/utils.h" |
Gilad Arnold | 5bb4c90 | 2014-04-10 12:32:13 -0700 | [diff] [blame] | 30 | #include "update_engine/fake_system_state.h" |
Gilad Arnold | 74b5f55 | 2014-10-07 08:17:16 -0700 | [diff] [blame] | 31 | #include "update_engine/mock_payload_state.h" |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 32 | #include "update_engine/payload_consumer/payload_constants.h" |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 33 | #include "update_engine/update_manager/mock_policy.h" |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 34 | |
Alex Deymo | 10875d9 | 2014-11-10 21:52:57 -0800 | [diff] [blame] | 35 | using chromeos_update_engine::test_utils::System; |
| 36 | using chromeos_update_engine::test_utils::WriteFileString; |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 37 | using chromeos_update_manager::EvalStatus; |
| 38 | using chromeos_update_manager::FakeUpdateManager; |
| 39 | using chromeos_update_manager::MockPolicy; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 40 | using std::string; |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 41 | using testing::DoAll; |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 42 | using testing::Return; |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 43 | using testing::SetArgPointee; |
Sen Jiang | 297e583 | 2016-03-17 14:45:51 -0700 | [diff] [blame] | 44 | using testing::_; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 45 | |
| 46 | namespace chromeos_update_engine { |
| 47 | |
| 48 | class OmahaResponseHandlerActionTest : public ::testing::Test { |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 49 | protected: |
| 50 | void SetUp() override { |
| 51 | FakeBootControl* fake_boot_control = fake_system_state_.fake_boot_control(); |
| 52 | fake_boot_control->SetPartitionDevice( |
| 53 | kLegacyPartitionNameKernel, 0, "/dev/sdz2"); |
| 54 | fake_boot_control->SetPartitionDevice( |
| 55 | kLegacyPartitionNameRoot, 0, "/dev/sdz3"); |
| 56 | fake_boot_control->SetPartitionDevice( |
| 57 | kLegacyPartitionNameKernel, 1, "/dev/sdz4"); |
| 58 | fake_boot_control->SetPartitionDevice( |
| 59 | kLegacyPartitionNameRoot, 1, "/dev/sdz5"); |
| 60 | } |
| 61 | |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 62 | // Return true iff the OmahaResponseHandlerAction succeeded. |
Alex Vakulenko | 88b591f | 2014-08-28 16:48:57 -0700 | [diff] [blame] | 63 | // If out is non-null, it's set w/ the response from the action. |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 64 | bool DoTest(const OmahaResponse& in, |
Gilad Arnold | 4dbd47e | 2013-07-22 05:39:26 -0700 | [diff] [blame] | 65 | const string& deadline_file, |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 66 | InstallPlan* out); |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 67 | |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 68 | // Pointer to the Action, valid after |DoTest|, released when the test is |
| 69 | // finished. |
| 70 | std::unique_ptr<OmahaResponseHandlerAction> action_; |
| 71 | // Captures the action's result code, for tests that need to directly verify |
| 72 | // it in non-success cases. |
| 73 | ErrorCode action_result_code_; |
| 74 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 75 | FakeSystemState fake_system_state_; |
Sen Jiang | 2703ef4 | 2017-03-16 13:36:21 -0700 | [diff] [blame] | 76 | // "Hash+" |
| 77 | const brillo::Blob expected_hash_ = {0x48, 0x61, 0x73, 0x68, 0x2b}; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | class OmahaResponseHandlerActionProcessorDelegate |
| 81 | : public ActionProcessorDelegate { |
| 82 | public: |
| 83 | OmahaResponseHandlerActionProcessorDelegate() |
Gilad Arnold | d1c4d2d | 2014-06-05 14:07:53 -0700 | [diff] [blame] | 84 | : code_(ErrorCode::kError), |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 85 | code_set_(false) {} |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 86 | void ActionCompleted(ActionProcessor* processor, |
| 87 | AbstractAction* action, |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 88 | ErrorCode code) { |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 89 | if (action->Type() == OmahaResponseHandlerAction::StaticType()) { |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 90 | code_ = code; |
| 91 | code_set_ = true; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 92 | } |
| 93 | } |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 94 | ErrorCode code_; |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 95 | bool code_set_; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | namespace { |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 99 | const char* const kLongName = |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 100 | "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| 101 | "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| 102 | "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| 103 | "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| 104 | "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| 105 | "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| 106 | "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| 107 | "-the_update_a.b.c.d_DELTA_.tgz"; |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 108 | const char* const kBadVersion = "don't update me"; |
Sen Jiang | 2703ef4 | 2017-03-16 13:36:21 -0700 | [diff] [blame] | 109 | const char* const kPayloadHashHex = "486173682b"; |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 110 | } // namespace |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 111 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 112 | bool OmahaResponseHandlerActionTest::DoTest( |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 113 | const OmahaResponse& in, |
Gilad Arnold | 4dbd47e | 2013-07-22 05:39:26 -0700 | [diff] [blame] | 114 | const string& test_deadline_file, |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 115 | InstallPlan* out) { |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 116 | brillo::FakeMessageLoop loop(nullptr); |
| 117 | loop.SetAsCurrent(); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 118 | ActionProcessor processor; |
| 119 | OmahaResponseHandlerActionProcessorDelegate delegate; |
| 120 | processor.set_delegate(&delegate); |
| 121 | |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 122 | ObjectFeederAction<OmahaResponse> feeder_action; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 123 | feeder_action.set_obj(in); |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 124 | if (in.update_exists && in.version != kBadVersion) { |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 125 | string expected_hash; |
| 126 | for (const auto& package : in.packages) |
| 127 | expected_hash += package.hash + ":"; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 128 | EXPECT_CALL(*(fake_system_state_.mock_prefs()), |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 129 | SetString(kPrefsUpdateCheckResponseHash, expected_hash)) |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 130 | .WillOnce(Return(true)); |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 131 | |
| 132 | int slot = 1 - fake_system_state_.fake_boot_control()->GetCurrentSlot(); |
| 133 | string key = kPrefsChannelOnSlotPrefix + std::to_string(slot); |
| 134 | EXPECT_CALL(*(fake_system_state_.mock_prefs()), SetString(key, testing::_)) |
| 135 | .WillOnce(Return(true)); |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 136 | } |
Jay Srinivasan | 53173b9 | 2013-05-17 17:13:01 -0700 | [diff] [blame] | 137 | |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 138 | string current_url = in.packages.size() ? in.packages[0].payload_urls[0] : ""; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 139 | EXPECT_CALL(*(fake_system_state_.mock_payload_state()), GetCurrentUrl()) |
Jay Srinivasan | 53173b9 | 2013-05-17 17:13:01 -0700 | [diff] [blame] | 140 | .WillRepeatedly(Return(current_url)); |
| 141 | |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 142 | action_.reset(new OmahaResponseHandlerAction( |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 143 | &fake_system_state_, |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 144 | (test_deadline_file.empty() ? constants::kOmahaResponseDeadlineFile |
| 145 | : test_deadline_file))); |
| 146 | BondActions(&feeder_action, action_.get()); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 147 | ObjectCollectorAction<InstallPlan> collector_action; |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 148 | BondActions(action_.get(), &collector_action); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 149 | processor.EnqueueAction(&feeder_action); |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 150 | processor.EnqueueAction(action_.get()); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 151 | processor.EnqueueAction(&collector_action); |
| 152 | processor.StartProcessing(); |
| 153 | EXPECT_TRUE(!processor.IsRunning()) |
Alex Vakulenko | 072359c | 2014-07-18 11:41:07 -0700 | [diff] [blame] | 154 | << "Update test to handle non-async actions"; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 155 | if (out) |
| 156 | *out = collector_action.object(); |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 157 | EXPECT_TRUE(delegate.code_set_); |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 158 | action_result_code_ = delegate.code_; |
Gilad Arnold | d1c4d2d | 2014-06-05 14:07:53 -0700 | [diff] [blame] | 159 | return delegate.code_ == ErrorCode::kSuccess; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | TEST_F(OmahaResponseHandlerActionTest, SimpleTest) { |
Gilad Arnold | 4dbd47e | 2013-07-22 05:39:26 -0700 | [diff] [blame] | 163 | string test_deadline_file; |
| 164 | CHECK(utils::MakeTempFile( |
Gilad Arnold | a6742b3 | 2014-01-11 00:18:34 -0800 | [diff] [blame] | 165 | "omaha_response_handler_action_unittest-XXXXXX", |
Alex Vakulenko | 88b591f | 2014-08-28 16:48:57 -0700 | [diff] [blame] | 166 | &test_deadline_file, nullptr)); |
Gilad Arnold | 4dbd47e | 2013-07-22 05:39:26 -0700 | [diff] [blame] | 167 | ScopedPathUnlinker deadline_unlinker(test_deadline_file); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 168 | { |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 169 | OmahaResponse in; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 170 | in.update_exists = true; |
Chris Sosa | 3b74843 | 2013-06-20 16:42:59 -0700 | [diff] [blame] | 171 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 172 | in.packages.push_back( |
| 173 | {.payload_urls = {"http://foo/the_update_a.b.c.d.tgz"}, |
| 174 | .size = 12, |
| 175 | .hash = kPayloadHashHex}); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 176 | in.more_info_url = "http://more/info"; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 177 | in.prompt = false; |
Darin Petkov | 6c11864 | 2010-10-21 12:06:30 -0700 | [diff] [blame] | 178 | in.deadline = "20101020"; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 179 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 180 | EXPECT_TRUE(DoTest(in, test_deadline_file, &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 181 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 182 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
Alex Deymo | 80f70ff | 2016-02-10 16:08:11 -0800 | [diff] [blame] | 183 | EXPECT_EQ(1U, install_plan.target_slot); |
Darin Petkov | 6c11864 | 2010-10-21 12:06:30 -0700 | [diff] [blame] | 184 | string deadline; |
Gilad Arnold | 4dbd47e | 2013-07-22 05:39:26 -0700 | [diff] [blame] | 185 | EXPECT_TRUE(utils::ReadFile(test_deadline_file, &deadline)); |
Darin Petkov | 6c11864 | 2010-10-21 12:06:30 -0700 | [diff] [blame] | 186 | EXPECT_EQ("20101020", deadline); |
| 187 | struct stat deadline_stat; |
Gilad Arnold | 4dbd47e | 2013-07-22 05:39:26 -0700 | [diff] [blame] | 188 | EXPECT_EQ(0, stat(test_deadline_file.c_str(), &deadline_stat)); |
Alex Deymo | 80f70ff | 2016-02-10 16:08:11 -0800 | [diff] [blame] | 189 | EXPECT_EQ( |
| 190 | static_cast<mode_t>(S_IFREG | S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH), |
| 191 | deadline_stat.st_mode); |
Chris Sosa | fb1020e | 2013-07-29 17:27:33 -0700 | [diff] [blame] | 192 | EXPECT_EQ(in.version, install_plan.version); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 193 | } |
| 194 | { |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 195 | OmahaResponse in; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 196 | in.update_exists = true; |
Chris Sosa | 3b74843 | 2013-06-20 16:42:59 -0700 | [diff] [blame] | 197 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 198 | in.packages.push_back( |
| 199 | {.payload_urls = {"http://foo/the_update_a.b.c.d.tgz"}, |
| 200 | .size = 12, |
| 201 | .hash = kPayloadHashHex}); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 202 | in.more_info_url = "http://more/info"; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 203 | in.prompt = true; |
| 204 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 205 | // Set the other slot as current. |
| 206 | fake_system_state_.fake_boot_control()->SetCurrentSlot(1); |
| 207 | EXPECT_TRUE(DoTest(in, test_deadline_file, &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 208 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 209 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
Alex Deymo | 80f70ff | 2016-02-10 16:08:11 -0800 | [diff] [blame] | 210 | EXPECT_EQ(0U, install_plan.target_slot); |
Darin Petkov | 6c11864 | 2010-10-21 12:06:30 -0700 | [diff] [blame] | 211 | string deadline; |
Gilad Arnold | 4dbd47e | 2013-07-22 05:39:26 -0700 | [diff] [blame] | 212 | EXPECT_TRUE(utils::ReadFile(test_deadline_file, &deadline) && |
| 213 | deadline.empty()); |
Chris Sosa | fb1020e | 2013-07-29 17:27:33 -0700 | [diff] [blame] | 214 | EXPECT_EQ(in.version, install_plan.version); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 215 | } |
| 216 | { |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 217 | OmahaResponse in; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 218 | in.update_exists = true; |
Chris Sosa | 3b74843 | 2013-06-20 16:42:59 -0700 | [diff] [blame] | 219 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 220 | in.packages.push_back( |
| 221 | {.payload_urls = {kLongName}, .size = 12, .hash = kPayloadHashHex}); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 222 | in.more_info_url = "http://more/info"; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 223 | in.prompt = true; |
Darin Petkov | 6c11864 | 2010-10-21 12:06:30 -0700 | [diff] [blame] | 224 | in.deadline = "some-deadline"; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 225 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 226 | fake_system_state_.fake_boot_control()->SetCurrentSlot(0); |
| 227 | EXPECT_TRUE(DoTest(in, test_deadline_file, &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 228 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 229 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
Alex Deymo | 80f70ff | 2016-02-10 16:08:11 -0800 | [diff] [blame] | 230 | EXPECT_EQ(1U, install_plan.target_slot); |
Darin Petkov | 6c11864 | 2010-10-21 12:06:30 -0700 | [diff] [blame] | 231 | string deadline; |
Gilad Arnold | 4dbd47e | 2013-07-22 05:39:26 -0700 | [diff] [blame] | 232 | EXPECT_TRUE(utils::ReadFile(test_deadline_file, &deadline)); |
Darin Petkov | 6c11864 | 2010-10-21 12:06:30 -0700 | [diff] [blame] | 233 | EXPECT_EQ("some-deadline", deadline); |
Chris Sosa | fb1020e | 2013-07-29 17:27:33 -0700 | [diff] [blame] | 234 | EXPECT_EQ(in.version, install_plan.version); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | |
| 238 | TEST_F(OmahaResponseHandlerActionTest, NoUpdatesTest) { |
Darin Petkov | 6a5b322 | 2010-07-13 14:55:28 -0700 | [diff] [blame] | 239 | OmahaResponse in; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 240 | in.update_exists = false; |
| 241 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 242 | EXPECT_FALSE(DoTest(in, "", &install_plan)); |
Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 243 | EXPECT_TRUE(install_plan.partitions.empty()); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 244 | } |
| 245 | |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 246 | TEST_F(OmahaResponseHandlerActionTest, MultiPackageTest) { |
| 247 | OmahaResponse in; |
| 248 | in.update_exists = true; |
| 249 | in.version = "a.b.c.d"; |
| 250 | in.packages.push_back({.payload_urls = {"http://package/1"}, |
| 251 | .size = 1, |
| 252 | .hash = kPayloadHashHex}); |
| 253 | in.packages.push_back({.payload_urls = {"http://package/2"}, |
| 254 | .size = 2, |
| 255 | .hash = kPayloadHashHex}); |
| 256 | in.more_info_url = "http://more/info"; |
| 257 | InstallPlan install_plan; |
| 258 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
| 259 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 260 | EXPECT_EQ(2u, install_plan.payloads.size()); |
| 261 | EXPECT_EQ(in.packages[0].size, install_plan.payloads[0].size); |
| 262 | EXPECT_EQ(in.packages[1].size, install_plan.payloads[1].size); |
| 263 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
| 264 | EXPECT_EQ(expected_hash_, install_plan.payloads[1].hash); |
| 265 | EXPECT_EQ(in.version, install_plan.version); |
| 266 | } |
| 267 | |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 268 | TEST_F(OmahaResponseHandlerActionTest, HashChecksForHttpTest) { |
| 269 | OmahaResponse in; |
| 270 | in.update_exists = true; |
Chris Sosa | 3b74843 | 2013-06-20 16:42:59 -0700 | [diff] [blame] | 271 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 272 | in.packages.push_back( |
| 273 | {.payload_urls = {"http://test.should/need/hash.checks.signed"}, |
| 274 | .size = 12, |
| 275 | .hash = kPayloadHashHex}); |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 276 | in.more_info_url = "http://more/info"; |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 277 | // Hash checks are always skipped for non-official update URLs. |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 278 | EXPECT_CALL(*(fake_system_state_.mock_request_params()), |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 279 | IsUpdateUrlOfficial()) |
| 280 | .WillRepeatedly(Return(true)); |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 281 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 282 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 283 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 284 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 285 | EXPECT_TRUE(install_plan.hash_checks_mandatory); |
Chris Sosa | fb1020e | 2013-07-29 17:27:33 -0700 | [diff] [blame] | 286 | EXPECT_EQ(in.version, install_plan.version); |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 287 | } |
| 288 | |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 289 | TEST_F(OmahaResponseHandlerActionTest, HashChecksForUnofficialUpdateUrl) { |
| 290 | OmahaResponse in; |
| 291 | in.update_exists = true; |
| 292 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 293 | in.packages.push_back( |
| 294 | {.payload_urls = {"http://url.normally/needs/hash.checks.signed"}, |
| 295 | .size = 12, |
| 296 | .hash = kPayloadHashHex}); |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 297 | in.more_info_url = "http://more/info"; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 298 | EXPECT_CALL(*(fake_system_state_.mock_request_params()), |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 299 | IsUpdateUrlOfficial()) |
| 300 | .WillRepeatedly(Return(false)); |
| 301 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 302 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 303 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 304 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 305 | EXPECT_FALSE(install_plan.hash_checks_mandatory); |
| 306 | EXPECT_EQ(in.version, install_plan.version); |
| 307 | } |
| 308 | |
David Pursell | 907b4fa | 2015-01-27 10:27:38 -0800 | [diff] [blame] | 309 | TEST_F(OmahaResponseHandlerActionTest, |
| 310 | HashChecksForOfficialUrlUnofficialBuildTest) { |
| 311 | // Official URLs for unofficial builds (dev/test images) don't require hash. |
| 312 | OmahaResponse in; |
| 313 | in.update_exists = true; |
| 314 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 315 | in.packages.push_back( |
| 316 | {.payload_urls = {"http://url.normally/needs/hash.checks.signed"}, |
| 317 | .size = 12, |
| 318 | .hash = kPayloadHashHex}); |
David Pursell | 907b4fa | 2015-01-27 10:27:38 -0800 | [diff] [blame] | 319 | in.more_info_url = "http://more/info"; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 320 | EXPECT_CALL(*(fake_system_state_.mock_request_params()), |
David Pursell | 907b4fa | 2015-01-27 10:27:38 -0800 | [diff] [blame] | 321 | IsUpdateUrlOfficial()) |
| 322 | .WillRepeatedly(Return(true)); |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 323 | fake_system_state_.fake_hardware()->SetIsOfficialBuild(false); |
David Pursell | 907b4fa | 2015-01-27 10:27:38 -0800 | [diff] [blame] | 324 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 325 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 326 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 327 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
David Pursell | 907b4fa | 2015-01-27 10:27:38 -0800 | [diff] [blame] | 328 | EXPECT_FALSE(install_plan.hash_checks_mandatory); |
| 329 | EXPECT_EQ(in.version, install_plan.version); |
| 330 | } |
| 331 | |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 332 | TEST_F(OmahaResponseHandlerActionTest, HashChecksForHttpsTest) { |
| 333 | OmahaResponse in; |
| 334 | in.update_exists = true; |
Chris Sosa | 3b74843 | 2013-06-20 16:42:59 -0700 | [diff] [blame] | 335 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 336 | in.packages.push_back( |
| 337 | {.payload_urls = {"https://test.should/need/hash.checks.signed"}, |
| 338 | .size = 12, |
| 339 | .hash = kPayloadHashHex}); |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 340 | in.more_info_url = "http://more/info"; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 341 | EXPECT_CALL(*(fake_system_state_.mock_request_params()), |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 342 | IsUpdateUrlOfficial()) |
| 343 | .WillRepeatedly(Return(true)); |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 344 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 345 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 346 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 347 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 348 | EXPECT_FALSE(install_plan.hash_checks_mandatory); |
Chris Sosa | fb1020e | 2013-07-29 17:27:33 -0700 | [diff] [blame] | 349 | EXPECT_EQ(in.version, install_plan.version); |
Jay Srinivasan | 738fdf3 | 2012-12-07 17:40:54 -0800 | [diff] [blame] | 350 | } |
| 351 | |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 352 | TEST_F(OmahaResponseHandlerActionTest, HashChecksForBothHttpAndHttpsTest) { |
| 353 | OmahaResponse in; |
| 354 | in.update_exists = true; |
Chris Sosa | 3b74843 | 2013-06-20 16:42:59 -0700 | [diff] [blame] | 355 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 356 | in.packages.push_back( |
| 357 | {.payload_urls = {"http://test.should.still/need/hash.checks", |
| 358 | "https://test.should.still/need/hash.checks"}, |
| 359 | .size = 12, |
| 360 | .hash = kPayloadHashHex}); |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 361 | in.more_info_url = "http://more/info"; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 362 | EXPECT_CALL(*(fake_system_state_.mock_request_params()), |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 363 | IsUpdateUrlOfficial()) |
| 364 | .WillRepeatedly(Return(true)); |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 365 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 366 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 367 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 368 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 369 | EXPECT_TRUE(install_plan.hash_checks_mandatory); |
Chris Sosa | fb1020e | 2013-07-29 17:27:33 -0700 | [diff] [blame] | 370 | EXPECT_EQ(in.version, install_plan.version); |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 371 | } |
| 372 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 373 | TEST_F(OmahaResponseHandlerActionTest, ChangeToMoreStableChannelTest) { |
| 374 | OmahaResponse in; |
| 375 | in.update_exists = true; |
Chris Sosa | 3b74843 | 2013-06-20 16:42:59 -0700 | [diff] [blame] | 376 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 377 | in.packages.push_back({.payload_urls = {"https://MoreStableChannelTest"}, |
| 378 | .size = 1, |
| 379 | .hash = kPayloadHashHex}); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 380 | in.more_info_url = "http://more/info"; |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 381 | |
Gilad Arnold | eff87cc | 2013-07-22 18:32:09 -0700 | [diff] [blame] | 382 | // Create a uniquely named test directory. |
Sen Jiang | 297e583 | 2016-03-17 14:45:51 -0700 | [diff] [blame] | 383 | base::ScopedTempDir tempdir; |
| 384 | ASSERT_TRUE(tempdir.CreateUniqueTempDir()); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 385 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 386 | OmahaRequestParams params(&fake_system_state_); |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 387 | fake_system_state_.fake_hardware()->SetIsOfficialBuild(false); |
Sen Jiang | 297e583 | 2016-03-17 14:45:51 -0700 | [diff] [blame] | 388 | params.set_root(tempdir.path().value()); |
| 389 | params.set_current_channel("canary-channel"); |
| 390 | // The ImageProperties in Android uses prefs to store MutableImageProperties. |
| 391 | #ifdef __ANDROID__ |
| 392 | EXPECT_CALL(*fake_system_state_.mock_prefs(), SetString(_, "stable-channel")) |
| 393 | .WillOnce(Return(true)); |
| 394 | EXPECT_CALL(*fake_system_state_.mock_prefs(), SetBoolean(_, true)) |
| 395 | .WillOnce(Return(true)); |
| 396 | #endif // __ANDROID__ |
| 397 | EXPECT_TRUE(params.SetTargetChannel("stable-channel", true, nullptr)); |
| 398 | params.UpdateDownloadChannel(); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 399 | EXPECT_TRUE(params.to_more_stable_channel()); |
| 400 | EXPECT_TRUE(params.is_powerwash_allowed()); |
| 401 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 402 | fake_system_state_.set_request_params(¶ms); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 403 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 404 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 405 | EXPECT_TRUE(install_plan.powerwash_required); |
| 406 | } |
| 407 | |
| 408 | TEST_F(OmahaResponseHandlerActionTest, ChangeToLessStableChannelTest) { |
| 409 | OmahaResponse in; |
| 410 | in.update_exists = true; |
Chris Sosa | 3b74843 | 2013-06-20 16:42:59 -0700 | [diff] [blame] | 411 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 412 | in.packages.push_back({.payload_urls = {"https://LessStableChannelTest"}, |
| 413 | .size = 15, |
| 414 | .hash = kPayloadHashHex}); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 415 | in.more_info_url = "http://more/info"; |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 416 | |
Gilad Arnold | eff87cc | 2013-07-22 18:32:09 -0700 | [diff] [blame] | 417 | // Create a uniquely named test directory. |
Sen Jiang | 297e583 | 2016-03-17 14:45:51 -0700 | [diff] [blame] | 418 | base::ScopedTempDir tempdir; |
| 419 | ASSERT_TRUE(tempdir.CreateUniqueTempDir()); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 420 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 421 | OmahaRequestParams params(&fake_system_state_); |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 422 | fake_system_state_.fake_hardware()->SetIsOfficialBuild(false); |
Sen Jiang | 297e583 | 2016-03-17 14:45:51 -0700 | [diff] [blame] | 423 | params.set_root(tempdir.path().value()); |
| 424 | params.set_current_channel("stable-channel"); |
| 425 | // The ImageProperties in Android uses prefs to store MutableImageProperties. |
| 426 | #ifdef __ANDROID__ |
| 427 | EXPECT_CALL(*fake_system_state_.mock_prefs(), SetString(_, "canary-channel")) |
| 428 | .WillOnce(Return(true)); |
| 429 | EXPECT_CALL(*fake_system_state_.mock_prefs(), SetBoolean(_, false)) |
| 430 | .WillOnce(Return(true)); |
| 431 | #endif // __ANDROID__ |
| 432 | EXPECT_TRUE(params.SetTargetChannel("canary-channel", false, nullptr)); |
| 433 | params.UpdateDownloadChannel(); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 434 | EXPECT_FALSE(params.to_more_stable_channel()); |
| 435 | EXPECT_FALSE(params.is_powerwash_allowed()); |
| 436 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 437 | fake_system_state_.set_request_params(¶ms); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 438 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 439 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 440 | EXPECT_FALSE(install_plan.powerwash_required); |
| 441 | } |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 442 | |
David Zeuthen | 8f191b2 | 2013-08-06 12:27:50 -0700 | [diff] [blame] | 443 | TEST_F(OmahaResponseHandlerActionTest, P2PUrlIsUsedAndHashChecksMandatory) { |
| 444 | OmahaResponse in; |
| 445 | in.update_exists = true; |
| 446 | in.version = "a.b.c.d"; |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 447 | in.packages.push_back( |
| 448 | {.payload_urls = {"https://would.not/cause/hash/checks"}, |
| 449 | .size = 12, |
| 450 | .hash = kPayloadHashHex}); |
David Zeuthen | 8f191b2 | 2013-08-06 12:27:50 -0700 | [diff] [blame] | 451 | in.more_info_url = "http://more/info"; |
David Zeuthen | 8f191b2 | 2013-08-06 12:27:50 -0700 | [diff] [blame] | 452 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 453 | OmahaRequestParams params(&fake_system_state_); |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 454 | // We're using a real OmahaRequestParams object here so we can't mock |
| 455 | // IsUpdateUrlOfficial(), but setting the update URL to the AutoUpdate test |
| 456 | // server will cause IsUpdateUrlOfficial() to return true. |
Alex Deymo | ac41a82 | 2015-09-15 20:52:53 -0700 | [diff] [blame] | 457 | params.set_update_url(constants::kOmahaDefaultAUTestURL); |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 458 | fake_system_state_.set_request_params(¶ms); |
David Zeuthen | 8f191b2 | 2013-08-06 12:27:50 -0700 | [diff] [blame] | 459 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 460 | EXPECT_CALL(*fake_system_state_.mock_payload_state(), |
David Zeuthen | bb8bdc7 | 2013-09-03 13:43:48 -0700 | [diff] [blame] | 461 | SetUsingP2PForDownloading(true)); |
| 462 | |
David Zeuthen | 8f191b2 | 2013-08-06 12:27:50 -0700 | [diff] [blame] | 463 | string p2p_url = "http://9.8.7.6/p2p"; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 464 | EXPECT_CALL(*fake_system_state_.mock_payload_state(), GetP2PUrl()) |
Gilad Arnold | 74b5f55 | 2014-10-07 08:17:16 -0700 | [diff] [blame] | 465 | .WillRepeatedly(Return(p2p_url)); |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 466 | EXPECT_CALL(*fake_system_state_.mock_payload_state(), |
Gilad Arnold | 74b5f55 | 2014-10-07 08:17:16 -0700 | [diff] [blame] | 467 | GetUsingP2PForDownloading()).WillRepeatedly(Return(true)); |
David Zeuthen | 8f191b2 | 2013-08-06 12:27:50 -0700 | [diff] [blame] | 468 | |
| 469 | InstallPlan install_plan; |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 470 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 471 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
Sen Jiang | 2703ef4 | 2017-03-16 13:36:21 -0700 | [diff] [blame] | 472 | EXPECT_EQ(p2p_url, install_plan.download_url); |
David Zeuthen | 8f191b2 | 2013-08-06 12:27:50 -0700 | [diff] [blame] | 473 | EXPECT_TRUE(install_plan.hash_checks_mandatory); |
| 474 | } |
| 475 | |
Aaron Wood | 7dcdedf | 2017-09-06 17:17:41 -0700 | [diff] [blame] | 476 | TEST_F(OmahaResponseHandlerActionTest, SystemVersionTest) { |
| 477 | OmahaResponse in; |
| 478 | in.update_exists = true; |
| 479 | in.version = "a.b.c.d"; |
| 480 | in.system_version = "b.c.d.e"; |
| 481 | in.packages.push_back({.payload_urls = {"http://package/1"}, |
| 482 | .size = 1, |
| 483 | .hash = kPayloadHashHex}); |
| 484 | in.packages.push_back({.payload_urls = {"http://package/2"}, |
| 485 | .size = 2, |
| 486 | .hash = kPayloadHashHex}); |
| 487 | in.more_info_url = "http://more/info"; |
| 488 | InstallPlan install_plan; |
| 489 | EXPECT_TRUE(DoTest(in, "", &install_plan)); |
| 490 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 491 | EXPECT_EQ(2u, install_plan.payloads.size()); |
| 492 | EXPECT_EQ(in.packages[0].size, install_plan.payloads[0].size); |
| 493 | EXPECT_EQ(in.packages[1].size, install_plan.payloads[1].size); |
| 494 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
| 495 | EXPECT_EQ(expected_hash_, install_plan.payloads[1].hash); |
| 496 | EXPECT_EQ(in.version, install_plan.version); |
| 497 | EXPECT_EQ(in.system_version, install_plan.system_version); |
| 498 | } |
| 499 | |
Aaron Wood | 23bd339 | 2017-10-06 14:48:25 -0700 | [diff] [blame^] | 500 | TEST_F(OmahaResponseHandlerActionTest, TestDeferredByPolicy) { |
| 501 | OmahaResponse in; |
| 502 | in.update_exists = true; |
| 503 | in.version = "a.b.c.d"; |
| 504 | in.packages.push_back({.payload_urls = {"http://foo/the_update_a.b.c.d.tgz"}, |
| 505 | .size = 12, |
| 506 | .hash = kPayloadHashHex}); |
| 507 | // Setup the UpdateManager to disallow the update. |
| 508 | FakeClock fake_clock; |
| 509 | MockPolicy* mock_policy = new MockPolicy(&fake_clock); |
| 510 | FakeUpdateManager* fake_update_manager = |
| 511 | fake_system_state_.fake_update_manager(); |
| 512 | fake_update_manager->set_policy(mock_policy); |
| 513 | EXPECT_CALL(*mock_policy, UpdateCanBeApplied(_, _, _, _, _)) |
| 514 | .WillOnce( |
| 515 | DoAll(SetArgPointee<3>(ErrorCode::kOmahaUpdateDeferredPerPolicy), |
| 516 | Return(EvalStatus::kSucceeded))); |
| 517 | // Perform the Action. It should "fail" with kOmahaUpdateDeferredPerPolicy. |
| 518 | InstallPlan install_plan; |
| 519 | EXPECT_FALSE(DoTest(in, "", &install_plan)); |
| 520 | EXPECT_EQ(ErrorCode::kOmahaUpdateDeferredPerPolicy, action_result_code_); |
| 521 | // Verify that DoTest() didn't set the output install plan. |
| 522 | EXPECT_EQ("", install_plan.version); |
| 523 | // Copy the underlying InstallPlan from the Action (like a real Delegate). |
| 524 | install_plan = action_->install_plan(); |
| 525 | // Now verify the InstallPlan that was generated. |
| 526 | EXPECT_EQ(in.packages[0].payload_urls[0], install_plan.download_url); |
| 527 | EXPECT_EQ(expected_hash_, install_plan.payloads[0].hash); |
| 528 | EXPECT_EQ(1U, install_plan.target_slot); |
| 529 | EXPECT_EQ(in.version, install_plan.version); |
| 530 | } |
| 531 | |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 532 | } // namespace chromeos_update_engine |