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 //
16 
17 #include "update_engine/common/utils.h"
18 
19 #include <fcntl.h>
20 #include <stdint.h>
21 #include <sys/mount.h>
22 #include <sys/stat.h>
23 #include <sys/types.h>
24 
25 #include <limits>
26 #include <string>
27 #include <vector>
28 
29 #include <base/files/file_path.h>
30 #include <base/files/file_util.h>
31 #include <base/files/scoped_temp_dir.h>
32 #include <gtest/gtest.h>
33 
34 #include "update_engine/common/test_utils.h"
35 
36 using std::numeric_limits;
37 using std::string;
38 using std::vector;
39 
40 namespace chromeos_update_engine {
41 
42 class UtilsTest : public ::testing::Test {};
43 
TEST(UtilsTest,WriteFileOpenFailure)44 TEST(UtilsTest, WriteFileOpenFailure) {
45   EXPECT_FALSE(utils::WriteFile("/this/doesn't/exist", "hello", 5));
46 }
47 
TEST(UtilsTest,WriteFileReadFile)48 TEST(UtilsTest, WriteFileReadFile) {
49   ScopedTempFile file;
50   EXPECT_TRUE(utils::WriteFile(file.path().c_str(), "hello", 5));
51 
52   brillo::Blob readback;
53   EXPECT_TRUE(utils::ReadFile(file.path().c_str(), &readback));
54   EXPECT_EQ("hello", string(readback.begin(), readback.end()));
55 }
56 
TEST(UtilsTest,ReadFileFailure)57 TEST(UtilsTest, ReadFileFailure) {
58   brillo::Blob empty;
59   EXPECT_FALSE(utils::ReadFile("/this/doesn't/exist", &empty));
60 }
61 
TEST(UtilsTest,ReadFileChunk)62 TEST(UtilsTest, ReadFileChunk) {
63   ScopedTempFile file;
64   brillo::Blob data;
65   const size_t kSize = 1024 * 1024;
66   for (size_t i = 0; i < kSize; i++) {
67     data.push_back(i % 255);
68   }
69   EXPECT_TRUE(test_utils::WriteFileVector(file.path(), data));
70   brillo::Blob in_data;
71   EXPECT_TRUE(utils::ReadFileChunk(file.path().c_str(), kSize, 10, &in_data));
72   EXPECT_TRUE(in_data.empty());
73   EXPECT_TRUE(utils::ReadFileChunk(file.path().c_str(), 0, -1, &in_data));
74   EXPECT_EQ(data, in_data);
75   in_data.clear();
76   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);
78 }
79 
TEST(UtilsTest,IsSymlinkTest)80 TEST(UtilsTest, IsSymlinkTest) {
81   base::ScopedTempDir temp_dir;
82   ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
83   string temp_file = temp_dir.GetPath().Append("temp-file").value();
84   EXPECT_TRUE(utils::WriteFile(temp_file.c_str(), "", 0));
85   string temp_symlink = temp_dir.GetPath().Append("temp-symlink").value();
86   EXPECT_EQ(0, symlink(temp_file.c_str(), temp_symlink.c_str()));
87   EXPECT_FALSE(utils::IsSymlink(temp_dir.GetPath().value().c_str()));
88   EXPECT_FALSE(utils::IsSymlink(temp_file.c_str()));
89   EXPECT_TRUE(utils::IsSymlink(temp_symlink.c_str()));
90   EXPECT_FALSE(utils::IsSymlink("/non/existent/path"));
91 }
92 
TEST(UtilsTest,SplitPartitionNameTest)93 TEST(UtilsTest, SplitPartitionNameTest) {
94   string disk;
95   int part_num;
96 
97   EXPECT_TRUE(utils::SplitPartitionName("/dev/sda3", &disk, &part_num));
98   EXPECT_EQ("/dev/sda", disk);
99   EXPECT_EQ(3, part_num);
100 
101   EXPECT_TRUE(utils::SplitPartitionName("/dev/sdp1234", &disk, &part_num));
102   EXPECT_EQ("/dev/sdp", disk);
103   EXPECT_EQ(1234, part_num);
104 
105   EXPECT_TRUE(utils::SplitPartitionName("/dev/mmcblk0p3", &disk, &part_num));
106   EXPECT_EQ("/dev/mmcblk0", disk);
107   EXPECT_EQ(3, part_num);
108 
109   EXPECT_TRUE(utils::SplitPartitionName("/dev/loop10", &disk, &part_num));
110   EXPECT_EQ("/dev/loop", disk);
111   EXPECT_EQ(10, part_num);
112 
113   EXPECT_TRUE(utils::SplitPartitionName("/dev/loop28p11", &disk, &part_num));
114   EXPECT_EQ("/dev/loop28", disk);
115   EXPECT_EQ(11, part_num);
116 
117   EXPECT_FALSE(utils::SplitPartitionName("/dev/mmcblk0p", &disk, &part_num));
118   EXPECT_FALSE(utils::SplitPartitionName("/dev/sda", &disk, &part_num));
119   EXPECT_FALSE(utils::SplitPartitionName("/dev/foo/bar", &disk, &part_num));
120   EXPECT_FALSE(utils::SplitPartitionName("/", &disk, &part_num));
121   EXPECT_FALSE(utils::SplitPartitionName("", &disk, &part_num));
122 }
123 
TEST(UtilsTest,MakePartitionNameTest)124 TEST(UtilsTest, MakePartitionNameTest) {
125   EXPECT_EQ("/dev/sda4", utils::MakePartitionName("/dev/sda", 4));
126   EXPECT_EQ("/dev/sda123", utils::MakePartitionName("/dev/sda", 123));
127   EXPECT_EQ("/dev/mmcblk2", utils::MakePartitionName("/dev/mmcblk", 2));
128   EXPECT_EQ("/dev/mmcblk0p2", utils::MakePartitionName("/dev/mmcblk0", 2));
129   EXPECT_EQ("/dev/loop8", utils::MakePartitionName("/dev/loop", 8));
130   EXPECT_EQ("/dev/loop12p2", utils::MakePartitionName("/dev/loop12", 2));
131 }
132 
TEST(UtilsTest,FuzzIntTest)133 TEST(UtilsTest, FuzzIntTest) {
134   static const uint32_t kRanges[] = {0, 1, 2, 20};
135   for (uint32_t range : kRanges) {
136     const int kValue = 50;
137     for (int tries = 0; tries < 100; ++tries) {
138       uint32_t value = utils::FuzzInt(kValue, range);
139       EXPECT_GE(value, kValue - range / 2);
140       EXPECT_LE(value, kValue + range - range / 2);
141     }
142   }
143 }
144 
145 namespace {
GetFileFormatTester(const string & expected,const vector<uint8_t> & contents)146 void GetFileFormatTester(const string& expected,
147                          const vector<uint8_t>& contents) {
148   ScopedTempFile file;
149   ASSERT_TRUE(utils::WriteFile(file.path().c_str(),
150                                reinterpret_cast<const char*>(contents.data()),
151                                contents.size()));
152   EXPECT_EQ(expected, utils::GetFileFormat(file.path()));
153 }
154 }  // namespace
155 
TEST(UtilsTest,GetFileFormatTest)156 TEST(UtilsTest, GetFileFormatTest) {
157   EXPECT_EQ("File not found.", utils::GetFileFormat("/path/to/nowhere"));
158   GetFileFormatTester("data", vector<uint8_t>{1, 2, 3, 4, 5, 6, 7, 8});
159   GetFileFormatTester("ELF", vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46});
160 
161   // Real tests from cros_installer on different boards.
162   // ELF 32-bit LSB executable, Intel 80386
163   GetFileFormatTester(
164       "ELF 32-bit little-endian x86",
165       vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
166                       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
167                       0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00,
168                       0x90, 0x83, 0x04, 0x08, 0x34, 0x00, 0x00, 0x00});
169 
170   // ELF 32-bit LSB executable, MIPS
171   GetFileFormatTester(
172       "ELF 32-bit little-endian mips",
173       vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
174                       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
175                       0x03, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00,
176                       0xc0, 0x12, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00});
177 
178   // ELF 32-bit LSB executable, ARM
179   GetFileFormatTester(
180       "ELF 32-bit little-endian arm",
181       vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x01, 0x01, 0x01, 0x00,
182                       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
183                       0x02, 0x00, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00,
184                       0x85, 0x8b, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00});
185 
186   // ELF 64-bit LSB executable, x86-64
187   GetFileFormatTester(
188       "ELF 64-bit little-endian x86-64",
189       vector<uint8_t>{0x7f, 0x45, 0x4c, 0x46, 0x02, 0x01, 0x01, 0x00,
190                       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
191                       0x02, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00,
192                       0xb0, 0x04, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00});
193 }
194 
TEST(UtilsTest,FormatTimeDeltaTest)195 TEST(UtilsTest, FormatTimeDeltaTest) {
196   // utils::FormatTimeDelta() is not locale-aware (it's only used for logging
197   // which is not localized) so we only need to test the C locale
198   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromMilliseconds(100)),
199             "0.1s");
200   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(0)), "0s");
201   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(1)), "1s");
202   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(59)), "59s");
203   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(60)), "1m0s");
204   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(61)), "1m1s");
205   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(90)), "1m30s");
206   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(1205)),
207             "20m5s");
208   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3600)),
209             "1h0m0s");
210   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3601)),
211             "1h0m1s");
212   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3661)),
213             "1h1m1s");
214   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(7261)),
215             "2h1m1s");
216   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(86400)),
217             "1d0h0m0s");
218   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(86401)),
219             "1d0h0m1s");
220   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(200000)),
221             "2d7h33m20s");
222   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(200000) +
223                                    base::TimeDelta::FromMilliseconds(1)),
224             "2d7h33m20.001s");
225   EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(-1)), "-1s");
226 }
227 
TEST(UtilsTest,ConvertToOmahaInstallDate)228 TEST(UtilsTest, ConvertToOmahaInstallDate) {
229   // The Omaha Epoch starts at Jan 1, 2007 0:00 PST which is a
230   // Monday. In Unix time, this point in time is easily obtained via
231   // the date(1) command like this:
232   //
233   //  $ date +"%s" --date="Jan 1, 2007 0:00 PST"
234   const time_t omaha_epoch = 1167638400;
235   int value;
236 
237   // Points in time *on and after* the Omaha epoch should not fail.
238   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
239       base::Time::FromTimeT(omaha_epoch), &value));
240   EXPECT_GE(value, 0);
241 
242   // Anything before the Omaha epoch should fail. We test it for two points.
243   EXPECT_FALSE(utils::ConvertToOmahaInstallDate(
244       base::Time::FromTimeT(omaha_epoch - 1), &value));
245   EXPECT_FALSE(utils::ConvertToOmahaInstallDate(
246       base::Time::FromTimeT(omaha_epoch - 100 * 24 * 3600), &value));
247 
248   // Check that we jump from 0 to 7 exactly on the one-week mark, e.g.
249   // on Jan 8, 2007 0:00 PST.
250   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
251       base::Time::FromTimeT(omaha_epoch + 7 * 24 * 3600 - 1), &value));
252   EXPECT_EQ(value, 0);
253   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
254       base::Time::FromTimeT(omaha_epoch + 7 * 24 * 3600), &value));
255   EXPECT_EQ(value, 7);
256 
257   // Check a couple of more values.
258   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
259       base::Time::FromTimeT(omaha_epoch + 10 * 24 * 3600), &value));
260   EXPECT_EQ(value, 7);
261   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
262       base::Time::FromTimeT(omaha_epoch + 20 * 24 * 3600), &value));
263   EXPECT_EQ(value, 14);
264   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
265       base::Time::FromTimeT(omaha_epoch + 26 * 24 * 3600), &value));
266   EXPECT_EQ(value, 21);
267   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
268       base::Time::FromTimeT(omaha_epoch + 29 * 24 * 3600), &value));
269   EXPECT_EQ(value, 28);
270 
271   // The date Jun 4, 2007 0:00 PDT is a Monday and is hence a point
272   // where the Omaha InstallDate jumps 7 days. Its unix time is
273   // 1180940400. Notably, this is a point in time where Daylight
274   // Savings Time (DST) was is in effect (e.g. it's PDT, not PST).
275   //
276   // Note that as utils::ConvertToOmahaInstallDate() _deliberately_
277   // ignores DST (as it's hard to implement in a thread-safe way using
278   // glibc, see comments in utils.h) we have to fudge by the DST
279   // offset which is one hour. Conveniently, if the function were
280   // someday modified to be DST aware, this test would have to be
281   // modified as well.
282   const time_t dst_time = 1180940400;  // Jun 4, 2007 0:00 PDT.
283   const time_t fudge = 3600;
284   int value1, value2;
285   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
286       base::Time::FromTimeT(dst_time + fudge - 1), &value1));
287   EXPECT_TRUE(utils::ConvertToOmahaInstallDate(
288       base::Time::FromTimeT(dst_time + fudge), &value2));
289   EXPECT_EQ(value1, value2 - 7);
290 }
291 
TEST(UtilsTest,GetMinorVersion)292 TEST(UtilsTest, GetMinorVersion) {
293   // Test GetMinorVersion by verifying that it parses the conf file and returns
294   // the correct value.
295   uint32_t minor_version;
296 
297   brillo::KeyValueStore store;
298   EXPECT_FALSE(utils::GetMinorVersion(store, &minor_version));
299 
300   EXPECT_TRUE(store.LoadFromString("PAYLOAD_MINOR_VERSION=one-two-three\n"));
301   EXPECT_FALSE(utils::GetMinorVersion(store, &minor_version));
302 
303   EXPECT_TRUE(store.LoadFromString("PAYLOAD_MINOR_VERSION=123\n"));
304   EXPECT_TRUE(utils::GetMinorVersion(store, &minor_version));
305   EXPECT_EQ(123U, minor_version);
306 }
307 
BoolMacroTestHelper()308 static bool BoolMacroTestHelper() {
309   int i = 1;
310   unsigned int ui = 1;
311   bool b = 1;
312   std::unique_ptr<char> cptr(new char);
313 
314   TEST_AND_RETURN_FALSE(i);
315   TEST_AND_RETURN_FALSE(ui);
316   TEST_AND_RETURN_FALSE(b);
317   TEST_AND_RETURN_FALSE(cptr);
318 
319   TEST_AND_RETURN_FALSE_ERRNO(i);
320   TEST_AND_RETURN_FALSE_ERRNO(ui);
321   TEST_AND_RETURN_FALSE_ERRNO(b);
322   TEST_AND_RETURN_FALSE_ERRNO(cptr);
323 
324   return true;
325 }
326 
VoidMacroTestHelper(bool * ret)327 static void VoidMacroTestHelper(bool* ret) {
328   int i = 1;
329   unsigned int ui = 1;
330   bool b = 1;
331   std::unique_ptr<char> cptr(new char);
332 
333   *ret = false;
334 
335   TEST_AND_RETURN(i);
336   TEST_AND_RETURN(ui);
337   TEST_AND_RETURN(b);
338   TEST_AND_RETURN(cptr);
339 
340   TEST_AND_RETURN_ERRNO(i);
341   TEST_AND_RETURN_ERRNO(ui);
342   TEST_AND_RETURN_ERRNO(b);
343   TEST_AND_RETURN_ERRNO(cptr);
344 
345   *ret = true;
346 }
347 
ExpectParseRollbackKeyVersion(const string & version,uint16_t expected_high,uint16_t expected_low)348 static void ExpectParseRollbackKeyVersion(const string& version,
349                                           uint16_t expected_high,
350                                           uint16_t expected_low) {
351   uint16_t actual_high;
352   uint16_t actual_low;
353   utils::ParseRollbackKeyVersion(version, &actual_high, &actual_low);
354   EXPECT_EQ(expected_high, actual_high);
355   EXPECT_EQ(expected_low, actual_low);
356 }
357 
ExpectInvalidParseRollbackKeyVersion(const string & version)358 static void ExpectInvalidParseRollbackKeyVersion(const string& version) {
359   ExpectParseRollbackKeyVersion(version,
360                                 numeric_limits<uint16_t>::max(),
361                                 numeric_limits<uint16_t>::max());
362 }
363 
TEST(UtilsTest,TestMacros)364 TEST(UtilsTest, TestMacros) {
365   bool void_test = false;
366   VoidMacroTestHelper(&void_test);
367   EXPECT_TRUE(void_test);
368 
369   EXPECT_TRUE(BoolMacroTestHelper());
370 }
371 
TEST(UtilsTest,RunAsRootUnmountFilesystemFailureTest)372 TEST(UtilsTest, RunAsRootUnmountFilesystemFailureTest) {
373   EXPECT_FALSE(utils::UnmountFilesystem("/path/to/non-existing-dir"));
374 }
375 
TEST(UtilsTest,RunAsRootUnmountFilesystemBusyFailureTest)376 TEST(UtilsTest, RunAsRootUnmountFilesystemBusyFailureTest) {
377   ScopedTempFile tmp_image("img.XXXXXX");
378 
379   EXPECT_TRUE(base::CopyFile(
380       test_utils::GetBuildArtifactsPath().Append("gen/disk_ext2_4k.img"),
381       base::FilePath(tmp_image.path())));
382 
383   base::ScopedTempDir mnt_dir;
384   EXPECT_TRUE(mnt_dir.CreateUniqueTempDir());
385 
386   string loop_dev;
387   test_utils::ScopedLoopbackDeviceBinder loop_binder(
388       tmp_image.path(), true, &loop_dev);
389 
390   EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
391   // This is the actual test part. While we hold a file descriptor open for the
392   // mounted filesystem, umount should still succeed.
393   EXPECT_TRUE(utils::MountFilesystem(
394       loop_dev, mnt_dir.GetPath().value(), MS_RDONLY, "ext4", ""));
395   // Verify the directory is a mount point now.
396   EXPECT_TRUE(utils::IsMountpoint(mnt_dir.GetPath().value()));
397 
398   string target_file = mnt_dir.GetPath().Append("empty-file").value();
399   int fd = HANDLE_EINTR(open(target_file.c_str(), O_RDONLY));
400   EXPECT_GE(fd, 0);
401   EXPECT_TRUE(utils::UnmountFilesystem(mnt_dir.GetPath().value()));
402   // The filesystem should be already unmounted at this point.
403   EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
404   IGNORE_EINTR(close(fd));
405   // The filesystem was already unmounted so this call should fail.
406   EXPECT_FALSE(utils::UnmountFilesystem(mnt_dir.GetPath().value()));
407 }
408 
TEST(UtilsTest,IsMountpointTest)409 TEST(UtilsTest, IsMountpointTest) {
410   EXPECT_TRUE(utils::IsMountpoint("/"));
411   EXPECT_FALSE(utils::IsMountpoint("/path/to/nowhere"));
412 
413   base::ScopedTempDir mnt_dir;
414   EXPECT_TRUE(mnt_dir.CreateUniqueTempDir());
415   EXPECT_FALSE(utils::IsMountpoint(mnt_dir.GetPath().value()));
416 
417   ScopedTempFile file;
418   EXPECT_FALSE(utils::IsMountpoint(file.path()));
419 }
420 
TEST(UtilsTest,VersionPrefix)421 TEST(UtilsTest, VersionPrefix) {
422   EXPECT_EQ(10575, utils::VersionPrefix("10575.39."));
423   EXPECT_EQ(10575, utils::VersionPrefix("10575.39"));
424   EXPECT_EQ(10575, utils::VersionPrefix("10575.x"));
425   EXPECT_EQ(10575, utils::VersionPrefix("10575."));
426   EXPECT_EQ(10575, utils::VersionPrefix("10575"));
427   EXPECT_EQ(0, utils::VersionPrefix(""));
428   EXPECT_EQ(-1, utils::VersionPrefix("x"));
429   EXPECT_EQ(-1, utils::VersionPrefix("1x"));
430   EXPECT_EQ(-1, utils::VersionPrefix("x.1"));
431 }
432 
TEST(UtilsTest,ParseDottedVersion)433 TEST(UtilsTest, ParseDottedVersion) {
434   // Valid case.
435   ExpectParseRollbackKeyVersion("2.3", 2, 3);
436   ExpectParseRollbackKeyVersion("65535.65535", 65535, 65535);
437 
438   // Zero is technically allowed but never actually used.
439   ExpectParseRollbackKeyVersion("0.0", 0, 0);
440 
441   // Invalid cases.
442   ExpectInvalidParseRollbackKeyVersion("");
443   ExpectInvalidParseRollbackKeyVersion("2");
444   ExpectInvalidParseRollbackKeyVersion("2.");
445   ExpectInvalidParseRollbackKeyVersion(".2");
446   ExpectInvalidParseRollbackKeyVersion("2.2.");
447   ExpectInvalidParseRollbackKeyVersion("2.2.3");
448   ExpectInvalidParseRollbackKeyVersion(".2.2");
449   ExpectInvalidParseRollbackKeyVersion("a.b");
450   ExpectInvalidParseRollbackKeyVersion("1.b");
451   ExpectInvalidParseRollbackKeyVersion("a.2");
452   ExpectInvalidParseRollbackKeyVersion("65536.65536");
453   ExpectInvalidParseRollbackKeyVersion("99999.99999");
454   ExpectInvalidParseRollbackKeyVersion("99999.1");
455   ExpectInvalidParseRollbackKeyVersion("1.99999");
456 }
457 
TEST(UtilsTest,GetFilePathTest)458 TEST(UtilsTest, GetFilePathTest) {
459   ScopedTempFile file;
460   int fd = HANDLE_EINTR(open(file.path().c_str(), O_RDONLY));
461   EXPECT_GE(fd, 0);
462   EXPECT_EQ(file.path(), utils::GetFilePath(fd));
463   EXPECT_EQ("not found", utils::GetFilePath(-1));
464   IGNORE_EINTR(close(fd));
465 }
466 
TEST(UtilsTest,ValidatePerPartitionTimestamp)467 TEST(UtilsTest, ValidatePerPartitionTimestamp) {
468   ASSERT_EQ(ErrorCode::kPayloadTimestampError,
469             utils::IsTimestampNewer("10", "5"));
470   ASSERT_EQ(ErrorCode::kSuccess, utils::IsTimestampNewer("10", "11"));
471   ASSERT_EQ(ErrorCode::kDownloadManifestParseError,
472             utils::IsTimestampNewer("10", "lol"));
473   ASSERT_EQ(ErrorCode::kError, utils::IsTimestampNewer("lol", "ZZZ"));
474   ASSERT_EQ(ErrorCode::kSuccess, utils::IsTimestampNewer("10", ""));
475 }
476 
477 }  // namespace chromeos_update_engine
478