Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Unified Diff: src/platform/update_engine/omaha_response_handler_action_unittest.cc

Issue 2044001: AU: Minor fixes to get it to do full update on real device (Closed) Base URL: ssh://git@chromiumos-git/chromeos
Patch Set: fixes for review Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/platform/update_engine/omaha_response_handler_action_unittest.cc
diff --git a/src/platform/update_engine/omaha_response_handler_action_unittest.cc b/src/platform/update_engine/omaha_response_handler_action_unittest.cc
index 44643326a7c1fd22fd24decbd1212f74f1f14fed..e997ea94a8117a4dbf0bd2b58dad04d52f2dd2c6 100644
--- a/src/platform/update_engine/omaha_response_handler_action_unittest.cc
+++ b/src/platform/update_engine/omaha_response_handler_action_unittest.cc
@@ -89,11 +89,11 @@ TEST_F(OmahaResponseHandlerActionTest, SimpleTest) {
in.needs_admin = true;
in.prompt = false;
InstallPlan install_plan;
- EXPECT_TRUE(DoTest(in, "/dev/sda1", &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/sda2", install_plan.install_path);
+ EXPECT_EQ("/dev/sda5", install_plan.install_path);
}
{
UpdateCheckResponse in;
@@ -106,7 +106,7 @@ TEST_F(OmahaResponseHandlerActionTest, SimpleTest) {
in.needs_admin = true;
in.prompt = true;
InstallPlan install_plan;
- EXPECT_TRUE(DoTest(in, "/dev/sda4", &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);
@@ -123,11 +123,11 @@ TEST_F(OmahaResponseHandlerActionTest, SimpleTest) {
in.needs_admin = true;
in.prompt = true;
InstallPlan install_plan;
- EXPECT_TRUE(DoTest(in, "/dev/sda4", &install_plan));
+ EXPECT_TRUE(DoTest(in, "/dev/sda3", &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);
+ EXPECT_EQ("/dev/sda5", install_plan.install_path);
}
}
« no previous file with comments | « src/platform/update_engine/omaha_response_handler_action.cc ('k') | src/platform/update_engine/update_attempter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698