Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2012 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 | // |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 16 | |
Alex Deymo | 8427b4a | 2014-11-05 14:00:32 -0800 | [diff] [blame] | 17 | #include "update_engine/p2p_manager.h" |
| 18 | |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 19 | #include <dirent.h> |
Alex Vakulenko | 44cab30 | 2014-07-23 13:12:15 -0700 | [diff] [blame] | 20 | #include <fcntl.h> |
| 21 | #include <sys/stat.h> |
Alex Deymo | 6f20dd4 | 2015-08-18 16:42:46 -0700 | [diff] [blame] | 22 | #include <sys/types.h> |
| 23 | #include <sys/xattr.h> |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 24 | #include <unistd.h> |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 25 | |
Ben Chan | 02f7c1d | 2014-10-18 15:18:02 -0700 | [diff] [blame] | 26 | #include <memory> |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 27 | #include <string> |
| 28 | #include <vector> |
Ben Chan | 02f7c1d | 2014-10-18 15:18:02 -0700 | [diff] [blame] | 29 | |
Alex Deymo | 8427b4a | 2014-11-05 14:00:32 -0800 | [diff] [blame] | 30 | #include <base/bind.h> |
| 31 | #include <base/callback.h> |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 32 | #include <base/files/file_util.h> |
Alex Deymo | 0b3db6b | 2015-08-10 15:19:37 -0700 | [diff] [blame] | 33 | #include <base/message_loop/message_loop.h> |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 34 | #include <base/strings/stringprintf.h> |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 35 | #include <brillo/asynchronous_signal_handler.h> |
| 36 | #include <brillo/message_loops/base_message_loop.h> |
| 37 | #include <brillo/message_loops/message_loop.h> |
| 38 | #include <brillo/message_loops/message_loop_utils.h> |
Alex Deymo | 8427b4a | 2014-11-05 14:00:32 -0800 | [diff] [blame] | 39 | #include <gmock/gmock.h> |
| 40 | #include <gtest/gtest.h> |
David Zeuthen | 92d9c8b | 2013-09-11 10:58:11 -0700 | [diff] [blame] | 41 | #include <policy/libpolicy.h> |
| 42 | #include <policy/mock_device_policy.h> |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 43 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 44 | #include "update_engine/common/fake_clock.h" |
| 45 | #include "update_engine/common/prefs.h" |
| 46 | #include "update_engine/common/test_utils.h" |
| 47 | #include "update_engine/common/utils.h" |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 48 | #include "update_engine/fake_p2p_manager_configuration.h" |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 49 | #include "update_engine/update_manager/fake_update_manager.h" |
| 50 | #include "update_engine/update_manager/mock_policy.h" |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 51 | |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 52 | using base::TimeDelta; |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 53 | using brillo::MessageLoop; |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 54 | using std::string; |
Ben Chan | 02f7c1d | 2014-10-18 15:18:02 -0700 | [diff] [blame] | 55 | using std::unique_ptr; |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 56 | using std::vector; |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 57 | using testing::DoAll; |
| 58 | using testing::Return; |
| 59 | using testing::SetArgPointee; |
| 60 | using testing::_; |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 61 | |
| 62 | namespace chromeos_update_engine { |
| 63 | |
| 64 | // Test fixture that sets up a testing configuration (with e.g. a |
| 65 | // temporary p2p dir) for P2PManager and cleans up when the test is |
| 66 | // done. |
| 67 | class P2PManagerTest : public testing::Test { |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 68 | protected: |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 69 | P2PManagerTest() : fake_um_(&fake_clock_) {} |
Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 70 | ~P2PManagerTest() override {} |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 71 | |
| 72 | // Derived from testing::Test. |
Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 73 | void SetUp() override { |
Alex Deymo | 509dd53 | 2015-06-10 14:11:05 -0700 | [diff] [blame] | 74 | loop_.SetAsCurrent(); |
Alex Deymo | b7ca096 | 2014-10-01 17:58:07 -0700 | [diff] [blame] | 75 | async_signal_handler_.Init(); |
| 76 | subprocess_.Init(&async_signal_handler_); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 77 | test_conf_ = new FakeP2PManagerConfiguration(); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 78 | |
| 79 | // Allocate and install a mock policy implementation in the fake Update |
| 80 | // Manager. Note that the FakeUpdateManager takes ownership of the policy |
| 81 | // object. |
| 82 | mock_policy_ = new chromeos_update_manager::MockPolicy(&fake_clock_); |
| 83 | fake_um_.set_policy(mock_policy_); |
| 84 | |
| 85 | // Construct the P2P manager under test. |
| 86 | manager_.reset(P2PManager::Construct(test_conf_, &fake_clock_, &fake_um_, |
| 87 | "cros_au", 3, |
Alex Deymo | 509dd53 | 2015-06-10 14:11:05 -0700 | [diff] [blame] | 88 | TimeDelta::FromDays(5))); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 89 | } |
Alex Deymo | 509dd53 | 2015-06-10 14:11:05 -0700 | [diff] [blame] | 90 | |
Alex Deymo | 0b3db6b | 2015-08-10 15:19:37 -0700 | [diff] [blame] | 91 | base::MessageLoopForIO base_loop_; |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 92 | brillo::BaseMessageLoop loop_{&base_loop_}; |
| 93 | brillo::AsynchronousSignalHandler async_signal_handler_; |
Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 94 | Subprocess subprocess_; |
Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 95 | |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 96 | // The P2PManager::Configuration instance used for testing. |
| 97 | FakeP2PManagerConfiguration *test_conf_; |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 98 | |
| 99 | FakeClock fake_clock_; |
| 100 | chromeos_update_manager::MockPolicy *mock_policy_ = nullptr; |
| 101 | chromeos_update_manager::FakeUpdateManager fake_um_; |
| 102 | |
| 103 | unique_ptr<P2PManager> manager_; |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 107 | // Check that IsP2PEnabled() polls the policy correctly, with the value not |
| 108 | // changing between calls. |
| 109 | TEST_F(P2PManagerTest, P2PEnabledInitAndNotChanged) { |
| 110 | EXPECT_CALL(*mock_policy_, P2PEnabled(_, _, _, _)); |
| 111 | EXPECT_CALL(*mock_policy_, P2PEnabledChanged(_, _, _, _, false)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 112 | |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 113 | EXPECT_FALSE(manager_->IsP2PEnabled()); |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 114 | brillo::MessageLoopRunMaxIterations(MessageLoop::current(), 100); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 115 | EXPECT_FALSE(manager_->IsP2PEnabled()); |
David Zeuthen | 92d9c8b | 2013-09-11 10:58:11 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 118 | // Check that IsP2PEnabled() polls the policy correctly, with the value changing |
| 119 | // between calls. |
| 120 | TEST_F(P2PManagerTest, P2PEnabledInitAndChanged) { |
| 121 | EXPECT_CALL(*mock_policy_, P2PEnabled(_, _, _, _)) |
| 122 | .WillOnce(DoAll( |
| 123 | SetArgPointee<3>(true), |
| 124 | Return(chromeos_update_manager::EvalStatus::kSucceeded))); |
| 125 | EXPECT_CALL(*mock_policy_, P2PEnabledChanged(_, _, _, _, true)); |
| 126 | EXPECT_CALL(*mock_policy_, P2PEnabledChanged(_, _, _, _, false)); |
David Zeuthen | 92d9c8b | 2013-09-11 10:58:11 -0700 | [diff] [blame] | 127 | |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 128 | EXPECT_TRUE(manager_->IsP2PEnabled()); |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 129 | brillo::MessageLoopRunMaxIterations(MessageLoop::current(), 100); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 130 | EXPECT_FALSE(manager_->IsP2PEnabled()); |
David Zeuthen | 9a58e6a | 2014-09-22 17:38:44 -0400 | [diff] [blame] | 131 | } |
| 132 | |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 133 | // Check that we keep the $N newest files with the .$EXT.p2p extension. |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 134 | TEST_F(P2PManagerTest, HousekeepingCountLimit) { |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 135 | // Specifically pass 0 for |max_file_age| to allow files of any age. Note that |
| 136 | // we need to reallocate the test_conf_ member, whose currently aliased object |
| 137 | // will be freed. |
| 138 | test_conf_ = new FakeP2PManagerConfiguration(); |
| 139 | manager_.reset(P2PManager::Construct( |
| 140 | test_conf_, &fake_clock_, &fake_um_, "cros_au", 3, |
Alex Deymo | 509dd53 | 2015-06-10 14:11:05 -0700 | [diff] [blame] | 141 | TimeDelta() /* max_file_age */)); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 142 | EXPECT_EQ(manager_->CountSharedFiles(), 0); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 143 | |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 144 | base::Time start_time = base::Time::FromDoubleT(1246996800.); |
Alex Deymo | 0f51351 | 2013-09-13 14:11:26 -0700 | [diff] [blame] | 145 | // Generate files with different timestamps matching our pattern and generate |
| 146 | // other files not matching the pattern. |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 147 | for (int n = 0; n < 5; n++) { |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 148 | base::FilePath path = test_conf_->GetP2PDir().Append(base::StringPrintf( |
| 149 | "file_%d.cros_au.p2p", n)); |
| 150 | base::Time file_time = start_time + TimeDelta::FromMinutes(n); |
| 151 | EXPECT_EQ(0, base::WriteFile(path, nullptr, 0)); |
| 152 | EXPECT_TRUE(base::TouchFile(path, file_time, file_time)); |
David Zeuthen | 45e2ae2 | 2013-09-03 11:46:11 -0700 | [diff] [blame] | 153 | |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 154 | path = test_conf_->GetP2PDir().Append(base::StringPrintf( |
| 155 | "file_%d.OTHER.p2p", n)); |
| 156 | EXPECT_EQ(0, base::WriteFile(path, nullptr, 0)); |
| 157 | EXPECT_TRUE(base::TouchFile(path, file_time, file_time)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 158 | } |
| 159 | // CountSharedFiles() only counts 'cros_au' files. |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 160 | EXPECT_EQ(manager_->CountSharedFiles(), 5); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 161 | |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 162 | EXPECT_TRUE(manager_->PerformHousekeeping()); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 163 | |
| 164 | // At this point - after HouseKeeping - we should only have |
| 165 | // eight files left. |
| 166 | for (int n = 0; n < 5; n++) { |
| 167 | string file_name; |
| 168 | bool expect; |
| 169 | |
| 170 | expect = (n >= 2); |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 171 | file_name = base::StringPrintf( |
| 172 | "%s/file_%d.cros_au.p2p", |
| 173 | test_conf_->GetP2PDir().value().c_str(), n); |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 174 | EXPECT_EQ(expect, utils::FileExists(file_name.c_str())); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 175 | |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 176 | file_name = base::StringPrintf( |
| 177 | "%s/file_%d.OTHER.p2p", |
| 178 | test_conf_->GetP2PDir().value().c_str(), n); |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 179 | EXPECT_TRUE(utils::FileExists(file_name.c_str())); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 180 | } |
| 181 | // CountSharedFiles() only counts 'cros_au' files. |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 182 | EXPECT_EQ(manager_->CountSharedFiles(), 3); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 183 | } |
| 184 | |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 185 | // Check that we keep files with the .$EXT.p2p extension not older |
| 186 | // than some specificed age (5 days, in this test). |
| 187 | TEST_F(P2PManagerTest, HousekeepingAgeLimit) { |
| 188 | // We set the cutoff time to be 1 billion seconds (01:46:40 UTC on 9 |
| 189 | // September 2001 - arbitrary number, but constant to avoid test |
| 190 | // flakiness) since the epoch and then we put two files before that |
| 191 | // date and three files after. |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 192 | base::Time cutoff_time = base::Time::FromTimeT(1000000000); |
Alex Deymo | 10875d9 | 2014-11-10 21:52:57 -0800 | [diff] [blame] | 193 | TimeDelta age_limit = TimeDelta::FromDays(5); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 194 | |
| 195 | // Set the clock just so files with a timestamp before |cutoff_time| |
| 196 | // will be deleted at housekeeping. |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 197 | fake_clock_.SetWallclockTime(cutoff_time + age_limit); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 198 | |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 199 | // Specifically pass 0 for |num_files_to_keep| to allow any number of files. |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 200 | // Note that we need to reallocate the test_conf_ member, whose currently |
| 201 | // aliased object will be freed. |
| 202 | test_conf_ = new FakeP2PManagerConfiguration(); |
| 203 | manager_.reset(P2PManager::Construct( |
| 204 | test_conf_, &fake_clock_, &fake_um_, "cros_au", |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 205 | 0 /* num_files_to_keep */, age_limit)); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 206 | EXPECT_EQ(manager_->CountSharedFiles(), 0); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 207 | |
| 208 | // Generate files with different timestamps matching our pattern and generate |
| 209 | // other files not matching the pattern. |
| 210 | for (int n = 0; n < 5; n++) { |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 211 | base::FilePath path = test_conf_->GetP2PDir().Append(base::StringPrintf( |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 212 | "file_%d.cros_au.p2p", n)); |
| 213 | |
| 214 | // With five files and aiming for two of them to be before |
| 215 | // |cutoff_time|, we distribute it like this: |
| 216 | // |
| 217 | // -------- 0 -------- 1 -------- 2 -------- 3 -------- 4 -------- |
| 218 | // | |
| 219 | // cutoff_time |
| 220 | // |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 221 | base::Time file_date = cutoff_time + (n - 2) * TimeDelta::FromDays(1) |
| 222 | + TimeDelta::FromHours(12); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 223 | |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 224 | EXPECT_EQ(0, base::WriteFile(path, nullptr, 0)); |
| 225 | EXPECT_TRUE(base::TouchFile(path, file_date, file_date)); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 226 | |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 227 | path = test_conf_->GetP2PDir().Append(base::StringPrintf( |
| 228 | "file_%d.OTHER.p2p", n)); |
| 229 | EXPECT_EQ(0, base::WriteFile(path, nullptr, 0)); |
| 230 | EXPECT_TRUE(base::TouchFile(path, file_date, file_date)); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 231 | } |
| 232 | // CountSharedFiles() only counts 'cros_au' files. |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 233 | EXPECT_EQ(manager_->CountSharedFiles(), 5); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 234 | |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 235 | EXPECT_TRUE(manager_->PerformHousekeeping()); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 236 | |
| 237 | // At this point - after HouseKeeping - we should only have |
| 238 | // eight files left. |
| 239 | for (int n = 0; n < 5; n++) { |
| 240 | string file_name; |
| 241 | bool expect; |
| 242 | |
| 243 | expect = (n >= 2); |
| 244 | file_name = base::StringPrintf( |
| 245 | "%s/file_%d.cros_au.p2p", |
| 246 | test_conf_->GetP2PDir().value().c_str(), n); |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 247 | EXPECT_EQ(expect, utils::FileExists(file_name.c_str())); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 248 | |
| 249 | file_name = base::StringPrintf( |
| 250 | "%s/file_%d.OTHER.p2p", |
| 251 | test_conf_->GetP2PDir().value().c_str(), n); |
Alex Deymo | 454b798 | 2015-07-10 10:49:29 -0700 | [diff] [blame] | 252 | EXPECT_TRUE(utils::FileExists(file_name.c_str())); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 253 | } |
| 254 | // CountSharedFiles() only counts 'cros_au' files. |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 255 | EXPECT_EQ(manager_->CountSharedFiles(), 3); |
David Zeuthen | 41f2cf5 | 2014-11-05 12:29:45 -0500 | [diff] [blame] | 256 | } |
| 257 | |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 258 | static bool CheckP2PFile(const string& p2p_dir, const string& file_name, |
| 259 | ssize_t expected_size, ssize_t expected_size_xattr) { |
| 260 | string path = p2p_dir + "/" + file_name; |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 261 | char ea_value[64] = { 0 }; |
| 262 | ssize_t ea_size; |
| 263 | |
Gabe Black | a77939e | 2014-09-09 23:35:08 -0700 | [diff] [blame] | 264 | off_t p2p_size = utils::FileSize(path); |
| 265 | if (p2p_size < 0) { |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 266 | LOG(ERROR) << "File " << path << " does not exist"; |
| 267 | return false; |
| 268 | } |
| 269 | |
| 270 | if (expected_size != 0) { |
Gabe Black | a77939e | 2014-09-09 23:35:08 -0700 | [diff] [blame] | 271 | if (p2p_size != expected_size) { |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 272 | LOG(ERROR) << "Expected size " << expected_size |
Gabe Black | a77939e | 2014-09-09 23:35:08 -0700 | [diff] [blame] | 273 | << " but size was " << p2p_size; |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 274 | return false; |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | if (expected_size_xattr == 0) { |
| 279 | ea_size = getxattr(path.c_str(), "user.cros-p2p-filesize", |
| 280 | &ea_value, sizeof ea_value - 1); |
Alex Deymo | 6f20dd4 | 2015-08-18 16:42:46 -0700 | [diff] [blame] | 281 | if (ea_size == -1 && errno == ENODATA) { |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 282 | // This is valid behavior as we support files without the xattr set. |
| 283 | } else { |
Alex Deymo | 6f20dd4 | 2015-08-18 16:42:46 -0700 | [diff] [blame] | 284 | PLOG(ERROR) << "getxattr() didn't fail with ENODATA as expected, " |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 285 | << "ea_size=" << ea_size << ", errno=" << errno; |
| 286 | return false; |
| 287 | } |
| 288 | } else { |
| 289 | ea_size = getxattr(path.c_str(), "user.cros-p2p-filesize", |
| 290 | &ea_value, sizeof ea_value - 1); |
| 291 | if (ea_size < 0) { |
| 292 | LOG(ERROR) << "Error getting xattr attribute"; |
| 293 | return false; |
| 294 | } |
Alex Vakulenko | 88b591f | 2014-08-28 16:48:57 -0700 | [diff] [blame] | 295 | char* endp = nullptr; |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 296 | long long int val = strtoll(ea_value, &endp, 0); // NOLINT(runtime/int) |
Alex Vakulenko | 88b591f | 2014-08-28 16:48:57 -0700 | [diff] [blame] | 297 | if (endp == nullptr || *endp != '\0') { |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 298 | LOG(ERROR) << "Error parsing xattr '" << ea_value |
| 299 | << "' as an integer"; |
| 300 | return false; |
| 301 | } |
| 302 | if (val != expected_size_xattr) { |
| 303 | LOG(ERROR) << "Expected xattr size " << expected_size_xattr |
| 304 | << " but size was " << val; |
| 305 | return false; |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | return true; |
| 310 | } |
| 311 | |
| 312 | static bool CreateP2PFile(string p2p_dir, string file_name, |
| 313 | size_t size, size_t size_xattr) { |
| 314 | string path = p2p_dir + "/" + file_name; |
| 315 | |
| 316 | int fd = open(path.c_str(), O_CREAT|O_RDWR, 0644); |
| 317 | if (fd == -1) { |
| 318 | PLOG(ERROR) << "Error creating file with path " << path; |
| 319 | return false; |
| 320 | } |
| 321 | if (ftruncate(fd, size) != 0) { |
| 322 | PLOG(ERROR) << "Error truncating " << path << " to size " << size; |
| 323 | close(fd); |
| 324 | return false; |
| 325 | } |
| 326 | |
| 327 | if (size_xattr != 0) { |
Alex Deymo | c00c98a | 2015-03-17 17:38:00 -0700 | [diff] [blame] | 328 | string decimal_size = std::to_string(size_xattr); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 329 | if (fsetxattr(fd, "user.cros-p2p-filesize", |
| 330 | decimal_size.c_str(), decimal_size.size(), 0) != 0) { |
| 331 | PLOG(ERROR) << "Error setting xattr on " << path; |
| 332 | close(fd); |
| 333 | return false; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | close(fd); |
| 338 | return true; |
| 339 | } |
| 340 | |
| 341 | // Check that sharing a *new* file works. |
| 342 | TEST_F(P2PManagerTest, ShareFile) { |
Alex Deymo | 10875d9 | 2014-11-10 21:52:57 -0800 | [diff] [blame] | 343 | if (!test_utils::IsXAttrSupported(base::FilePath("/tmp"))) { |
David Zeuthen | 910ec5b | 2013-09-26 12:10:58 -0700 | [diff] [blame] | 344 | LOG(WARNING) << "Skipping test because /tmp does not support xattr. " |
| 345 | << "Please update your system to support this feature."; |
| 346 | return; |
| 347 | } |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 348 | const int kP2PTestFileSize = 1000 * 1000; // 1 MB |
David Zeuthen | 910ec5b | 2013-09-26 12:10:58 -0700 | [diff] [blame] | 349 | |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 350 | EXPECT_TRUE(manager_->FileShare("foo", kP2PTestFileSize)); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 351 | EXPECT_EQ(manager_->FileGetPath("foo"), |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 352 | test_conf_->GetP2PDir().Append("foo.cros_au.p2p.tmp")); |
| 353 | EXPECT_TRUE(CheckP2PFile(test_conf_->GetP2PDir().value(), |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 354 | "foo.cros_au.p2p.tmp", 0, kP2PTestFileSize)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 355 | |
| 356 | // Sharing it again - with the same expected size - should return true |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 357 | EXPECT_TRUE(manager_->FileShare("foo", kP2PTestFileSize)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 358 | |
| 359 | // ... but if we use the wrong size, it should fail |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 360 | EXPECT_FALSE(manager_->FileShare("foo", kP2PTestFileSize + 1)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | // Check that making a shared file visible, does what is expected. |
| 364 | TEST_F(P2PManagerTest, MakeFileVisible) { |
Alex Deymo | 10875d9 | 2014-11-10 21:52:57 -0800 | [diff] [blame] | 365 | if (!test_utils::IsXAttrSupported(base::FilePath("/tmp"))) { |
David Zeuthen | 910ec5b | 2013-09-26 12:10:58 -0700 | [diff] [blame] | 366 | LOG(WARNING) << "Skipping test because /tmp does not support xattr. " |
| 367 | << "Please update your system to support this feature."; |
| 368 | return; |
| 369 | } |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 370 | const int kP2PTestFileSize = 1000 * 1000; // 1 MB |
David Zeuthen | 910ec5b | 2013-09-26 12:10:58 -0700 | [diff] [blame] | 371 | |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 372 | // First, check that it's not visible. |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 373 | manager_->FileShare("foo", kP2PTestFileSize); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 374 | EXPECT_EQ(manager_->FileGetPath("foo"), |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 375 | test_conf_->GetP2PDir().Append("foo.cros_au.p2p.tmp")); |
| 376 | EXPECT_TRUE(CheckP2PFile(test_conf_->GetP2PDir().value(), |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 377 | "foo.cros_au.p2p.tmp", 0, kP2PTestFileSize)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 378 | // Make the file visible and check that it changed its name. Do it |
| 379 | // twice to check that FileMakeVisible() is idempotent. |
| 380 | for (int n = 0; n < 2; n++) { |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 381 | manager_->FileMakeVisible("foo"); |
| 382 | EXPECT_EQ(manager_->FileGetPath("foo"), |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 383 | test_conf_->GetP2PDir().Append("foo.cros_au.p2p")); |
| 384 | EXPECT_TRUE(CheckP2PFile(test_conf_->GetP2PDir().value(), |
Alex Deymo | 3c3807c | 2015-01-30 09:32:41 -0800 | [diff] [blame] | 385 | "foo.cros_au.p2p", 0, kP2PTestFileSize)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 386 | } |
| 387 | } |
| 388 | |
| 389 | // Check that we return the right values for existing files in P2P_DIR. |
| 390 | TEST_F(P2PManagerTest, ExistingFiles) { |
Alex Deymo | 10875d9 | 2014-11-10 21:52:57 -0800 | [diff] [blame] | 391 | if (!test_utils::IsXAttrSupported(base::FilePath("/tmp"))) { |
David Zeuthen | 910ec5b | 2013-09-26 12:10:58 -0700 | [diff] [blame] | 392 | LOG(WARNING) << "Skipping test because /tmp does not support xattr. " |
| 393 | << "Please update your system to support this feature."; |
| 394 | return; |
| 395 | } |
| 396 | |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 397 | bool visible; |
| 398 | |
| 399 | // Check that errors are returned if the file does not exist |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 400 | EXPECT_EQ(manager_->FileGetPath("foo"), base::FilePath()); |
| 401 | EXPECT_EQ(manager_->FileGetSize("foo"), -1); |
| 402 | EXPECT_EQ(manager_->FileGetExpectedSize("foo"), -1); |
| 403 | EXPECT_FALSE(manager_->FileGetVisible("foo", nullptr)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 404 | // ... then create the file ... |
| 405 | EXPECT_TRUE(CreateP2PFile(test_conf_->GetP2PDir().value(), |
| 406 | "foo.cros_au.p2p", 42, 43)); |
| 407 | // ... and then check that the expected values are returned |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 408 | EXPECT_EQ(manager_->FileGetPath("foo"), |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 409 | test_conf_->GetP2PDir().Append("foo.cros_au.p2p")); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 410 | EXPECT_EQ(manager_->FileGetSize("foo"), 42); |
| 411 | EXPECT_EQ(manager_->FileGetExpectedSize("foo"), 43); |
| 412 | EXPECT_TRUE(manager_->FileGetVisible("foo", &visible)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 413 | EXPECT_TRUE(visible); |
| 414 | |
| 415 | // One more time, this time with a .tmp variant. First ensure it errors out.. |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 416 | EXPECT_EQ(manager_->FileGetPath("bar"), base::FilePath()); |
| 417 | EXPECT_EQ(manager_->FileGetSize("bar"), -1); |
| 418 | EXPECT_EQ(manager_->FileGetExpectedSize("bar"), -1); |
| 419 | EXPECT_FALSE(manager_->FileGetVisible("bar", nullptr)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 420 | // ... then create the file ... |
| 421 | EXPECT_TRUE(CreateP2PFile(test_conf_->GetP2PDir().value(), |
| 422 | "bar.cros_au.p2p.tmp", 44, 45)); |
| 423 | // ... and then check that the expected values are returned |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 424 | EXPECT_EQ(manager_->FileGetPath("bar"), |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 425 | test_conf_->GetP2PDir().Append("bar.cros_au.p2p.tmp")); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 426 | EXPECT_EQ(manager_->FileGetSize("bar"), 44); |
| 427 | EXPECT_EQ(manager_->FileGetExpectedSize("bar"), 45); |
| 428 | EXPECT_TRUE(manager_->FileGetVisible("bar", &visible)); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 429 | EXPECT_FALSE(visible); |
| 430 | } |
| 431 | |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 432 | // This is a little bit ugly but short of mocking a 'p2p' service this |
| 433 | // will have to do. E.g. we essentially simulate the various |
| 434 | // behaviours of initctl(8) that we rely on. |
| 435 | TEST_F(P2PManagerTest, StartP2P) { |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 436 | // Check that we can start the service |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 437 | test_conf_->SetInitctlStartCommand({"true"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 438 | EXPECT_TRUE(manager_->EnsureP2PRunning()); |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 439 | test_conf_->SetInitctlStartCommand({"false"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 440 | EXPECT_FALSE(manager_->EnsureP2PRunning()); |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 441 | test_conf_->SetInitctlStartCommand({ |
| 442 | "sh", "-c", "echo \"initctl: Job is already running: p2p\" >&2; false"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 443 | EXPECT_TRUE(manager_->EnsureP2PRunning()); |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 444 | test_conf_->SetInitctlStartCommand({ |
| 445 | "sh", "-c", "echo something else >&2; false"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 446 | EXPECT_FALSE(manager_->EnsureP2PRunning()); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | // Same comment as for StartP2P |
| 450 | TEST_F(P2PManagerTest, StopP2P) { |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 451 | // Check that we can start the service |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 452 | test_conf_->SetInitctlStopCommand({"true"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 453 | EXPECT_TRUE(manager_->EnsureP2PNotRunning()); |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 454 | test_conf_->SetInitctlStopCommand({"false"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 455 | EXPECT_FALSE(manager_->EnsureP2PNotRunning()); |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 456 | test_conf_->SetInitctlStopCommand({ |
| 457 | "sh", "-c", "echo \"initctl: Unknown instance \" >&2; false"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 458 | EXPECT_TRUE(manager_->EnsureP2PNotRunning()); |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 459 | test_conf_->SetInitctlStopCommand({ |
| 460 | "sh", "-c", "echo something else >&2; false"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 461 | EXPECT_FALSE(manager_->EnsureP2PNotRunning()); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | static void ExpectUrl(const string& expected_url, |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 465 | const string& url) { |
| 466 | EXPECT_EQ(url, expected_url); |
Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 467 | MessageLoop::current()->BreakLoop(); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | // Like StartP2P, we're mocking the different results that p2p-client |
| 471 | // can return. It's not pretty but it works. |
| 472 | TEST_F(P2PManagerTest, LookupURL) { |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 473 | // Emulate p2p-client returning valid URL with "fooX", 42 and "cros_au" |
| 474 | // being propagated in the right places. |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 475 | test_conf_->SetP2PClientCommand({ |
| 476 | "echo", "http://1.2.3.4/{file_id}_{minsize}"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 477 | manager_->LookupUrlForFile("fooX", 42, TimeDelta(), |
| 478 | base::Bind(ExpectUrl, |
Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 479 | "http://1.2.3.4/fooX.cros_au_42")); |
| 480 | loop_.Run(); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 481 | |
| 482 | // Emulate p2p-client returning invalid URL. |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 483 | test_conf_->SetP2PClientCommand({"echo", "not_a_valid_url"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 484 | manager_->LookupUrlForFile("foobar", 42, TimeDelta(), |
Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 485 | base::Bind(ExpectUrl, "")); |
| 486 | loop_.Run(); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 487 | |
| 488 | // Emulate p2p-client conveying failure. |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 489 | test_conf_->SetP2PClientCommand({"false"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 490 | manager_->LookupUrlForFile("foobar", 42, TimeDelta(), |
Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 491 | base::Bind(ExpectUrl, "")); |
| 492 | loop_.Run(); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 493 | |
| 494 | // Emulate p2p-client not existing. |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 495 | test_conf_->SetP2PClientCommand({"/path/to/non/existent/helper/program"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 496 | manager_->LookupUrlForFile("foobar", 42, |
| 497 | TimeDelta(), |
Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 498 | base::Bind(ExpectUrl, "")); |
| 499 | loop_.Run(); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 500 | |
| 501 | // Emulate p2p-client crashing. |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 502 | test_conf_->SetP2PClientCommand({"sh", "-c", "kill -SEGV $$"}); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 503 | manager_->LookupUrlForFile("foobar", 42, TimeDelta(), |
Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 504 | base::Bind(ExpectUrl, "")); |
| 505 | loop_.Run(); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 506 | |
| 507 | // Emulate p2p-client exceeding its timeout. |
Alex Deymo | b339155 | 2015-07-10 10:48:06 -0700 | [diff] [blame] | 508 | test_conf_->SetP2PClientCommand({ |
Ben Chan | 28f9a88 | 2017-01-10 22:28:22 -0800 | [diff] [blame] | 509 | "sh", "-c", |
| 510 | // The 'sleep' launched below could be left behind as an orphaned |
| 511 | // process when the 'sh' process is terminated by SIGTERM. As a |
| 512 | // remedy, trap SIGTERM and kill the 'sleep' process, which requires |
| 513 | // launching 'sleep' in background and then waiting for it. |
| 514 | "cleanup() { kill \"${sleep_pid}\"; exit 0; }; " |
| 515 | "trap cleanup TERM; " |
| 516 | "sleep 5 & " |
| 517 | "sleep_pid=$!; " |
| 518 | "echo http://1.2.3.4/; " |
| 519 | "wait" |
| 520 | }); |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 521 | manager_->LookupUrlForFile("foobar", 42, TimeDelta::FromMilliseconds(500), |
Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 522 | base::Bind(ExpectUrl, "")); |
| 523 | loop_.Run(); |
David Zeuthen | 27a48bc | 2013-08-06 12:06:29 -0700 | [diff] [blame] | 524 | } |
| 525 | |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 526 | } // namespace chromeos_update_engine |