| // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <string> |
| |
| #include <gtest/gtest.h> |
| |
| #include "update_engine/omaha_response_handler_action.h" |
| #include "update_engine/prefs_mock.h" |
| #include "update_engine/test_utils.h" |
| #include "update_engine/utils.h" |
| |
| using std::string; |
| using testing::Return; |
| |
| namespace chromeos_update_engine { |
| |
| class OmahaResponseHandlerActionTest : public ::testing::Test { |
| public: |
| // Return true iff the OmahaResponseHandlerAction succeeded. |
| // If out is non-NULL, it's set w/ the response from the action. |
| bool DoTest(const OmahaResponse& in, |
| const string& boot_dev, |
| InstallPlan* out); |
| }; |
| |
| class OmahaResponseHandlerActionProcessorDelegate |
| : public ActionProcessorDelegate { |
| public: |
| OmahaResponseHandlerActionProcessorDelegate() |
| : code_(kActionCodeError), |
| code_set_(false) {} |
| void ActionCompleted(ActionProcessor* processor, |
| AbstractAction* action, |
| ActionExitCode code) { |
| if (action->Type() == OmahaResponseHandlerAction::StaticType()) { |
| code_ = code; |
| code_set_ = true; |
| } |
| } |
| ActionExitCode code_; |
| bool code_set_; |
| }; |
| |
| namespace { |
| const string kLongName = |
| "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| "very_long_name_and_no_slashes-very_long_name_and_no_slashes" |
| "-the_update_a.b.c.d_DELTA_.tgz"; |
| } // namespace {} |
| |
| bool OmahaResponseHandlerActionTest::DoTest(const OmahaResponse& in, |
| const string& boot_dev, |
| InstallPlan* out) { |
| ActionProcessor processor; |
| OmahaResponseHandlerActionProcessorDelegate delegate; |
| processor.set_delegate(&delegate); |
| |
| ObjectFeederAction<OmahaResponse> feeder_action; |
| feeder_action.set_obj(in); |
| PrefsMock prefs; |
| if (in.update_exists) { |
| EXPECT_CALL(prefs, SetString(kPrefsUpdateCheckResponseHash, in.hash)) |
| .WillOnce(Return(true)); |
| } |
| OmahaResponseHandlerAction response_handler_action(&prefs); |
| response_handler_action.set_boot_device(boot_dev); |
| BondActions(&feeder_action, &response_handler_action); |
| ObjectCollectorAction<InstallPlan> collector_action; |
| BondActions(&response_handler_action, &collector_action); |
| processor.EnqueueAction(&feeder_action); |
| processor.EnqueueAction(&response_handler_action); |
| processor.EnqueueAction(&collector_action); |
| processor.StartProcessing(); |
| EXPECT_TRUE(!processor.IsRunning()) |
| << "Update test to handle non-asynch actions"; |
| if (out) |
| *out = collector_action.object(); |
| EXPECT_TRUE(delegate.code_set_); |
| return delegate.code_ == kActionCodeSuccess; |
| } |
| |
| TEST_F(OmahaResponseHandlerActionTest, SimpleTest) { |
| ScopedPathUnlinker deadline_unlinker( |
| OmahaResponseHandlerAction::kDeadlineFile); |
| { |
| OmahaResponse in; |
| in.update_exists = true; |
| in.display_version = "a.b.c.d"; |
| in.codebase = "http://foo/the_update_a.b.c.d.tgz"; |
| in.more_info_url = "http://more/info"; |
| in.hash = "HASH+"; |
| in.size = 12; |
| in.needs_admin = true; |
| in.prompt = false; |
| in.is_delta = false; |
| in.deadline = "20101020"; |
| InstallPlan install_plan; |
| EXPECT_TRUE(DoTest(in, "/dev/sda3", &install_plan)); |
| EXPECT_TRUE(install_plan.is_full_update); |
| EXPECT_EQ(in.codebase, install_plan.download_url); |
| EXPECT_EQ(in.hash, install_plan.download_hash); |
| EXPECT_EQ("/dev/sda5", install_plan.install_path); |
| string deadline; |
| EXPECT_TRUE(utils::ReadFileToString( |
| OmahaResponseHandlerAction::kDeadlineFile, |
| &deadline)); |
| EXPECT_EQ("20101020", deadline); |
| struct stat deadline_stat; |
| EXPECT_EQ(0, stat(OmahaResponseHandlerAction::kDeadlineFile, |
| &deadline_stat)); |
| EXPECT_EQ(S_IFREG | S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH, |
| deadline_stat.st_mode); |
| } |
| { |
| OmahaResponse in; |
| in.update_exists = true; |
| in.display_version = "a.b.c.d"; |
| in.codebase = "http://foo/the_update_a.b.c.d.tgz"; |
| in.more_info_url = "http://more/info"; |
| in.hash = "HASHj+"; |
| in.size = 12; |
| in.needs_admin = true; |
| in.prompt = true; |
| in.is_delta = true; |
| InstallPlan install_plan; |
| EXPECT_TRUE(DoTest(in, "/dev/sda5", &install_plan)); |
| EXPECT_FALSE(install_plan.is_full_update); |
| EXPECT_EQ(in.codebase, install_plan.download_url); |
| EXPECT_EQ(in.hash, install_plan.download_hash); |
| EXPECT_EQ("/dev/sda3", install_plan.install_path); |
| string deadline; |
| EXPECT_TRUE(utils::ReadFileToString( |
| OmahaResponseHandlerAction::kDeadlineFile, |
| &deadline) && deadline.empty()); |
| } |
| { |
| OmahaResponse in; |
| in.update_exists = true; |
| in.display_version = "a.b.c.d"; |
| in.codebase = kLongName; |
| in.more_info_url = "http://more/info"; |
| in.hash = "HASHj+"; |
| in.size = 12; |
| in.needs_admin = true; |
| in.prompt = true; |
| in.is_delta = false; |
| in.deadline = "some-deadline"; |
| InstallPlan install_plan; |
| EXPECT_TRUE(DoTest(in, "/dev/sda3", &install_plan)); |
| EXPECT_TRUE(install_plan.is_full_update); |
| EXPECT_EQ(in.codebase, install_plan.download_url); |
| EXPECT_EQ(in.hash, install_plan.download_hash); |
| EXPECT_EQ("/dev/sda5", install_plan.install_path); |
| string deadline; |
| EXPECT_TRUE(utils::ReadFileToString( |
| OmahaResponseHandlerAction::kDeadlineFile, |
| &deadline)); |
| EXPECT_EQ("some-deadline", deadline); |
| } |
| } |
| |
| TEST_F(OmahaResponseHandlerActionTest, NoUpdatesTest) { |
| OmahaResponse in; |
| in.update_exists = false; |
| InstallPlan install_plan; |
| EXPECT_FALSE(DoTest(in, "/dev/sda1", &install_plan)); |
| EXPECT_FALSE(install_plan.is_full_update); |
| EXPECT_EQ("", install_plan.download_url); |
| EXPECT_EQ("", install_plan.download_hash); |
| EXPECT_EQ("", install_plan.install_path); |
| } |
| |
| } // namespace chromeos_update_engine |