blob: 20c6b84908b833b3760eff47f144765378b848f3 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
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//
adlr@google.com3defe6a2009-12-04 20:57:17 +000016
Alex Deymo39910dc2015-11-09 17:04:30 -080017#include "update_engine/common/utils.h"
Alex Deymo2c0db7b2014-11-04 12:23:39 -080018
Alex Deymo5ba93ad2016-08-22 19:51:59 -070019#include <fcntl.h>
Ben Chan9abb7632014-08-07 00:10:53 -070020#include <stdint.h>
Alex Deymo5ba93ad2016-08-22 19:51:59 -070021#include <sys/mount.h>
adlr@google.com3defe6a2009-12-04 20:57:17 +000022#include <sys/stat.h>
23#include <sys/types.h>
Darin Petkov5c0a8af2010-08-24 13:39:13 -070024
Zentaro Kavanagh0ff621c2018-07-13 13:06:56 -070025#include <limits>
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080026#include <string>
adlr@google.com3defe6a2009-12-04 20:57:17 +000027#include <vector>
Darin Petkov5c0a8af2010-08-24 13:39:13 -070028
Alex Deymoc1711e22014-08-08 13:16:23 -070029#include <base/files/file_path.h>
Alex Deymo2c0db7b2014-11-04 12:23:39 -080030#include <base/files/file_util.h>
Sen Jiang371615b2016-04-13 15:54:29 -070031#include <base/files/scoped_temp_dir.h>
Darin Petkovd3f8c892010-10-12 21:38:45 -070032#include <gtest/gtest.h>
33
Alex Deymo39910dc2015-11-09 17:04:30 -080034#include "update_engine/common/test_utils.h"
adlr@google.com3defe6a2009-12-04 20:57:17 +000035
Zentaro Kavanagh0ff621c2018-07-13 13:06:56 -070036using std::numeric_limits;
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080037using std::string;
adlr@google.com3defe6a2009-12-04 20:57:17 +000038using std::vector;
39
40namespace chromeos_update_engine {
41
Amin Hassanib2689592019-01-13 17:04:28 -080042class UtilsTest : public ::testing::Test {};
adlr@google.com3defe6a2009-12-04 20:57:17 +000043
Alex Deymo335516c2016-11-28 13:37:06 -080044TEST(UtilsTest, WriteFileOpenFailure) {
45 EXPECT_FALSE(utils::WriteFile("/this/doesn't/exist", "hello", 5));
46}
47
48TEST(UtilsTest, WriteFileReadFile) {
Amin Hassanied03b442020-10-26 17:21:29 -070049 ScopedTempFile file;
Sen Jiang0779a152018-07-02 17:34:56 -070050 EXPECT_TRUE(utils::WriteFile(file.path().c_str(), "hello", 5));
Alex Deymo335516c2016-11-28 13:37:06 -080051
52 brillo::Blob readback;
Sen Jiang0779a152018-07-02 17:34:56 -070053 EXPECT_TRUE(utils::ReadFile(file.path().c_str(), &readback));
Alex Deymo335516c2016-11-28 13:37:06 -080054 EXPECT_EQ("hello", string(readback.begin(), readback.end()));
55}
56
adlr@google.com3defe6a2009-12-04 20:57:17 +000057TEST(UtilsTest, ReadFileFailure) {
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070058 brillo::Blob empty;
adlr@google.com3defe6a2009-12-04 20:57:17 +000059 EXPECT_FALSE(utils::ReadFile("/this/doesn't/exist", &empty));
60}
61
Darin Petkov8e447e02013-04-16 16:23:50 +020062TEST(UtilsTest, ReadFileChunk) {
Amin Hassanied03b442020-10-26 17:21:29 -070063 ScopedTempFile file;
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070064 brillo::Blob data;
Darin Petkov8e447e02013-04-16 16:23:50 +020065 const size_t kSize = 1024 * 1024;
66 for (size_t i = 0; i < kSize; i++) {
67 data.push_back(i % 255);
68 }
Sen Jiang0779a152018-07-02 17:34:56 -070069 EXPECT_TRUE(test_utils::WriteFileVector(file.path(), data));
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070070 brillo::Blob in_data;
Sen Jiang0779a152018-07-02 17:34:56 -070071 EXPECT_TRUE(utils::ReadFileChunk(file.path().c_str(), kSize, 10, &in_data));
Darin Petkov8e447e02013-04-16 16:23:50 +020072 EXPECT_TRUE(in_data.empty());
Sen Jiang0779a152018-07-02 17:34:56 -070073 EXPECT_TRUE(utils::ReadFileChunk(file.path().c_str(), 0, -1, &in_data));
74 EXPECT_EQ(data, in_data);
Darin Petkov8e447e02013-04-16 16:23:50 +020075 in_data.clear();
Sen Jiang0779a152018-07-02 17:34:56 -070076 EXPECT_TRUE(utils::ReadFileChunk(file.path().c_str(), 10, 20, &in_data));
77 EXPECT_EQ(brillo::Blob(data.begin() + 10, data.begin() + 10 + 20), in_data);
Darin Petkov8e447e02013-04-16 16:23:50 +020078}
79
adlr@google.com3defe6a2009-12-04 20:57:17 +000080TEST(UtilsTest, ErrnoNumberAsStringTest) {
81 EXPECT_EQ("No such file or directory", utils::ErrnoNumberAsString(ENOENT));
82}
83
Darin Petkov002b2fe2010-11-22 13:53:22 -080084TEST(UtilsTest, IsSymlinkTest) {
Sen Jiang371615b2016-04-13 15:54:29 -070085 base::ScopedTempDir temp_dir;
86 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
Hidehiko Abe2b9d2412017-12-13 18:56:18 +090087 string temp_file = temp_dir.GetPath().Append("temp-file").value();
Darin Petkov002b2fe2010-11-22 13:53:22 -080088 EXPECT_TRUE(utils::WriteFile(temp_file.c_str(), "", 0));
Hidehiko Abe2b9d2412017-12-13 18:56:18 +090089 string temp_symlink = temp_dir.GetPath().Append("temp-symlink").value();
Darin Petkov002b2fe2010-11-22 13:53:22 -080090 EXPECT_EQ(0, symlink(temp_file.c_str(), temp_symlink.c_str()));
Hidehiko Abe2b9d2412017-12-13 18:56:18 +090091 EXPECT_FALSE(utils::IsSymlink(temp_dir.GetPath().value().c_str()));
Darin Petkov002b2fe2010-11-22 13:53:22 -080092 EXPECT_FALSE(utils::IsSymlink(temp_file.c_str()));
93 EXPECT_TRUE(utils::IsSymlink(temp_symlink.c_str()));
94 EXPECT_FALSE(utils::IsSymlink("/non/existent/path"));
Darin Petkov002b2fe2010-11-22 13:53:22 -080095}
96
Alex Deymo763e7db2015-08-27 21:08:08 -070097TEST(UtilsTest, SplitPartitionNameTest) {
98 string disk;
99 int part_num;
Darin Petkovf74eb652010-08-04 12:08:38 -0700100
Alex Deymo763e7db2015-08-27 21:08:08 -0700101 EXPECT_TRUE(utils::SplitPartitionName("/dev/sda3", &disk, &part_num));
102 EXPECT_EQ("/dev/sda", disk);
103 EXPECT_EQ(3, part_num);
Darin Petkovf74eb652010-08-04 12:08:38 -0700104
Alex Deymo763e7db2015-08-27 21:08:08 -0700105 EXPECT_TRUE(utils::SplitPartitionName("/dev/sdp1234", &disk, &part_num));
106 EXPECT_EQ("/dev/sdp", disk);
107 EXPECT_EQ(1234, part_num);
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700108
Alex Deymo763e7db2015-08-27 21:08:08 -0700109 EXPECT_TRUE(utils::SplitPartitionName("/dev/mmcblk0p3", &disk, &part_num));
110 EXPECT_EQ("/dev/mmcblk0", disk);
111 EXPECT_EQ(3, part_num);
112
Alex Deymo763e7db2015-08-27 21:08:08 -0700113 EXPECT_TRUE(utils::SplitPartitionName("/dev/loop10", &disk, &part_num));
114 EXPECT_EQ("/dev/loop", disk);
115 EXPECT_EQ(10, part_num);
116
117 EXPECT_TRUE(utils::SplitPartitionName("/dev/loop28p11", &disk, &part_num));
118 EXPECT_EQ("/dev/loop28", disk);
119 EXPECT_EQ(11, part_num);
120
Alex Deymo763e7db2015-08-27 21:08:08 -0700121 EXPECT_FALSE(utils::SplitPartitionName("/dev/mmcblk0p", &disk, &part_num));
122 EXPECT_FALSE(utils::SplitPartitionName("/dev/sda", &disk, &part_num));
123 EXPECT_FALSE(utils::SplitPartitionName("/dev/foo/bar", &disk, &part_num));
124 EXPECT_FALSE(utils::SplitPartitionName("/", &disk, &part_num));
125 EXPECT_FALSE(utils::SplitPartitionName("", &disk, &part_num));
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700126}
127
Alex Vakulenkof3f85bb2014-03-26 16:36:35 -0700128TEST(UtilsTest, MakePartitionNameTest) {
129 EXPECT_EQ("/dev/sda4", utils::MakePartitionName("/dev/sda", 4));
130 EXPECT_EQ("/dev/sda123", utils::MakePartitionName("/dev/sda", 123));
131 EXPECT_EQ("/dev/mmcblk2", utils::MakePartitionName("/dev/mmcblk", 2));
132 EXPECT_EQ("/dev/mmcblk0p2", utils::MakePartitionName("/dev/mmcblk0", 2));
133 EXPECT_EQ("/dev/loop8", utils::MakePartitionName("/dev/loop", 8));
134 EXPECT_EQ("/dev/loop12p2", utils::MakePartitionName("/dev/loop12", 2));
Alex Vakulenkof3f85bb2014-03-26 16:36:35 -0700135}
136
Darin Petkov5c0a8af2010-08-24 13:39:13 -0700137TEST(UtilsTest, FuzzIntTest) {
Amin Hassanib2689592019-01-13 17:04:28 -0800138 static const uint32_t kRanges[] = {0, 1, 2, 20};
Alex Deymo80f70ff2016-02-10 16:08:11 -0800139 for (uint32_t range : kRanges) {
Darin Petkov5c0a8af2010-08-24 13:39:13 -0700140 const int kValue = 50;
141 for (int tries = 0; tries < 100; ++tries) {
Alex Deymo80f70ff2016-02-10 16:08:11 -0800142 uint32_t value = utils::FuzzInt(kValue, range);
Darin Petkov5c0a8af2010-08-24 13:39:13 -0700143 EXPECT_GE(value, kValue - range / 2);
144 EXPECT_LE(value, kValue + range - range / 2);
145 }
146 }
147}
148
Andrew de los Reyes712b3ac2011-01-07 13:47:52 -0800149namespace {
Alex Deymo032e7722014-03-25 17:53:56 -0700150void GetFileFormatTester(const string& expected,
Ben Chan9abb7632014-08-07 00:10:53 -0700151 const vector<uint8_t>& contents) {
Amin Hassanied03b442020-10-26 17:21:29 -0700152 ScopedTempFile file;
Alex Deymobffa0602016-02-12 17:16:29 -0800153 ASSERT_TRUE(utils::WriteFile(file.path().c_str(),
Alex Deymo032e7722014-03-25 17:53:56 -0700154 reinterpret_cast<const char*>(contents.data()),
155 contents.size()));
Alex Deymobffa0602016-02-12 17:16:29 -0800156 EXPECT_EQ(expected, utils::GetFileFormat(file.path()));
Alex Deymo032e7722014-03-25 17:53:56 -0700157}
Alex Deymo10875d92014-11-10 21:52:57 -0800158} // namespace
Alex Deymo032e7722014-03-25 17:53:56 -0700159
160TEST(UtilsTest, GetFileFormatTest) {
161 EXPECT_EQ("File not found.", utils::GetFileFormat("/path/to/nowhere"));
Ben Chan9abb7632014-08-07 00:10:53 -0700162 GetFileFormatTester("data", vector<uint8_t>{1, 2, 3, 4, 5, 6, 7, 8});
163 GetFileFormatTester("ELF", vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46});
Alex Deymo032e7722014-03-25 17:53:56 -0700164
165 // Real tests from cros_installer on different boards.
166 // ELF 32-bit LSB executable, Intel 80386
167 GetFileFormatTester(
168 "ELF 32-bit little-endian x86",
Ben Chan9abb7632014-08-07 00:10:53 -0700169 vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
170 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
171 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00,
172 0x90, 0x83, 0x04, 0x08, 0x34, 0x00, 0x00, 0x00});
Alex Deymo032e7722014-03-25 17:53:56 -0700173
Alex Deymoc1711e22014-08-08 13:16:23 -0700174 // ELF 32-bit LSB executable, MIPS
175 GetFileFormatTester(
176 "ELF 32-bit little-endian mips",
177 vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
178 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
179 0x03, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00,
180 0xc0, 0x12, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00});
181
Alex Deymo032e7722014-03-25 17:53:56 -0700182 // ELF 32-bit LSB executable, ARM
183 GetFileFormatTester(
184 "ELF 32-bit little-endian arm",
Ben Chan9abb7632014-08-07 00:10:53 -0700185 vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
186 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
187 0x02, 0x00, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00,
188 0x85, 0x8b, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00});
Alex Deymo032e7722014-03-25 17:53:56 -0700189
190 // ELF 64-bit LSB executable, x86-64
191 GetFileFormatTester(
192 "ELF 64-bit little-endian x86-64",
Ben Chan9abb7632014-08-07 00:10:53 -0700193 vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x02, 0x01, 0x01, 0x00,
194 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
195 0x02, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00,
196 0xb0, 0x04, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00});
Alex Deymo032e7722014-03-25 17:53:56 -0700197}
198
David Zeuthen674c3182013-04-18 14:05:20 -0700199TEST(UtilsTest, FormatTimeDeltaTest) {
200 // utils::FormatTimeDelta() is not locale-aware (it's only used for logging
201 // which is not localized) so we only need to test the C locale
202 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromMilliseconds(100)),
203 "0.1s");
Amin Hassanib2689592019-01-13 17:04:28 -0800204 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(0)), "0s");
205 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(1)), "1s");
206 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(59)), "59s");
207 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(60)), "1m0s");
208 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(61)), "1m1s");
209 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(90)), "1m30s");
David Zeuthen674c3182013-04-18 14:05:20 -0700210 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(1205)),
211 "20m5s");
212 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3600)),
213 "1h0m0s");
214 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3601)),
215 "1h0m1s");
216 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3661)),
217 "1h1m1s");
218 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(7261)),
219 "2h1m1s");
220 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(86400)),
221 "1d0h0m0s");
222 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(86401)),
223 "1d0h0m1s");
224 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(200000)),
225 "2d7h33m20s");
226 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(200000) +
227 base::TimeDelta::FromMilliseconds(1)),
228 "2d7h33m20.001s");
Amin Hassanib2689592019-01-13 17:04:28 -0800229 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(-1)), "-1s");
David Zeuthen674c3182013-04-18 14:05:20 -0700230}
231
David Zeuthen639aa362014-02-03 16:23:44 -0800232TEST(UtilsTest, ConvertToOmahaInstallDate) {
233 // The Omaha Epoch starts at Jan 1, 2007 0:00 PST which is a
234 // Monday. In Unix time, this point in time is easily obtained via
235 // the date(1) command like this:
236 //
237 // $ date +"%s" --date="Jan 1, 2007 0:00 PST"
238 const time_t omaha_epoch = 1167638400;
239 int value;
240
241 // Points in time *on and after* the Omaha epoch should not fail.
242 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
243 base::Time::FromTimeT(omaha_epoch), &value));
244 EXPECT_GE(value, 0);
245
246 // Anything before the Omaha epoch should fail. We test it for two points.
247 EXPECT_FALSE(utils::ConvertToOmahaInstallDate(
248 base::Time::FromTimeT(omaha_epoch - 1), &value));
249 EXPECT_FALSE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800250 base::Time::FromTimeT(omaha_epoch - 100 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800251
252 // Check that we jump from 0 to 7 exactly on the one-week mark, e.g.
253 // on Jan 8, 2007 0:00 PST.
254 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800255 base::Time::FromTimeT(omaha_epoch + 7 * 24 * 3600 - 1), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800256 EXPECT_EQ(value, 0);
257 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800258 base::Time::FromTimeT(omaha_epoch + 7 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800259 EXPECT_EQ(value, 7);
260
261 // Check a couple of more values.
262 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800263 base::Time::FromTimeT(omaha_epoch + 10 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800264 EXPECT_EQ(value, 7);
265 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800266 base::Time::FromTimeT(omaha_epoch + 20 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800267 EXPECT_EQ(value, 14);
268 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800269 base::Time::FromTimeT(omaha_epoch + 26 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800270 EXPECT_EQ(value, 21);
271 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800272 base::Time::FromTimeT(omaha_epoch + 29 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800273 EXPECT_EQ(value, 28);
274
275 // The date Jun 4, 2007 0:00 PDT is a Monday and is hence a point
276 // where the Omaha InstallDate jumps 7 days. Its unix time is
277 // 1180940400. Notably, this is a point in time where Daylight
278 // Savings Time (DST) was is in effect (e.g. it's PDT, not PST).
279 //
280 // Note that as utils::ConvertToOmahaInstallDate() _deliberately_
281 // ignores DST (as it's hard to implement in a thread-safe way using
282 // glibc, see comments in utils.h) we have to fudge by the DST
283 // offset which is one hour. Conveniently, if the function were
284 // someday modified to be DST aware, this test would have to be
285 // modified as well.
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700286 const time_t dst_time = 1180940400; // Jun 4, 2007 0:00 PDT.
David Zeuthen639aa362014-02-03 16:23:44 -0800287 const time_t fudge = 3600;
288 int value1, value2;
289 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
290 base::Time::FromTimeT(dst_time + fudge - 1), &value1));
291 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
292 base::Time::FromTimeT(dst_time + fudge), &value2));
293 EXPECT_EQ(value1, value2 - 7);
294}
295
Allie Wood78750a42015-02-11 15:42:11 -0800296TEST(UtilsTest, GetMinorVersion) {
297 // Test GetMinorVersion by verifying that it parses the conf file and returns
298 // the correct value.
Allie Wood78750a42015-02-11 15:42:11 -0800299 uint32_t minor_version;
300
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700301 brillo::KeyValueStore store;
Alex Deymob42b98d2015-07-06 17:42:38 -0700302 EXPECT_FALSE(utils::GetMinorVersion(store, &minor_version));
Allie Wood78750a42015-02-11 15:42:11 -0800303
Alex Deymob42b98d2015-07-06 17:42:38 -0700304 EXPECT_TRUE(store.LoadFromString("PAYLOAD_MINOR_VERSION=one-two-three\n"));
305 EXPECT_FALSE(utils::GetMinorVersion(store, &minor_version));
Allie Wood78750a42015-02-11 15:42:11 -0800306
Alex Deymob42b98d2015-07-06 17:42:38 -0700307 EXPECT_TRUE(store.LoadFromString("PAYLOAD_MINOR_VERSION=123\n"));
308 EXPECT_TRUE(utils::GetMinorVersion(store, &minor_version));
Alex Deymo80f70ff2016-02-10 16:08:11 -0800309 EXPECT_EQ(123U, minor_version);
Allie Wood78750a42015-02-11 15:42:11 -0800310}
311
Nam T. Nguyen2b67a592014-12-03 14:56:00 -0800312static bool BoolMacroTestHelper() {
313 int i = 1;
314 unsigned int ui = 1;
315 bool b = 1;
316 std::unique_ptr<char> cptr(new char);
317
318 TEST_AND_RETURN_FALSE(i);
319 TEST_AND_RETURN_FALSE(ui);
320 TEST_AND_RETURN_FALSE(b);
321 TEST_AND_RETURN_FALSE(cptr);
322
323 TEST_AND_RETURN_FALSE_ERRNO(i);
324 TEST_AND_RETURN_FALSE_ERRNO(ui);
325 TEST_AND_RETURN_FALSE_ERRNO(b);
326 TEST_AND_RETURN_FALSE_ERRNO(cptr);
327
328 return true;
329}
330
331static void VoidMacroTestHelper(bool* ret) {
332 int i = 1;
333 unsigned int ui = 1;
334 bool b = 1;
335 std::unique_ptr<char> cptr(new char);
336
337 *ret = false;
338
339 TEST_AND_RETURN(i);
340 TEST_AND_RETURN(ui);
341 TEST_AND_RETURN(b);
342 TEST_AND_RETURN(cptr);
343
344 TEST_AND_RETURN_ERRNO(i);
345 TEST_AND_RETURN_ERRNO(ui);
346 TEST_AND_RETURN_ERRNO(b);
347 TEST_AND_RETURN_ERRNO(cptr);
348
349 *ret = true;
350}
351
Zentaro Kavanagh0ff621c2018-07-13 13:06:56 -0700352static void ExpectParseRollbackKeyVersion(const string& version,
353 uint16_t expected_high,
354 uint16_t expected_low) {
355 uint16_t actual_high;
356 uint16_t actual_low;
357 utils::ParseRollbackKeyVersion(version, &actual_high, &actual_low);
358 EXPECT_EQ(expected_high, actual_high);
359 EXPECT_EQ(expected_low, actual_low);
360}
361
362static void ExpectInvalidParseRollbackKeyVersion(const string& version) {
363 ExpectParseRollbackKeyVersion(version,
364 numeric_limits<uint16_t>::max(),
365 numeric_limits<uint16_t>::max());
366}
367
Nam T. Nguyen2b67a592014-12-03 14:56:00 -0800368TEST(UtilsTest, TestMacros) {
369 bool void_test = false;
370 VoidMacroTestHelper(&void_test);
371 EXPECT_TRUE(void_test);
372
373 EXPECT_TRUE(BoolMacroTestHelper());
374}
375
Alex Deymoa2ea1c22016-08-24 17:26:19 -0700376TEST(UtilsTest, RunAsRootUnmountFilesystemFailureTest) {
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700377 EXPECT_FALSE(utils::UnmountFilesystem("/path/to/non-existing-dir"));
378}
379
Alex Deymoa2ea1c22016-08-24 17:26:19 -0700380TEST(UtilsTest, RunAsRootUnmountFilesystemBusyFailureTest) {
Amin Hassanied03b442020-10-26 17:21:29 -0700381 ScopedTempFile tmp_image("img.XXXXXX");
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700382
383 EXPECT_TRUE(base::CopyFile(
384 test_utils::GetBuildArtifactsPath().Append("gen/disk_ext2_4k.img"),
Sen Jiang0779a152018-07-02 17:34:56 -0700385 base::FilePath(tmp_image.path())));
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700386
387 base::ScopedTempDir mnt_dir;
388 EXPECT_TRUE(mnt_dir.CreateUniqueTempDir());
389
390 string loop_dev;
391 test_utils::ScopedLoopbackDeviceBinder loop_binder(
Sen Jiang0779a152018-07-02 17:34:56 -0700392 tmp_image.path(), true, &loop_dev);
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700393
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900394 EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700395 // This is the actual test part. While we hold a file descriptor open for the
396 // mounted filesystem, umount should still succeed.
397 EXPECT_TRUE(utils::MountFilesystem(
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900398 loop_dev, mnt_dir.GetPath().value(), MS_RDONLY, "ext4", ""));
Alex Deymof4116502017-03-22 17:00:31 -0700399 // Verify the directory is a mount point now.
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900400 EXPECT_TRUE(utils::IsMountpoint(mnt_dir.GetPath().value()));
Alex Deymof4116502017-03-22 17:00:31 -0700401
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900402 string target_file = mnt_dir.GetPath().Append("empty-file").value();
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700403 int fd = HANDLE_EINTR(open(target_file.c_str(), O_RDONLY));
404 EXPECT_GE(fd, 0);
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900405 EXPECT_TRUE(utils::UnmountFilesystem(mnt_dir.GetPath().value()));
Alex Deymof4116502017-03-22 17:00:31 -0700406 // The filesystem should be already unmounted at this point.
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900407 EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700408 IGNORE_EINTR(close(fd));
409 // The filesystem was already unmounted so this call should fail.
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900410 EXPECT_FALSE(utils::UnmountFilesystem(mnt_dir.GetPath().value()));
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700411}
412
Alex Deymof4116502017-03-22 17:00:31 -0700413TEST(UtilsTest, IsMountpointTest) {
414 EXPECT_TRUE(utils::IsMountpoint("/"));
415 EXPECT_FALSE(utils::IsMountpoint("/path/to/nowhere"));
416
417 base::ScopedTempDir mnt_dir;
418 EXPECT_TRUE(mnt_dir.CreateUniqueTempDir());
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900419 EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
Alex Deymof4116502017-03-22 17:00:31 -0700420
Amin Hassanied03b442020-10-26 17:21:29 -0700421 ScopedTempFile file;
Sen Jiang0779a152018-07-02 17:34:56 -0700422 EXPECT_FALSE(utils::IsMountpoint(file.path()));
Alex Deymof4116502017-03-22 17:00:31 -0700423}
424
Marton Hunyadya0302682018-05-16 18:52:13 +0200425TEST(UtilsTest, VersionPrefix) {
426 EXPECT_EQ(10575, utils::VersionPrefix("10575.39."));
427 EXPECT_EQ(10575, utils::VersionPrefix("10575.39"));
428 EXPECT_EQ(10575, utils::VersionPrefix("10575.x"));
429 EXPECT_EQ(10575, utils::VersionPrefix("10575."));
430 EXPECT_EQ(10575, utils::VersionPrefix("10575"));
431 EXPECT_EQ(0, utils::VersionPrefix(""));
432 EXPECT_EQ(-1, utils::VersionPrefix("x"));
433 EXPECT_EQ(-1, utils::VersionPrefix("1x"));
434 EXPECT_EQ(-1, utils::VersionPrefix("x.1"));
435}
436
Zentaro Kavanagh0ff621c2018-07-13 13:06:56 -0700437TEST(UtilsTest, ParseDottedVersion) {
438 // Valid case.
439 ExpectParseRollbackKeyVersion("2.3", 2, 3);
440 ExpectParseRollbackKeyVersion("65535.65535", 65535, 65535);
441
442 // Zero is technically allowed but never actually used.
443 ExpectParseRollbackKeyVersion("0.0", 0, 0);
444
445 // Invalid cases.
446 ExpectInvalidParseRollbackKeyVersion("");
447 ExpectInvalidParseRollbackKeyVersion("2");
448 ExpectInvalidParseRollbackKeyVersion("2.");
449 ExpectInvalidParseRollbackKeyVersion(".2");
450 ExpectInvalidParseRollbackKeyVersion("2.2.");
451 ExpectInvalidParseRollbackKeyVersion("2.2.3");
452 ExpectInvalidParseRollbackKeyVersion(".2.2");
453 ExpectInvalidParseRollbackKeyVersion("a.b");
454 ExpectInvalidParseRollbackKeyVersion("1.b");
455 ExpectInvalidParseRollbackKeyVersion("a.2");
456 ExpectInvalidParseRollbackKeyVersion("65536.65536");
457 ExpectInvalidParseRollbackKeyVersion("99999.99999");
458 ExpectInvalidParseRollbackKeyVersion("99999.1");
459 ExpectInvalidParseRollbackKeyVersion("1.99999");
460}
461
Kyeongkab.Nam500ca132019-06-26 13:48:07 +0900462TEST(UtilsTest, GetFilePathTest) {
Amin Hassanied03b442020-10-26 17:21:29 -0700463 ScopedTempFile file;
Kyeongkab.Nam500ca132019-06-26 13:48:07 +0900464 int fd = HANDLE_EINTR(open(file.path().c_str(), O_RDONLY));
465 EXPECT_GE(fd, 0);
466 EXPECT_EQ(file.path(), utils::GetFilePath(fd));
467 EXPECT_EQ("not found", utils::GetFilePath(-1));
468 IGNORE_EINTR(close(fd));
469}
470
Kelvin Zhangd7191032020-08-11 10:48:16 -0400471TEST(UtilsTest, ValidatePerPartitionTimestamp) {
Yifan Hong87029332020-09-01 17:20:08 -0700472 ASSERT_EQ(ErrorCode::kPayloadTimestampError,
473 utils::IsTimestampNewer("10", "5"));
474 ASSERT_EQ(ErrorCode::kSuccess, utils::IsTimestampNewer("10", "11"));
475 ASSERT_EQ(ErrorCode::kDownloadManifestParseError,
476 utils::IsTimestampNewer("10", "lol"));
477 ASSERT_EQ(ErrorCode::kError, utils::IsTimestampNewer("lol", "ZZZ"));
478 ASSERT_EQ(ErrorCode::kSuccess, utils::IsTimestampNewer("10", ""));
Kelvin Zhangd7191032020-08-11 10:48:16 -0400479}
480
adlr@google.com3defe6a2009-12-04 20:57:17 +0000481} // namespace chromeos_update_engine