blob: c551adf04df1a6cf5ab779c05c5ca65272085c9c [file] [log] [blame]
Mike Frysinger8155d082012-04-06 15:23:18 -04001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
adlr@google.com3defe6a2009-12-04 20:57:17 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Darin Petkov698d0412010-10-13 10:59:44 -07005#include <fcntl.h>
6
adlr@google.com3defe6a2009-12-04 20:57:17 +00007#include <set>
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -08008#include <string>
adlr@google.com3defe6a2009-12-04 20:57:17 +00009#include <vector>
Darin Petkov698d0412010-10-13 10:59:44 -070010
Chris Sosafc661a12013-02-26 14:43:21 -080011#include <base/posix/eintr_wrapper.h>
Alex Vakulenko75039d72014-03-25 12:36:28 -070012#include <base/strings/string_util.h>
13#include <base/strings/stringprintf.h>
Darin Petkov698d0412010-10-13 10:59:44 -070014#include <glib.h>
Don Garrett83692e42013-11-08 10:11:30 -080015#include <gmock/gmock.h>
adlr@google.com3defe6a2009-12-04 20:57:17 +000016#include <gtest/gtest.h>
Darin Petkov698d0412010-10-13 10:59:44 -070017
Gilad Arnold5bb4c902014-04-10 12:32:13 -070018#include "update_engine/fake_system_state.h"
adlr@google.com3defe6a2009-12-04 20:57:17 +000019#include "update_engine/filesystem_copier_action.h"
Don Garrett6646b442013-11-13 15:29:11 -080020#include "update_engine/mock_hardware.h"
adlr@google.com3defe6a2009-12-04 20:57:17 +000021#include "update_engine/omaha_hash_calculator.h"
22#include "update_engine/test_utils.h"
23#include "update_engine/utils.h"
24
25using std::set;
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080026using std::string;
adlr@google.com3defe6a2009-12-04 20:57:17 +000027using std::vector;
28
29namespace chromeos_update_engine {
30
31class FilesystemCopierActionTest : public ::testing::Test {
32 protected:
Darin Petkov3aefa862010-12-07 14:45:00 -080033 // |verify_hash|: 0 - no hash verification, 1 -- successful hash verification,
34 // 2 -- hash verification failure.
Gilad Arnoldae236702012-05-17 09:33:20 -070035 // Returns true iff test has completed successfully.
Gilad Arnoldae236702012-05-17 09:33:20 -070036 bool DoTest(bool run_out_of_space,
Andrew de los Reyesf9185172010-05-03 11:07:05 -070037 bool terminate_early,
Darin Petkov3aefa862010-12-07 14:45:00 -080038 bool use_kernel_partition,
Gilad Arnold6dbbd392012-07-10 16:19:11 -070039 int verify_hash);
adlr@google.com3defe6a2009-12-04 20:57:17 +000040 void SetUp() {
adlr@google.com3defe6a2009-12-04 20:57:17 +000041 }
42 void TearDown() {
adlr@google.com3defe6a2009-12-04 20:57:17 +000043 }
Don Garrett6646b442013-11-13 15:29:11 -080044
Gilad Arnold5bb4c902014-04-10 12:32:13 -070045 FakeSystemState fake_system_state_;
adlr@google.com3defe6a2009-12-04 20:57:17 +000046};
47
48class FilesystemCopierActionTestDelegate : public ActionProcessorDelegate {
49 public:
Ben Chan2add7d72012-10-08 19:28:37 -070050 FilesystemCopierActionTestDelegate(GMainLoop* loop,
51 FilesystemCopierAction* action)
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -070052 : loop_(loop), action_(action), ran_(false), code_(ErrorCode::kError) {}
Andrew de los Reyesc7020782010-04-28 10:46:04 -070053 void ExitMainLoop() {
Ben Chan2add7d72012-10-08 19:28:37 -070054 GMainContext* context = g_main_loop_get_context(loop_);
55 // We cannot use g_main_context_pending() alone to determine if it is safe
Alex Vakulenko072359c2014-07-18 11:41:07 -070056 // to quit the main loop here because g_main_context_pending() may return
Ben Chan2add7d72012-10-08 19:28:37 -070057 // FALSE when g_input_stream_read_async() in FilesystemCopierAction has
58 // been cancelled but the callback has not yet been invoked.
59 while (g_main_context_pending(context) || action_->IsCleanupPending()) {
60 g_main_context_iteration(context, false);
61 g_usleep(100);
Andrew de los Reyesc7020782010-04-28 10:46:04 -070062 }
adlr@google.com3defe6a2009-12-04 20:57:17 +000063 g_main_loop_quit(loop_);
64 }
David Zeuthena99981f2013-04-29 13:42:47 -070065 void ProcessingDone(const ActionProcessor* processor, ErrorCode code) {
Andrew de los Reyesc7020782010-04-28 10:46:04 -070066 ExitMainLoop();
67 }
68 void ProcessingStopped(const ActionProcessor* processor) {
69 ExitMainLoop();
70 }
adlr@google.com3defe6a2009-12-04 20:57:17 +000071 void ActionCompleted(ActionProcessor* processor,
72 AbstractAction* action,
David Zeuthena99981f2013-04-29 13:42:47 -070073 ErrorCode code) {
adlr@google.com3defe6a2009-12-04 20:57:17 +000074 if (action->Type() == FilesystemCopierAction::StaticType()) {
75 ran_ = true;
Darin Petkovc1a8b422010-07-19 11:34:49 -070076 code_ = code;
adlr@google.com3defe6a2009-12-04 20:57:17 +000077 }
78 }
Ben Chan2add7d72012-10-08 19:28:37 -070079 bool ran() const { return ran_; }
David Zeuthena99981f2013-04-29 13:42:47 -070080 ErrorCode code() const { return code_; }
Alex Vakulenkod2779df2014-06-16 13:19:00 -070081
adlr@google.com3defe6a2009-12-04 20:57:17 +000082 private:
83 GMainLoop* loop_;
Ben Chan2add7d72012-10-08 19:28:37 -070084 FilesystemCopierAction* action_;
adlr@google.com3defe6a2009-12-04 20:57:17 +000085 bool ran_;
David Zeuthena99981f2013-04-29 13:42:47 -070086 ErrorCode code_;
adlr@google.com3defe6a2009-12-04 20:57:17 +000087};
88
Andrew de los Reyesc7020782010-04-28 10:46:04 -070089struct StartProcessorCallbackArgs {
90 ActionProcessor* processor;
91 FilesystemCopierAction* filesystem_copier_action;
92 bool terminate_early;
93};
94
adlr@google.com3defe6a2009-12-04 20:57:17 +000095gboolean StartProcessorInRunLoop(gpointer data) {
Andrew de los Reyesc7020782010-04-28 10:46:04 -070096 StartProcessorCallbackArgs* args =
97 reinterpret_cast<StartProcessorCallbackArgs*>(data);
98 ActionProcessor* processor = args->processor;
adlr@google.com3defe6a2009-12-04 20:57:17 +000099 processor->StartProcessing();
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700100 if (args->terminate_early) {
101 EXPECT_TRUE(args->filesystem_copier_action);
102 args->processor->StopProcessing();
103 }
adlr@google.com3defe6a2009-12-04 20:57:17 +0000104 return FALSE;
105}
106
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700107// TODO(garnold) Temporarily disabling this test, see chromium-os:31082 for
108// details; still trying to track down the root cause for these rare write
109// failures and whether or not they are due to the test setup or an inherent
Alex Vakulenko072359c2014-07-18 11:41:07 -0700110// issue with the chroot environment, library versions we use, etc.
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700111TEST_F(FilesystemCopierActionTest, DISABLED_RunAsRootSimpleTest) {
adlr@google.com3defe6a2009-12-04 20:57:17 +0000112 ASSERT_EQ(0, getuid());
Don Garrett83692e42013-11-08 10:11:30 -0800113 bool test = DoTest(false, false, true, 0);
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700114 EXPECT_TRUE(test);
115 if (!test)
116 return;
Don Garrett83692e42013-11-08 10:11:30 -0800117 test = DoTest(false, false, false, 0);
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700118 EXPECT_TRUE(test);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000119}
Darin Petkov3aefa862010-12-07 14:45:00 -0800120
Gilad Arnoldae236702012-05-17 09:33:20 -0700121bool FilesystemCopierActionTest::DoTest(bool run_out_of_space,
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700122 bool terminate_early,
Darin Petkov3aefa862010-12-07 14:45:00 -0800123 bool use_kernel_partition,
Gilad Arnold6dbbd392012-07-10 16:19:11 -0700124 int verify_hash) {
Don Garrett6646b442013-11-13 15:29:11 -0800125 // We need MockHardware to verify MarkUnbootable calls, but don't want
126 // warnings about other usages.
127 testing::NiceMock<MockHardware> mock_hardware;
Gilad Arnold5bb4c902014-04-10 12:32:13 -0700128 fake_system_state_.set_hardware(&mock_hardware);
Don Garrett83692e42013-11-08 10:11:30 -0800129
adlr@google.com3defe6a2009-12-04 20:57:17 +0000130 GMainLoop *loop = g_main_loop_new(g_main_context_default(), FALSE);
131
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700132 string a_loop_file;
133 string b_loop_file;
Darin Petkovc1a8b422010-07-19 11:34:49 -0700134
Alex Vakulenko88b591f2014-08-28 16:48:57 -0700135 if (!(utils::MakeTempFile("a_loop_file.XXXXXX", &a_loop_file, nullptr) &&
136 utils::MakeTempFile("b_loop_file.XXXXXX", &b_loop_file, nullptr))) {
Gilad Arnoldae236702012-05-17 09:33:20 -0700137 ADD_FAILURE();
138 return false;
139 }
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700140 ScopedPathUnlinker a_loop_file_unlinker(a_loop_file);
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700141 ScopedPathUnlinker b_loop_file_unlinker(b_loop_file);
Darin Petkovc1a8b422010-07-19 11:34:49 -0700142
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700143 // Make random data for a, zero filled data for b.
Gilad Arnold6dbbd392012-07-10 16:19:11 -0700144 const size_t kLoopFileSize = 10 * 1024 * 1024 + 512;
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700145 vector<char> a_loop_data(kLoopFileSize);
Alex Deymo10875d92014-11-10 21:52:57 -0800146 test_utils::FillWithData(&a_loop_data);
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700147 vector<char> b_loop_data(run_out_of_space ?
148 (kLoopFileSize - 1) :
149 kLoopFileSize,
150 '\0'); // Fill with 0s
adlr@google.com3defe6a2009-12-04 20:57:17 +0000151
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700152 // Write data to disk
Alex Deymo10875d92014-11-10 21:52:57 -0800153 if (!(test_utils::WriteFileVector(a_loop_file, a_loop_data) &&
154 test_utils::WriteFileVector(b_loop_file, b_loop_data))) {
Gilad Arnoldae236702012-05-17 09:33:20 -0700155 ADD_FAILURE();
156 return false;
157 }
adlr@google.com3defe6a2009-12-04 20:57:17 +0000158
Don Garrett58e8b1f2012-01-31 16:38:16 -0800159 // Attach loop devices to the files
160 string a_dev;
161 string b_dev;
adlr@google.com3defe6a2009-12-04 20:57:17 +0000162
Alex Deymo10875d92014-11-10 21:52:57 -0800163 test_utils::ScopedLoopbackDeviceBinder a_dev_releaser(a_loop_file, &a_dev);
164 test_utils::ScopedLoopbackDeviceBinder b_dev_releaser(b_loop_file, &b_dev);
Gilad Arnoldc33faeb2012-07-24 15:11:11 -0700165 if (!(a_dev_releaser.is_bound() && b_dev_releaser.is_bound())) {
166 ADD_FAILURE();
167 return false;
168 }
adlr@google.com3defe6a2009-12-04 20:57:17 +0000169
Gilad Arnoldc33faeb2012-07-24 15:11:11 -0700170 LOG(INFO) << "copying: "
171 << a_loop_file << " (" << a_dev << ") -> "
172 << b_loop_file << " (" << b_dev << ", "
173 << kLoopFileSize << " bytes";
Gilad Arnoldae236702012-05-17 09:33:20 -0700174 bool success = true;
175
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700176 // Set up the action objects
adlr@google.com3defe6a2009-12-04 20:57:17 +0000177 InstallPlan install_plan;
Darin Petkov3aefa862010-12-07 14:45:00 -0800178 if (verify_hash) {
179 if (use_kernel_partition) {
180 install_plan.kernel_install_path = a_dev;
181 install_plan.kernel_size =
182 kLoopFileSize - ((verify_hash == 2) ? 1 : 0);
Gilad Arnoldae236702012-05-17 09:33:20 -0700183 if (!OmahaHashCalculator::RawHashOfData(a_loop_data,
184 &install_plan.kernel_hash)) {
185 ADD_FAILURE();
186 success = false;
187 }
Darin Petkov3aefa862010-12-07 14:45:00 -0800188 } else {
189 install_plan.install_path = a_dev;
190 install_plan.rootfs_size =
191 kLoopFileSize - ((verify_hash == 2) ? 1 : 0);
Gilad Arnoldae236702012-05-17 09:33:20 -0700192 if (!OmahaHashCalculator::RawHashOfData(a_loop_data,
193 &install_plan.rootfs_hash)) {
194 ADD_FAILURE();
195 success = false;
196 }
Darin Petkov3aefa862010-12-07 14:45:00 -0800197 }
198 } else {
199 if (use_kernel_partition) {
200 install_plan.kernel_install_path = b_dev;
201 } else {
202 install_plan.install_path = b_dev;
203 }
204 }
adlr@google.com3defe6a2009-12-04 20:57:17 +0000205
Don Garrett6646b442013-11-13 15:29:11 -0800206 EXPECT_CALL(mock_hardware,
Don Garrett83692e42013-11-08 10:11:30 -0800207 MarkKernelUnbootable(a_dev)).Times(use_kernel_partition ? 1 : 0);
208
adlr@google.com3defe6a2009-12-04 20:57:17 +0000209 ActionProcessor processor;
adlr@google.com3defe6a2009-12-04 20:57:17 +0000210
211 ObjectFeederAction<InstallPlan> feeder_action;
Gilad Arnold5bb4c902014-04-10 12:32:13 -0700212 FilesystemCopierAction copier_action(&fake_system_state_,
Alex Deymo42432912013-07-12 20:21:15 -0700213 use_kernel_partition,
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700214 verify_hash != 0);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000215 ObjectCollectorAction<InstallPlan> collector_action;
216
217 BondActions(&feeder_action, &copier_action);
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700218 BondActions(&copier_action, &collector_action);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000219
Ben Chan2add7d72012-10-08 19:28:37 -0700220 FilesystemCopierActionTestDelegate delegate(loop, &copier_action);
221 processor.set_delegate(&delegate);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000222 processor.EnqueueAction(&feeder_action);
223 processor.EnqueueAction(&copier_action);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000224 processor.EnqueueAction(&collector_action);
225
Darin Petkov3aefa862010-12-07 14:45:00 -0800226 if (!verify_hash) {
227 copier_action.set_copy_source(a_dev);
228 }
adlr@google.com3defe6a2009-12-04 20:57:17 +0000229 feeder_action.set_obj(install_plan);
230
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700231 StartProcessorCallbackArgs start_callback_args;
232 start_callback_args.processor = &processor;
233 start_callback_args.filesystem_copier_action = &copier_action;
234 start_callback_args.terminate_early = terminate_early;
235
236 g_timeout_add(0, &StartProcessorInRunLoop, &start_callback_args);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000237 g_main_loop_run(loop);
238 g_main_loop_unref(loop);
239
Gilad Arnoldae236702012-05-17 09:33:20 -0700240 if (!terminate_early) {
241 bool is_delegate_ran = delegate.ran();
242 EXPECT_TRUE(is_delegate_ran);
243 success = success && is_delegate_ran;
244 }
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700245 if (run_out_of_space || terminate_early) {
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700246 EXPECT_EQ(ErrorCode::kError, delegate.code());
247 return (ErrorCode::kError == delegate.code());
adlr@google.com3defe6a2009-12-04 20:57:17 +0000248 }
Darin Petkov3aefa862010-12-07 14:45:00 -0800249 if (verify_hash == 2) {
David Zeuthena99981f2013-04-29 13:42:47 -0700250 ErrorCode expected_exit_code =
Gilad Arnoldae236702012-05-17 09:33:20 -0700251 (use_kernel_partition ?
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700252 ErrorCode::kNewKernelVerificationError :
253 ErrorCode::kNewRootfsVerificationError);
Gilad Arnoldae236702012-05-17 09:33:20 -0700254 EXPECT_EQ(expected_exit_code, delegate.code());
255 return (expected_exit_code == delegate.code());
Darin Petkov3aefa862010-12-07 14:45:00 -0800256 }
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700257 EXPECT_EQ(ErrorCode::kSuccess, delegate.code());
adlr@google.com3defe6a2009-12-04 20:57:17 +0000258
adlr@google.com3defe6a2009-12-04 20:57:17 +0000259 // Make sure everything in the out_image is there
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700260 vector<char> a_out;
Gilad Arnoldae236702012-05-17 09:33:20 -0700261 if (!utils::ReadFile(a_dev, &a_out)) {
262 ADD_FAILURE();
263 return false;
264 }
Alex Deymo10875d92014-11-10 21:52:57 -0800265 const bool is_a_file_reading_eq =
266 test_utils::ExpectVectorsEq(a_loop_data, a_out);
Gilad Arnold308b85e2012-06-07 15:50:16 -0700267 EXPECT_TRUE(is_a_file_reading_eq);
268 success = success && is_a_file_reading_eq;
Darin Petkov3aefa862010-12-07 14:45:00 -0800269 if (!verify_hash) {
270 vector<char> b_out;
Gilad Arnoldae236702012-05-17 09:33:20 -0700271 if (!utils::ReadFile(b_dev, &b_out)) {
272 ADD_FAILURE();
273 return false;
274 }
Alex Deymo10875d92014-11-10 21:52:57 -0800275 const bool is_b_file_reading_eq = test_utils::ExpectVectorsEq(a_out, b_out);
Gilad Arnold308b85e2012-06-07 15:50:16 -0700276 EXPECT_TRUE(is_b_file_reading_eq);
277 success = success && is_b_file_reading_eq;
Darin Petkov3aefa862010-12-07 14:45:00 -0800278 }
adlr@google.com3defe6a2009-12-04 20:57:17 +0000279
Gilad Arnoldae236702012-05-17 09:33:20 -0700280 bool is_install_plan_eq = (collector_action.object() == install_plan);
281 EXPECT_TRUE(is_install_plan_eq);
282 success = success && is_install_plan_eq;
283
Don Garrett83692e42013-11-08 10:11:30 -0800284 LOG(INFO) << "Verifying bootable flag on: " << a_dev;
285 bool bootable;
Don Garrett6646b442013-11-13 15:29:11 -0800286 EXPECT_TRUE(mock_hardware.fake().IsKernelBootable(a_dev, &bootable));
Don Garrett83692e42013-11-08 10:11:30 -0800287 // We should always mark a partition as unbootable if it's a kernel
288 // partition, but never if it's anything else.
289 EXPECT_EQ(bootable, !use_kernel_partition);
290
Gilad Arnoldae236702012-05-17 09:33:20 -0700291 return success;
adlr@google.com3defe6a2009-12-04 20:57:17 +0000292}
293
294class FilesystemCopierActionTest2Delegate : public ActionProcessorDelegate {
295 public:
296 void ActionCompleted(ActionProcessor* processor,
297 AbstractAction* action,
David Zeuthena99981f2013-04-29 13:42:47 -0700298 ErrorCode code) {
adlr@google.com3defe6a2009-12-04 20:57:17 +0000299 if (action->Type() == FilesystemCopierAction::StaticType()) {
300 ran_ = true;
Darin Petkovc1a8b422010-07-19 11:34:49 -0700301 code_ = code;
adlr@google.com3defe6a2009-12-04 20:57:17 +0000302 }
303 }
304 GMainLoop *loop_;
305 bool ran_;
David Zeuthena99981f2013-04-29 13:42:47 -0700306 ErrorCode code_;
adlr@google.com3defe6a2009-12-04 20:57:17 +0000307};
308
309TEST_F(FilesystemCopierActionTest, MissingInputObjectTest) {
310 ActionProcessor processor;
311 FilesystemCopierActionTest2Delegate delegate;
312
313 processor.set_delegate(&delegate);
314
Gilad Arnold5bb4c902014-04-10 12:32:13 -0700315 FilesystemCopierAction copier_action(&fake_system_state_, false, false);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000316 ObjectCollectorAction<InstallPlan> collector_action;
317
318 BondActions(&copier_action, &collector_action);
319
320 processor.EnqueueAction(&copier_action);
321 processor.EnqueueAction(&collector_action);
322 processor.StartProcessing();
323 EXPECT_FALSE(processor.IsRunning());
324 EXPECT_TRUE(delegate.ran_);
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700325 EXPECT_EQ(ErrorCode::kError, delegate.code_);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000326}
327
Darin Petkov9b230572010-10-08 10:20:09 -0700328TEST_F(FilesystemCopierActionTest, ResumeTest) {
329 ActionProcessor processor;
330 FilesystemCopierActionTest2Delegate delegate;
331
332 processor.set_delegate(&delegate);
333
334 ObjectFeederAction<InstallPlan> feeder_action;
335 const char* kUrl = "http://some/url";
David Zeuthene7f89172013-10-31 10:21:04 -0700336 InstallPlan install_plan(false, true, kUrl, 0, "", 0, "", "", "", "");
Darin Petkov9b230572010-10-08 10:20:09 -0700337 feeder_action.set_obj(install_plan);
Gilad Arnold5bb4c902014-04-10 12:32:13 -0700338 FilesystemCopierAction copier_action(&fake_system_state_, false, false);
Darin Petkov9b230572010-10-08 10:20:09 -0700339 ObjectCollectorAction<InstallPlan> collector_action;
340
341 BondActions(&feeder_action, &copier_action);
342 BondActions(&copier_action, &collector_action);
343
344 processor.EnqueueAction(&feeder_action);
345 processor.EnqueueAction(&copier_action);
346 processor.EnqueueAction(&collector_action);
347 processor.StartProcessing();
348 EXPECT_FALSE(processor.IsRunning());
349 EXPECT_TRUE(delegate.ran_);
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700350 EXPECT_EQ(ErrorCode::kSuccess, delegate.code_);
Darin Petkov9b230572010-10-08 10:20:09 -0700351 EXPECT_EQ(kUrl, collector_action.object().download_url);
352}
353
adlr@google.com3defe6a2009-12-04 20:57:17 +0000354TEST_F(FilesystemCopierActionTest, NonExistentDriveTest) {
355 ActionProcessor processor;
356 FilesystemCopierActionTest2Delegate delegate;
357
358 processor.set_delegate(&delegate);
359
360 ObjectFeederAction<InstallPlan> feeder_action;
Darin Petkov0406e402010-10-06 21:33:11 -0700361 InstallPlan install_plan(false,
Gilad Arnold21504f02013-05-24 08:51:22 -0700362 false,
Darin Petkov0406e402010-10-06 21:33:11 -0700363 "",
364 0,
365 "",
Jay Srinivasan51dcf262012-09-13 17:24:32 -0700366 0,
367 "",
Darin Petkov0406e402010-10-06 21:33:11 -0700368 "/no/such/file",
David Zeuthene7f89172013-10-31 10:21:04 -0700369 "/no/such/file",
370 "");
adlr@google.com3defe6a2009-12-04 20:57:17 +0000371 feeder_action.set_obj(install_plan);
Gilad Arnold5bb4c902014-04-10 12:32:13 -0700372 FilesystemCopierAction copier_action(&fake_system_state_, false, false);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000373 ObjectCollectorAction<InstallPlan> collector_action;
374
375 BondActions(&copier_action, &collector_action);
376
377 processor.EnqueueAction(&feeder_action);
378 processor.EnqueueAction(&copier_action);
379 processor.EnqueueAction(&collector_action);
380 processor.StartProcessing();
381 EXPECT_FALSE(processor.IsRunning());
382 EXPECT_TRUE(delegate.ran_);
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700383 EXPECT_EQ(ErrorCode::kError, delegate.code_);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000384}
385
Darin Petkov3aefa862010-12-07 14:45:00 -0800386TEST_F(FilesystemCopierActionTest, RunAsRootVerifyHashTest) {
387 ASSERT_EQ(0, getuid());
Gilad Arnoldae236702012-05-17 09:33:20 -0700388 EXPECT_TRUE(DoTest(false, false, false, 1));
389 EXPECT_TRUE(DoTest(false, false, true, 1));
Darin Petkov3aefa862010-12-07 14:45:00 -0800390}
391
392TEST_F(FilesystemCopierActionTest, RunAsRootVerifyHashFailTest) {
393 ASSERT_EQ(0, getuid());
Gilad Arnoldae236702012-05-17 09:33:20 -0700394 EXPECT_TRUE(DoTest(false, false, false, 2));
395 EXPECT_TRUE(DoTest(false, false, true, 2));
Darin Petkov3aefa862010-12-07 14:45:00 -0800396}
397
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700398TEST_F(FilesystemCopierActionTest, RunAsRootNoSpaceTest) {
adlr@google.com3defe6a2009-12-04 20:57:17 +0000399 ASSERT_EQ(0, getuid());
Gilad Arnoldae236702012-05-17 09:33:20 -0700400 EXPECT_TRUE(DoTest(true, false, false, 0));
adlr@google.com3defe6a2009-12-04 20:57:17 +0000401}
402
Andrew de los Reyesc7020782010-04-28 10:46:04 -0700403TEST_F(FilesystemCopierActionTest, RunAsRootTerminateEarlyTest) {
adlr@google.com3defe6a2009-12-04 20:57:17 +0000404 ASSERT_EQ(0, getuid());
Gilad Arnoldae236702012-05-17 09:33:20 -0700405 EXPECT_TRUE(DoTest(false, true, false, 0));
adlr@google.com3defe6a2009-12-04 20:57:17 +0000406}
407
Darin Petkov698d0412010-10-13 10:59:44 -0700408TEST_F(FilesystemCopierActionTest, RunAsRootDetermineFilesystemSizeTest) {
409 string img;
Alex Vakulenko88b591f2014-08-28 16:48:57 -0700410 EXPECT_TRUE(utils::MakeTempFile("img.XXXXXX", &img, nullptr));
Darin Petkov698d0412010-10-13 10:59:44 -0700411 ScopedPathUnlinker img_unlinker(img);
Alex Deymo10875d92014-11-10 21:52:57 -0800412 test_utils::CreateExtImageAtPath(img, nullptr);
Darin Petkov698d0412010-10-13 10:59:44 -0700413 // Extend the "partition" holding the file system from 10MiB to 20MiB.
Alex Deymo10875d92014-11-10 21:52:57 -0800414 EXPECT_EQ(0, test_utils::System(base::StringPrintf(
Darin Petkov698d0412010-10-13 10:59:44 -0700415 "dd if=/dev/zero of=%s seek=20971519 bs=1 count=1",
416 img.c_str())));
417 EXPECT_EQ(20 * 1024 * 1024, utils::FileSize(img));
418
419 for (int i = 0; i < 2; ++i) {
420 bool is_kernel = i == 1;
Gilad Arnold5bb4c902014-04-10 12:32:13 -0700421 FilesystemCopierAction action(&fake_system_state_, is_kernel, false);
Darin Petkov698d0412010-10-13 10:59:44 -0700422 EXPECT_EQ(kint64max, action.filesystem_size_);
423 {
424 int fd = HANDLE_EINTR(open(img.c_str(), O_RDONLY));
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700425 EXPECT_GT(fd, 0);
Darin Petkov698d0412010-10-13 10:59:44 -0700426 ScopedFdCloser fd_closer(&fd);
427 action.DetermineFilesystemSize(fd);
428 }
429 EXPECT_EQ(is_kernel ? kint64max : 10 * 1024 * 1024,
430 action.filesystem_size_);
431 }
432}
433
434
adlr@google.com3defe6a2009-12-04 20:57:17 +0000435} // namespace chromeos_update_engine