blob: b4ac2f53568fc730fdb1ceb4e6db9365b741ff1b [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
Chris Sosac1972482013-04-30 22:31:10 -070044TEST(UtilsTest, CanParseECVersion) {
Chris Sosac1972482013-04-30 22:31:10 -070045 // Should be able to parse and valid key value line.
J. Richard Barnette63137e52013-10-28 10:57:29 -070046 EXPECT_EQ("12345", utils::ParseECVersion("fw_version=12345"));
Amin Hassanib2689592019-01-13 17:04:28 -080047 EXPECT_EQ("123456",
48 utils::ParseECVersion("b=1231a fw_version=123456 a=fasd2"));
J. Richard Barnette63137e52013-10-28 10:57:29 -070049 EXPECT_EQ("12345", utils::ParseECVersion("fw_version=12345"));
Amin Hassanib2689592019-01-13 17:04:28 -080050 EXPECT_EQ("00VFA616",
51 utils::ParseECVersion("vendor=\"sam\" fw_version=\"00VFA616\""));
Chris Sosac1972482013-04-30 22:31:10 -070052
53 // For invalid entries, should return the empty string.
J. Richard Barnette63137e52013-10-28 10:57:29 -070054 EXPECT_EQ("", utils::ParseECVersion("b=1231a fw_version a=fasd2"));
Chris Sosac1972482013-04-30 22:31:10 -070055}
56
Alex Deymo335516c2016-11-28 13:37:06 -080057TEST(UtilsTest, WriteFileOpenFailure) {
58 EXPECT_FALSE(utils::WriteFile("/this/doesn't/exist", "hello", 5));
59}
60
61TEST(UtilsTest, WriteFileReadFile) {
Sen Jiang0779a152018-07-02 17:34:56 -070062 test_utils::ScopedTempFile file;
63 EXPECT_TRUE(utils::WriteFile(file.path().c_str(), "hello", 5));
Alex Deymo335516c2016-11-28 13:37:06 -080064
65 brillo::Blob readback;
Sen Jiang0779a152018-07-02 17:34:56 -070066 EXPECT_TRUE(utils::ReadFile(file.path().c_str(), &readback));
Alex Deymo335516c2016-11-28 13:37:06 -080067 EXPECT_EQ("hello", string(readback.begin(), readback.end()));
68}
69
adlr@google.com3defe6a2009-12-04 20:57:17 +000070TEST(UtilsTest, ReadFileFailure) {
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070071 brillo::Blob empty;
adlr@google.com3defe6a2009-12-04 20:57:17 +000072 EXPECT_FALSE(utils::ReadFile("/this/doesn't/exist", &empty));
73}
74
Darin Petkov8e447e02013-04-16 16:23:50 +020075TEST(UtilsTest, ReadFileChunk) {
Sen Jiang0779a152018-07-02 17:34:56 -070076 test_utils::ScopedTempFile file;
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070077 brillo::Blob data;
Darin Petkov8e447e02013-04-16 16:23:50 +020078 const size_t kSize = 1024 * 1024;
79 for (size_t i = 0; i < kSize; i++) {
80 data.push_back(i % 255);
81 }
Sen Jiang0779a152018-07-02 17:34:56 -070082 EXPECT_TRUE(test_utils::WriteFileVector(file.path(), data));
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070083 brillo::Blob in_data;
Sen Jiang0779a152018-07-02 17:34:56 -070084 EXPECT_TRUE(utils::ReadFileChunk(file.path().c_str(), kSize, 10, &in_data));
Darin Petkov8e447e02013-04-16 16:23:50 +020085 EXPECT_TRUE(in_data.empty());
Sen Jiang0779a152018-07-02 17:34:56 -070086 EXPECT_TRUE(utils::ReadFileChunk(file.path().c_str(), 0, -1, &in_data));
87 EXPECT_EQ(data, in_data);
Darin Petkov8e447e02013-04-16 16:23:50 +020088 in_data.clear();
Sen Jiang0779a152018-07-02 17:34:56 -070089 EXPECT_TRUE(utils::ReadFileChunk(file.path().c_str(), 10, 20, &in_data));
90 EXPECT_EQ(brillo::Blob(data.begin() + 10, data.begin() + 10 + 20), in_data);
Darin Petkov8e447e02013-04-16 16:23:50 +020091}
92
adlr@google.com3defe6a2009-12-04 20:57:17 +000093TEST(UtilsTest, ErrnoNumberAsStringTest) {
94 EXPECT_EQ("No such file or directory", utils::ErrnoNumberAsString(ENOENT));
95}
96
Darin Petkov002b2fe2010-11-22 13:53:22 -080097TEST(UtilsTest, IsSymlinkTest) {
Sen Jiang371615b2016-04-13 15:54:29 -070098 base::ScopedTempDir temp_dir;
99 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900100 string temp_file = temp_dir.GetPath().Append("temp-file").value();
Darin Petkov002b2fe2010-11-22 13:53:22 -0800101 EXPECT_TRUE(utils::WriteFile(temp_file.c_str(), "", 0));
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900102 string temp_symlink = temp_dir.GetPath().Append("temp-symlink").value();
Darin Petkov002b2fe2010-11-22 13:53:22 -0800103 EXPECT_EQ(0, symlink(temp_file.c_str(), temp_symlink.c_str()));
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900104 EXPECT_FALSE(utils::IsSymlink(temp_dir.GetPath().value().c_str()));
Darin Petkov002b2fe2010-11-22 13:53:22 -0800105 EXPECT_FALSE(utils::IsSymlink(temp_file.c_str()));
106 EXPECT_TRUE(utils::IsSymlink(temp_symlink.c_str()));
107 EXPECT_FALSE(utils::IsSymlink("/non/existent/path"));
Darin Petkov002b2fe2010-11-22 13:53:22 -0800108}
109
Alex Deymo763e7db2015-08-27 21:08:08 -0700110TEST(UtilsTest, SplitPartitionNameTest) {
111 string disk;
112 int part_num;
Darin Petkovf74eb652010-08-04 12:08:38 -0700113
Alex Deymo763e7db2015-08-27 21:08:08 -0700114 EXPECT_TRUE(utils::SplitPartitionName("/dev/sda3", &disk, &part_num));
115 EXPECT_EQ("/dev/sda", disk);
116 EXPECT_EQ(3, part_num);
Darin Petkovf74eb652010-08-04 12:08:38 -0700117
Alex Deymo763e7db2015-08-27 21:08:08 -0700118 EXPECT_TRUE(utils::SplitPartitionName("/dev/sdp1234", &disk, &part_num));
119 EXPECT_EQ("/dev/sdp", disk);
120 EXPECT_EQ(1234, part_num);
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700121
Alex Deymo763e7db2015-08-27 21:08:08 -0700122 EXPECT_TRUE(utils::SplitPartitionName("/dev/mmcblk0p3", &disk, &part_num));
123 EXPECT_EQ("/dev/mmcblk0", disk);
124 EXPECT_EQ(3, part_num);
125
126 EXPECT_TRUE(utils::SplitPartitionName("/dev/ubiblock3_2", &disk, &part_num));
127 EXPECT_EQ("/dev/ubiblock", disk);
128 EXPECT_EQ(3, part_num);
129
130 EXPECT_TRUE(utils::SplitPartitionName("/dev/loop10", &disk, &part_num));
131 EXPECT_EQ("/dev/loop", disk);
132 EXPECT_EQ(10, part_num);
133
134 EXPECT_TRUE(utils::SplitPartitionName("/dev/loop28p11", &disk, &part_num));
135 EXPECT_EQ("/dev/loop28", disk);
136 EXPECT_EQ(11, part_num);
137
138 EXPECT_TRUE(utils::SplitPartitionName("/dev/loop10_0", &disk, &part_num));
139 EXPECT_EQ("/dev/loop", disk);
140 EXPECT_EQ(10, part_num);
141
142 EXPECT_TRUE(utils::SplitPartitionName("/dev/loop28p11_0", &disk, &part_num));
143 EXPECT_EQ("/dev/loop28", disk);
144 EXPECT_EQ(11, part_num);
145
146 EXPECT_FALSE(utils::SplitPartitionName("/dev/mmcblk0p", &disk, &part_num));
147 EXPECT_FALSE(utils::SplitPartitionName("/dev/sda", &disk, &part_num));
148 EXPECT_FALSE(utils::SplitPartitionName("/dev/foo/bar", &disk, &part_num));
149 EXPECT_FALSE(utils::SplitPartitionName("/", &disk, &part_num));
150 EXPECT_FALSE(utils::SplitPartitionName("", &disk, &part_num));
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700151}
152
Alex Vakulenkof3f85bb2014-03-26 16:36:35 -0700153TEST(UtilsTest, MakePartitionNameTest) {
154 EXPECT_EQ("/dev/sda4", utils::MakePartitionName("/dev/sda", 4));
155 EXPECT_EQ("/dev/sda123", utils::MakePartitionName("/dev/sda", 123));
156 EXPECT_EQ("/dev/mmcblk2", utils::MakePartitionName("/dev/mmcblk", 2));
157 EXPECT_EQ("/dev/mmcblk0p2", utils::MakePartitionName("/dev/mmcblk0", 2));
158 EXPECT_EQ("/dev/loop8", utils::MakePartitionName("/dev/loop", 8));
159 EXPECT_EQ("/dev/loop12p2", utils::MakePartitionName("/dev/loop12", 2));
Nam T. Nguyena78b28c2015-03-06 22:30:12 -0800160 EXPECT_EQ("/dev/ubi5_0", utils::MakePartitionName("/dev/ubiblock", 5));
161 EXPECT_EQ("/dev/mtd4", utils::MakePartitionName("/dev/ubiblock", 4));
162 EXPECT_EQ("/dev/ubi3_0", utils::MakePartitionName("/dev/ubiblock", 3));
163 EXPECT_EQ("/dev/mtd2", utils::MakePartitionName("/dev/ubiblock", 2));
164 EXPECT_EQ("/dev/ubi1_0", utils::MakePartitionName("/dev/ubiblock", 1));
165}
166
167TEST(UtilsTest, MakePartitionNameForMountTest) {
168 EXPECT_EQ("/dev/sda4", utils::MakePartitionNameForMount("/dev/sda4"));
169 EXPECT_EQ("/dev/sda123", utils::MakePartitionNameForMount("/dev/sda123"));
170 EXPECT_EQ("/dev/mmcblk2", utils::MakePartitionNameForMount("/dev/mmcblk2"));
171 EXPECT_EQ("/dev/mmcblk0p2",
172 utils::MakePartitionNameForMount("/dev/mmcblk0p2"));
173 EXPECT_EQ("/dev/loop0", utils::MakePartitionNameForMount("/dev/loop0"));
174 EXPECT_EQ("/dev/loop8", utils::MakePartitionNameForMount("/dev/loop8"));
Amin Hassanib2689592019-01-13 17:04:28 -0800175 EXPECT_EQ("/dev/loop12p2", utils::MakePartitionNameForMount("/dev/loop12p2"));
Nam T. Nguyena78b28c2015-03-06 22:30:12 -0800176 EXPECT_EQ("/dev/ubiblock5_0",
177 utils::MakePartitionNameForMount("/dev/ubiblock5_0"));
Amin Hassanib2689592019-01-13 17:04:28 -0800178 EXPECT_EQ("/dev/mtd4", utils::MakePartitionNameForMount("/dev/ubi4_0"));
Nam T. Nguyena78b28c2015-03-06 22:30:12 -0800179 EXPECT_EQ("/dev/ubiblock3_0",
180 utils::MakePartitionNameForMount("/dev/ubiblock3"));
181 EXPECT_EQ("/dev/mtd2", utils::MakePartitionNameForMount("/dev/ubi2"));
Amin Hassanib2689592019-01-13 17:04:28 -0800182 EXPECT_EQ("/dev/ubi1_0", utils::MakePartitionNameForMount("/dev/ubiblock1"));
Alex Vakulenkof3f85bb2014-03-26 16:36:35 -0700183}
184
Darin Petkov5c0a8af2010-08-24 13:39:13 -0700185TEST(UtilsTest, FuzzIntTest) {
Amin Hassanib2689592019-01-13 17:04:28 -0800186 static const uint32_t kRanges[] = {0, 1, 2, 20};
Alex Deymo80f70ff2016-02-10 16:08:11 -0800187 for (uint32_t range : kRanges) {
Darin Petkov5c0a8af2010-08-24 13:39:13 -0700188 const int kValue = 50;
189 for (int tries = 0; tries < 100; ++tries) {
Alex Deymo80f70ff2016-02-10 16:08:11 -0800190 uint32_t value = utils::FuzzInt(kValue, range);
Darin Petkov5c0a8af2010-08-24 13:39:13 -0700191 EXPECT_GE(value, kValue - range / 2);
192 EXPECT_LE(value, kValue + range - range / 2);
193 }
194 }
195}
196
Andrew de los Reyes712b3ac2011-01-07 13:47:52 -0800197namespace {
Alex Deymo032e7722014-03-25 17:53:56 -0700198void GetFileFormatTester(const string& expected,
Ben Chan9abb7632014-08-07 00:10:53 -0700199 const vector<uint8_t>& contents) {
Alex Deymo10875d92014-11-10 21:52:57 -0800200 test_utils::ScopedTempFile file;
Alex Deymobffa0602016-02-12 17:16:29 -0800201 ASSERT_TRUE(utils::WriteFile(file.path().c_str(),
Alex Deymo032e7722014-03-25 17:53:56 -0700202 reinterpret_cast<const char*>(contents.data()),
203 contents.size()));
Alex Deymobffa0602016-02-12 17:16:29 -0800204 EXPECT_EQ(expected, utils::GetFileFormat(file.path()));
Alex Deymo032e7722014-03-25 17:53:56 -0700205}
Alex Deymo10875d92014-11-10 21:52:57 -0800206} // namespace
Alex Deymo032e7722014-03-25 17:53:56 -0700207
208TEST(UtilsTest, GetFileFormatTest) {
209 EXPECT_EQ("File not found.", utils::GetFileFormat("/path/to/nowhere"));
Ben Chan9abb7632014-08-07 00:10:53 -0700210 GetFileFormatTester("data", vector<uint8_t>{1, 2, 3, 4, 5, 6, 7, 8});
211 GetFileFormatTester("ELF", vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46});
Alex Deymo032e7722014-03-25 17:53:56 -0700212
213 // Real tests from cros_installer on different boards.
214 // ELF 32-bit LSB executable, Intel 80386
215 GetFileFormatTester(
216 "ELF 32-bit little-endian x86",
Ben Chan9abb7632014-08-07 00:10:53 -0700217 vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
218 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
219 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00,
220 0x90, 0x83, 0x04, 0x08, 0x34, 0x00, 0x00, 0x00});
Alex Deymo032e7722014-03-25 17:53:56 -0700221
Alex Deymoc1711e22014-08-08 13:16:23 -0700222 // ELF 32-bit LSB executable, MIPS
223 GetFileFormatTester(
224 "ELF 32-bit little-endian mips",
225 vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
226 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
227 0x03, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00,
228 0xc0, 0x12, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00});
229
Alex Deymo032e7722014-03-25 17:53:56 -0700230 // ELF 32-bit LSB executable, ARM
231 GetFileFormatTester(
232 "ELF 32-bit little-endian arm",
Ben Chan9abb7632014-08-07 00:10:53 -0700233 vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
234 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
235 0x02, 0x00, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00,
236 0x85, 0x8b, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00});
Alex Deymo032e7722014-03-25 17:53:56 -0700237
238 // ELF 64-bit LSB executable, x86-64
239 GetFileFormatTester(
240 "ELF 64-bit little-endian x86-64",
Ben Chan9abb7632014-08-07 00:10:53 -0700241 vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x02, 0x01, 0x01, 0x00,
242 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
243 0x02, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00,
244 0xb0, 0x04, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00});
Alex Deymo032e7722014-03-25 17:53:56 -0700245}
246
David Zeuthen674c3182013-04-18 14:05:20 -0700247TEST(UtilsTest, FormatTimeDeltaTest) {
248 // utils::FormatTimeDelta() is not locale-aware (it's only used for logging
249 // which is not localized) so we only need to test the C locale
250 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromMilliseconds(100)),
251 "0.1s");
Amin Hassanib2689592019-01-13 17:04:28 -0800252 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(0)), "0s");
253 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(1)), "1s");
254 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(59)), "59s");
255 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(60)), "1m0s");
256 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(61)), "1m1s");
257 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(90)), "1m30s");
David Zeuthen674c3182013-04-18 14:05:20 -0700258 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(1205)),
259 "20m5s");
260 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3600)),
261 "1h0m0s");
262 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3601)),
263 "1h0m1s");
264 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3661)),
265 "1h1m1s");
266 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(7261)),
267 "2h1m1s");
268 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(86400)),
269 "1d0h0m0s");
270 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(86401)),
271 "1d0h0m1s");
272 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(200000)),
273 "2d7h33m20s");
274 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(200000) +
275 base::TimeDelta::FromMilliseconds(1)),
276 "2d7h33m20.001s");
Amin Hassanib2689592019-01-13 17:04:28 -0800277 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(-1)), "-1s");
David Zeuthen674c3182013-04-18 14:05:20 -0700278}
279
David Zeuthen639aa362014-02-03 16:23:44 -0800280TEST(UtilsTest, ConvertToOmahaInstallDate) {
281 // The Omaha Epoch starts at Jan 1, 2007 0:00 PST which is a
282 // Monday. In Unix time, this point in time is easily obtained via
283 // the date(1) command like this:
284 //
285 // $ date +"%s" --date="Jan 1, 2007 0:00 PST"
286 const time_t omaha_epoch = 1167638400;
287 int value;
288
289 // Points in time *on and after* the Omaha epoch should not fail.
290 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
291 base::Time::FromTimeT(omaha_epoch), &value));
292 EXPECT_GE(value, 0);
293
294 // Anything before the Omaha epoch should fail. We test it for two points.
295 EXPECT_FALSE(utils::ConvertToOmahaInstallDate(
296 base::Time::FromTimeT(omaha_epoch - 1), &value));
297 EXPECT_FALSE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800298 base::Time::FromTimeT(omaha_epoch - 100 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800299
300 // Check that we jump from 0 to 7 exactly on the one-week mark, e.g.
301 // on Jan 8, 2007 0:00 PST.
302 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800303 base::Time::FromTimeT(omaha_epoch + 7 * 24 * 3600 - 1), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800304 EXPECT_EQ(value, 0);
305 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800306 base::Time::FromTimeT(omaha_epoch + 7 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800307 EXPECT_EQ(value, 7);
308
309 // Check a couple of more values.
310 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800311 base::Time::FromTimeT(omaha_epoch + 10 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800312 EXPECT_EQ(value, 7);
313 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800314 base::Time::FromTimeT(omaha_epoch + 20 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800315 EXPECT_EQ(value, 14);
316 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800317 base::Time::FromTimeT(omaha_epoch + 26 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800318 EXPECT_EQ(value, 21);
319 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
Amin Hassanib2689592019-01-13 17:04:28 -0800320 base::Time::FromTimeT(omaha_epoch + 29 * 24 * 3600), &value));
David Zeuthen639aa362014-02-03 16:23:44 -0800321 EXPECT_EQ(value, 28);
322
323 // The date Jun 4, 2007 0:00 PDT is a Monday and is hence a point
324 // where the Omaha InstallDate jumps 7 days. Its unix time is
325 // 1180940400. Notably, this is a point in time where Daylight
326 // Savings Time (DST) was is in effect (e.g. it's PDT, not PST).
327 //
328 // Note that as utils::ConvertToOmahaInstallDate() _deliberately_
329 // ignores DST (as it's hard to implement in a thread-safe way using
330 // glibc, see comments in utils.h) we have to fudge by the DST
331 // offset which is one hour. Conveniently, if the function were
332 // someday modified to be DST aware, this test would have to be
333 // modified as well.
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700334 const time_t dst_time = 1180940400; // Jun 4, 2007 0:00 PDT.
David Zeuthen639aa362014-02-03 16:23:44 -0800335 const time_t fudge = 3600;
336 int value1, value2;
337 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
338 base::Time::FromTimeT(dst_time + fudge - 1), &value1));
339 EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
340 base::Time::FromTimeT(dst_time + fudge), &value2));
341 EXPECT_EQ(value1, value2 - 7);
342}
343
Allie Wood78750a42015-02-11 15:42:11 -0800344TEST(UtilsTest, GetMinorVersion) {
345 // Test GetMinorVersion by verifying that it parses the conf file and returns
346 // the correct value.
Allie Wood78750a42015-02-11 15:42:11 -0800347 uint32_t minor_version;
348
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700349 brillo::KeyValueStore store;
Alex Deymob42b98d2015-07-06 17:42:38 -0700350 EXPECT_FALSE(utils::GetMinorVersion(store, &minor_version));
Allie Wood78750a42015-02-11 15:42:11 -0800351
Alex Deymob42b98d2015-07-06 17:42:38 -0700352 EXPECT_TRUE(store.LoadFromString("PAYLOAD_MINOR_VERSION=one-two-three\n"));
353 EXPECT_FALSE(utils::GetMinorVersion(store, &minor_version));
Allie Wood78750a42015-02-11 15:42:11 -0800354
Alex Deymob42b98d2015-07-06 17:42:38 -0700355 EXPECT_TRUE(store.LoadFromString("PAYLOAD_MINOR_VERSION=123\n"));
356 EXPECT_TRUE(utils::GetMinorVersion(store, &minor_version));
Alex Deymo80f70ff2016-02-10 16:08:11 -0800357 EXPECT_EQ(123U, minor_version);
Allie Wood78750a42015-02-11 15:42:11 -0800358}
359
Nam T. Nguyen2b67a592014-12-03 14:56:00 -0800360static bool BoolMacroTestHelper() {
361 int i = 1;
362 unsigned int ui = 1;
363 bool b = 1;
364 std::unique_ptr<char> cptr(new char);
365
366 TEST_AND_RETURN_FALSE(i);
367 TEST_AND_RETURN_FALSE(ui);
368 TEST_AND_RETURN_FALSE(b);
369 TEST_AND_RETURN_FALSE(cptr);
370
371 TEST_AND_RETURN_FALSE_ERRNO(i);
372 TEST_AND_RETURN_FALSE_ERRNO(ui);
373 TEST_AND_RETURN_FALSE_ERRNO(b);
374 TEST_AND_RETURN_FALSE_ERRNO(cptr);
375
376 return true;
377}
378
379static void VoidMacroTestHelper(bool* ret) {
380 int i = 1;
381 unsigned int ui = 1;
382 bool b = 1;
383 std::unique_ptr<char> cptr(new char);
384
385 *ret = false;
386
387 TEST_AND_RETURN(i);
388 TEST_AND_RETURN(ui);
389 TEST_AND_RETURN(b);
390 TEST_AND_RETURN(cptr);
391
392 TEST_AND_RETURN_ERRNO(i);
393 TEST_AND_RETURN_ERRNO(ui);
394 TEST_AND_RETURN_ERRNO(b);
395 TEST_AND_RETURN_ERRNO(cptr);
396
397 *ret = true;
398}
399
Zentaro Kavanagh0ff621c2018-07-13 13:06:56 -0700400static void ExpectParseRollbackKeyVersion(const string& version,
401 uint16_t expected_high,
402 uint16_t expected_low) {
403 uint16_t actual_high;
404 uint16_t actual_low;
405 utils::ParseRollbackKeyVersion(version, &actual_high, &actual_low);
406 EXPECT_EQ(expected_high, actual_high);
407 EXPECT_EQ(expected_low, actual_low);
408}
409
410static void ExpectInvalidParseRollbackKeyVersion(const string& version) {
411 ExpectParseRollbackKeyVersion(version,
412 numeric_limits<uint16_t>::max(),
413 numeric_limits<uint16_t>::max());
414}
415
Nam T. Nguyen2b67a592014-12-03 14:56:00 -0800416TEST(UtilsTest, TestMacros) {
417 bool void_test = false;
418 VoidMacroTestHelper(&void_test);
419 EXPECT_TRUE(void_test);
420
421 EXPECT_TRUE(BoolMacroTestHelper());
422}
423
Alex Deymoa2ea1c22016-08-24 17:26:19 -0700424TEST(UtilsTest, RunAsRootUnmountFilesystemFailureTest) {
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700425 EXPECT_FALSE(utils::UnmountFilesystem("/path/to/non-existing-dir"));
426}
427
Alex Deymoa2ea1c22016-08-24 17:26:19 -0700428TEST(UtilsTest, RunAsRootUnmountFilesystemBusyFailureTest) {
Sen Jiang0779a152018-07-02 17:34:56 -0700429 test_utils::ScopedTempFile tmp_image("img.XXXXXX");
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700430
431 EXPECT_TRUE(base::CopyFile(
432 test_utils::GetBuildArtifactsPath().Append("gen/disk_ext2_4k.img"),
Sen Jiang0779a152018-07-02 17:34:56 -0700433 base::FilePath(tmp_image.path())));
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700434
435 base::ScopedTempDir mnt_dir;
436 EXPECT_TRUE(mnt_dir.CreateUniqueTempDir());
437
438 string loop_dev;
439 test_utils::ScopedLoopbackDeviceBinder loop_binder(
Sen Jiang0779a152018-07-02 17:34:56 -0700440 tmp_image.path(), true, &loop_dev);
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700441
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900442 EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700443 // This is the actual test part. While we hold a file descriptor open for the
444 // mounted filesystem, umount should still succeed.
445 EXPECT_TRUE(utils::MountFilesystem(
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900446 loop_dev, mnt_dir.GetPath().value(), MS_RDONLY, "ext4", ""));
Alex Deymof4116502017-03-22 17:00:31 -0700447 // Verify the directory is a mount point now.
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900448 EXPECT_TRUE(utils::IsMountpoint(mnt_dir.GetPath().value()));
Alex Deymof4116502017-03-22 17:00:31 -0700449
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900450 string target_file = mnt_dir.GetPath().Append("empty-file").value();
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700451 int fd = HANDLE_EINTR(open(target_file.c_str(), O_RDONLY));
452 EXPECT_GE(fd, 0);
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900453 EXPECT_TRUE(utils::UnmountFilesystem(mnt_dir.GetPath().value()));
Alex Deymof4116502017-03-22 17:00:31 -0700454 // The filesystem should be already unmounted at this point.
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900455 EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700456 IGNORE_EINTR(close(fd));
457 // The filesystem was already unmounted so this call should fail.
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900458 EXPECT_FALSE(utils::UnmountFilesystem(mnt_dir.GetPath().value()));
Alex Deymo5ba93ad2016-08-22 19:51:59 -0700459}
460
Alex Deymof4116502017-03-22 17:00:31 -0700461TEST(UtilsTest, IsMountpointTest) {
462 EXPECT_TRUE(utils::IsMountpoint("/"));
463 EXPECT_FALSE(utils::IsMountpoint("/path/to/nowhere"));
464
465 base::ScopedTempDir mnt_dir;
466 EXPECT_TRUE(mnt_dir.CreateUniqueTempDir());
Hidehiko Abe2b9d2412017-12-13 18:56:18 +0900467 EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
Alex Deymof4116502017-03-22 17:00:31 -0700468
Sen Jiang0779a152018-07-02 17:34:56 -0700469 test_utils::ScopedTempFile file;
470 EXPECT_FALSE(utils::IsMountpoint(file.path()));
Alex Deymof4116502017-03-22 17:00:31 -0700471}
472
Marton Hunyadya0302682018-05-16 18:52:13 +0200473TEST(UtilsTest, VersionPrefix) {
474 EXPECT_EQ(10575, utils::VersionPrefix("10575.39."));
475 EXPECT_EQ(10575, utils::VersionPrefix("10575.39"));
476 EXPECT_EQ(10575, utils::VersionPrefix("10575.x"));
477 EXPECT_EQ(10575, utils::VersionPrefix("10575."));
478 EXPECT_EQ(10575, utils::VersionPrefix("10575"));
479 EXPECT_EQ(0, utils::VersionPrefix(""));
480 EXPECT_EQ(-1, utils::VersionPrefix("x"));
481 EXPECT_EQ(-1, utils::VersionPrefix("1x"));
482 EXPECT_EQ(-1, utils::VersionPrefix("x.1"));
483}
484
Zentaro Kavanagh0ff621c2018-07-13 13:06:56 -0700485TEST(UtilsTest, ParseDottedVersion) {
486 // Valid case.
487 ExpectParseRollbackKeyVersion("2.3", 2, 3);
488 ExpectParseRollbackKeyVersion("65535.65535", 65535, 65535);
489
490 // Zero is technically allowed but never actually used.
491 ExpectParseRollbackKeyVersion("0.0", 0, 0);
492
493 // Invalid cases.
494 ExpectInvalidParseRollbackKeyVersion("");
495 ExpectInvalidParseRollbackKeyVersion("2");
496 ExpectInvalidParseRollbackKeyVersion("2.");
497 ExpectInvalidParseRollbackKeyVersion(".2");
498 ExpectInvalidParseRollbackKeyVersion("2.2.");
499 ExpectInvalidParseRollbackKeyVersion("2.2.3");
500 ExpectInvalidParseRollbackKeyVersion(".2.2");
501 ExpectInvalidParseRollbackKeyVersion("a.b");
502 ExpectInvalidParseRollbackKeyVersion("1.b");
503 ExpectInvalidParseRollbackKeyVersion("a.2");
504 ExpectInvalidParseRollbackKeyVersion("65536.65536");
505 ExpectInvalidParseRollbackKeyVersion("99999.99999");
506 ExpectInvalidParseRollbackKeyVersion("99999.1");
507 ExpectInvalidParseRollbackKeyVersion("1.99999");
508}
509
Kyeongkab.Nam500ca132019-06-26 13:48:07 +0900510TEST(UtilsTest, GetFilePathTest) {
511 test_utils::ScopedTempFile file;
512 int fd = HANDLE_EINTR(open(file.path().c_str(), O_RDONLY));
513 EXPECT_GE(fd, 0);
514 EXPECT_EQ(file.path(), utils::GetFilePath(fd));
515 EXPECT_EQ("not found", utils::GetFilePath(-1));
516 IGNORE_EINTR(close(fd));
517}
518
adlr@google.com3defe6a2009-12-04 20:57:17 +0000519} // namespace chromeos_update_engine