blob: 8305c141a3533b6628bd09fb2622c4bb3de65dda [file] [log] [blame]
Gilad Arnoldc33faeb2012-07-24 15:11:11 -07001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
rspangler@google.com49fdf182009-10-10 00:57:34 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
adlr@google.comc98a7ed2009-12-04 18:54:03 +00005#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_TEST_UTILS_H__
6#define CHROMEOS_PLATFORM_UPDATE_ENGINE_TEST_UTILS_H__
rspangler@google.com49fdf182009-10-10 00:57:34 +00007
adlr@google.comc98a7ed2009-12-04 18:54:03 +00008#include <set>
rspangler@google.com49fdf182009-10-10 00:57:34 +00009#include <string>
adlr@google.comc98a7ed2009-12-04 18:54:03 +000010#include <vector>
Thieu Le5c7d9752010-12-15 16:09:28 -080011
Chris Masoned903c3b2011-05-12 15:35:46 -070012#include <base/memory/scoped_ptr.h>
adlr@google.comc98a7ed2009-12-04 18:54:03 +000013#include <gtest/gtest.h>
Thieu Le5c7d9752010-12-15 16:09:28 -080014
adlr@google.comc98a7ed2009-12-04 18:54:03 +000015#include "update_engine/action.h"
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070016#include "update_engine/subprocess.h"
Andrew de los Reyesf9185172010-05-03 11:07:05 -070017#include "update_engine/utils.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000018
19// These are some handy functions for unittests.
20
21namespace chromeos_update_engine {
22
rspangler@google.com49fdf182009-10-10 00:57:34 +000023// Writes the data passed to path. The file at path will be overwritten if it
24// exists. Returns true on success, false otherwise.
adlr@google.comc98a7ed2009-12-04 18:54:03 +000025bool WriteFileVector(const std::string& path, const std::vector<char>& data);
26bool WriteFileString(const std::string& path, const std::string& data);
rspangler@google.com49fdf182009-10-10 00:57:34 +000027
adlr@google.comc98a7ed2009-12-04 18:54:03 +000028// Reads a symlink from disk. Returns empty string on failure.
29std::string Readlink(const std::string& path);
30
rspangler@google.com49fdf182009-10-10 00:57:34 +000031// Gzip compresses the data passed using the gzip command line program.
32// Returns compressed data back.
33std::vector<char> GzipCompressData(const std::vector<char>& data);
34
adlr@google.comc98a7ed2009-12-04 18:54:03 +000035// Gives back a 512-bytes length array that contains an MBR with
36// the first partition is marked bootable.
37std::vector<char> GenerateSampleMbr();
38
Gilad Arnold19a45f02012-07-19 12:36:10 -070039bool BindToUnusedLoopDevice(const std::string &filename,
40 std::string* lo_dev_name_ptr);
adlr@google.comc98a7ed2009-12-04 18:54:03 +000041
42// Returns true iff a == b
43bool ExpectVectorsEq(const std::vector<char>& a, const std::vector<char>& b);
44
45inline int System(const std::string& cmd) {
46 return system(cmd.c_str());
47}
48
Andrew de los Reyes80061062010-02-04 14:25:00 -080049void FillWithData(std::vector<char>* buffer);
50
adlr@google.comc98a7ed2009-12-04 18:54:03 +000051namespace {
52// 300 byte pseudo-random string. Not null terminated.
53// This does not gzip compress well.
54const unsigned char kRandomString[] = {
55 0xf2, 0xb7, 0x55, 0x92, 0xea, 0xa6, 0xc9, 0x57,
56 0xe0, 0xf8, 0xeb, 0x34, 0x93, 0xd9, 0xc4, 0x8f,
57 0xcb, 0x20, 0xfa, 0x37, 0x4b, 0x40, 0xcf, 0xdc,
58 0xa5, 0x08, 0x70, 0x89, 0x79, 0x35, 0xe2, 0x3d,
59 0x56, 0xa4, 0x75, 0x73, 0xa3, 0x6d, 0xd1, 0xd5,
60 0x26, 0xbb, 0x9c, 0x60, 0xbd, 0x2f, 0x5a, 0xfa,
61 0xb7, 0xd4, 0x3a, 0x50, 0xa7, 0x6b, 0x3e, 0xfd,
62 0x61, 0x2b, 0x3a, 0x31, 0x30, 0x13, 0x33, 0x53,
63 0xdb, 0xd0, 0x32, 0x71, 0x5c, 0x39, 0xed, 0xda,
64 0xb4, 0x84, 0xca, 0xbc, 0xbd, 0x78, 0x1c, 0x0c,
65 0xd8, 0x0b, 0x41, 0xe8, 0xe1, 0xe0, 0x41, 0xad,
66 0x03, 0x12, 0xd3, 0x3d, 0xb8, 0x75, 0x9b, 0xe6,
67 0xd9, 0x01, 0xd0, 0x87, 0xf4, 0x36, 0xfa, 0xa7,
68 0x0a, 0xfa, 0xc5, 0x87, 0x65, 0xab, 0x9a, 0x7b,
69 0xeb, 0x58, 0x23, 0xf0, 0xa8, 0x0a, 0xf2, 0x33,
70 0x3a, 0xe2, 0xe3, 0x35, 0x74, 0x95, 0xdd, 0x3c,
71 0x59, 0x5a, 0xd9, 0x52, 0x3a, 0x3c, 0xac, 0xe5,
72 0x15, 0x87, 0x6d, 0x82, 0xbc, 0xf8, 0x7d, 0xbe,
73 0xca, 0xd3, 0x2c, 0xd6, 0xec, 0x38, 0xeb, 0xe4,
74 0x53, 0xb0, 0x4c, 0x3f, 0x39, 0x29, 0xf7, 0xa4,
75 0x73, 0xa8, 0xcb, 0x32, 0x50, 0x05, 0x8c, 0x1c,
76 0x1c, 0xca, 0xc9, 0x76, 0x0b, 0x8f, 0x6b, 0x57,
77 0x1f, 0x24, 0x2b, 0xba, 0x82, 0xba, 0xed, 0x58,
78 0xd8, 0xbf, 0xec, 0x06, 0x64, 0x52, 0x6a, 0x3f,
79 0xe4, 0xad, 0xce, 0x84, 0xb4, 0x27, 0x55, 0x14,
80 0xe3, 0x75, 0x59, 0x73, 0x71, 0x51, 0xea, 0xe8,
81 0xcc, 0xda, 0x4f, 0x09, 0xaf, 0xa4, 0xbc, 0x0e,
82 0xa6, 0x1f, 0xe2, 0x3a, 0xf8, 0x96, 0x7d, 0x30,
83 0x23, 0xc5, 0x12, 0xb5, 0xd8, 0x73, 0x6b, 0x71,
84 0xab, 0xf1, 0xd7, 0x43, 0x58, 0xa7, 0xc9, 0xf0,
85 0xe4, 0x85, 0x1c, 0xd6, 0x92, 0x50, 0x2c, 0x98,
86 0x36, 0xfe, 0x87, 0xaf, 0x43, 0x8f, 0x8f, 0xf5,
87 0x88, 0x48, 0x18, 0x42, 0xcf, 0x42, 0xc1, 0xa8,
88 0xe8, 0x05, 0x08, 0xa1, 0x45, 0x70, 0x5b, 0x8c,
89 0x39, 0x28, 0xab, 0xe9, 0x6b, 0x51, 0xd2, 0xcb,
90 0x30, 0x04, 0xea, 0x7d, 0x2f, 0x6e, 0x6c, 0x3b,
91 0x5f, 0x82, 0xd9, 0x5b, 0x89, 0x37, 0x65, 0x65,
92 0xbe, 0x9f, 0xa3, 0x5d
93};
94
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080095const char* const kMountPath = "/tmp/UpdateEngineTests_mnt";
adlr@google.comc98a7ed2009-12-04 18:54:03 +000096} // namespace {}
97
Thieu Le5c7d9752010-12-15 16:09:28 -080098// Creates an empty ext image.
99void CreateEmptyExtImageAtPath(const std::string& path,
100 size_t size,
101 int block_size);
102
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000103// Creates an ext image with some files in it. The paths creates are
104// returned in out_paths.
105void CreateExtImageAtPath(const std::string& path,
106 std::vector<std::string>* out_paths);
107
108// Verifies that for each path in paths, it exists in the filesystem under
109// parent. Also, verifies that no additional paths are present under parent.
110// Also tests properties of various files created by CreateExtImageAtPath().
111// Intentionally copies expected_paths.
112void VerifyAllPaths(const std::string& parent,
113 std::set<std::string> expected_paths);
114
Don Garrett58e8b1f2012-01-31 16:38:16 -0800115class ScopedLoopbackDeviceBinder {
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700116 public:
Don Garrett58e8b1f2012-01-31 16:38:16 -0800117 ScopedLoopbackDeviceBinder(const std::string& file, std::string* dev) {
Gilad Arnold19a45f02012-07-19 12:36:10 -0700118 is_bound_ = BindToUnusedLoopDevice(file, &dev_);
119 EXPECT_TRUE(is_bound_);
Don Garrett58e8b1f2012-01-31 16:38:16 -0800120
Gilad Arnold19a45f02012-07-19 12:36:10 -0700121 if (is_bound_ && dev)
Don Garrett58e8b1f2012-01-31 16:38:16 -0800122 *dev = dev_;
123 }
124
125 ~ScopedLoopbackDeviceBinder() {
Gilad Arnold19a45f02012-07-19 12:36:10 -0700126 if (!is_bound_)
127 return;
128
Darin Petkovcf562482010-12-03 10:31:00 -0800129 for (int retry = 0; retry < 5; retry++) {
130 std::vector<std::string> args;
131 args.push_back("/sbin/losetup");
132 args.push_back("-d");
133 args.push_back(dev_);
134 int return_code = 0;
Darin Petkov85d02b72011-05-17 13:25:51 -0700135 EXPECT_TRUE(Subprocess::SynchronousExec(args, &return_code, NULL));
Darin Petkovcf562482010-12-03 10:31:00 -0800136 if (return_code == 0) {
137 return;
138 }
139 sleep(1);
140 }
141 ADD_FAILURE();
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700142 }
Don Garrett58e8b1f2012-01-31 16:38:16 -0800143
Gilad Arnold19a45f02012-07-19 12:36:10 -0700144 const std::string &dev() {
145 EXPECT_TRUE(is_bound_);
146 return dev_;
147 }
Don Garrett58e8b1f2012-01-31 16:38:16 -0800148
Gilad Arnoldc33faeb2012-07-24 15:11:11 -0700149 bool is_bound() const { return is_bound_; }
150
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700151 private:
Don Garrett58e8b1f2012-01-31 16:38:16 -0800152 std::string dev_;
Gilad Arnold19a45f02012-07-19 12:36:10 -0700153 bool is_bound_;
Don Garrett58e8b1f2012-01-31 16:38:16 -0800154 DISALLOW_COPY_AND_ASSIGN(ScopedLoopbackDeviceBinder);
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700155};
156
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700157class ScopedTempFile {
158 public:
159 ScopedTempFile() {
160 EXPECT_TRUE(utils::MakeTempFile("/tmp/update_engine_test_temp_file.XXXXXX",
161 &path_,
162 NULL));
163 unlinker_.reset(new ScopedPathUnlinker(path_));
164 }
165 const std::string& GetPath() { return path_; }
166 private:
167 std::string path_;
168 scoped_ptr<ScopedPathUnlinker> unlinker_;
169};
170
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000171// Useful actions for test
172
173class NoneType;
174
175template<typename T>
176class ObjectFeederAction;
177
178template<typename T>
179class ActionTraits<ObjectFeederAction<T> > {
180 public:
181 typedef T OutputObjectType;
182 typedef NoneType InputObjectType;
183};
184
185// This is a simple Action class for testing. It feeds an object into
186// another action.
187template<typename T>
188struct ObjectFeederAction : public Action<ObjectFeederAction<T> > {
189 public:
190 typedef NoneType InputObjectType;
191 typedef T OutputObjectType;
192 void PerformAction() {
193 LOG(INFO) << "feeder running!";
194 CHECK(this->processor_);
195 if (this->HasOutputPipe()) {
196 this->SetOutputObject(out_obj_);
197 }
Darin Petkovc1a8b422010-07-19 11:34:49 -0700198 this->processor_->ActionComplete(this, kActionCodeSuccess);
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000199 }
200 static std::string StaticType() { return "ObjectFeederAction"; }
201 std::string Type() const { return StaticType(); }
202 void set_obj(const T& out_obj) {
203 out_obj_ = out_obj;
204 }
205 private:
206 T out_obj_;
207};
208
209template<typename T>
210class ObjectCollectorAction;
211
212template<typename T>
213class ActionTraits<ObjectCollectorAction<T> > {
214 public:
215 typedef NoneType OutputObjectType;
216 typedef T InputObjectType;
217};
218
219// This is a simple Action class for testing. It receives an object from
220// another action.
221template<typename T>
222struct ObjectCollectorAction : public Action<ObjectCollectorAction<T> > {
223 public:
224 typedef T InputObjectType;
225 typedef NoneType OutputObjectType;
226 void PerformAction() {
227 LOG(INFO) << "collector running!";
228 ASSERT_TRUE(this->processor_);
229 if (this->HasInputObject()) {
230 object_ = this->GetInputObject();
231 }
Darin Petkovc1a8b422010-07-19 11:34:49 -0700232 this->processor_->ActionComplete(this, kActionCodeSuccess);
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000233 }
234 static std::string StaticType() { return "ObjectCollectorAction"; }
235 std::string Type() const { return StaticType(); }
236 const T& object() const { return object_; }
237 private:
238 T object_;
239};
240
Thieu Le5c7d9752010-12-15 16:09:28 -0800241class ScopedLoopMounter {
242 public:
243 explicit ScopedLoopMounter(const std::string& file_path,
244 std::string* mnt_path,
245 unsigned long flags);
246
247 private:
248 // These objects must be destructed in the following order:
249 // ScopedFilesystemUnmounter (the file system must be unmounted first)
Don Garrett58e8b1f2012-01-31 16:38:16 -0800250 // ScopedLoopbackDeviceBinder (then the loop device can be deleted)
Thieu Le5c7d9752010-12-15 16:09:28 -0800251 // ScopedDirRemover (then the mount point can be deleted)
252 scoped_ptr<ScopedDirRemover> dir_remover_;
Don Garrett58e8b1f2012-01-31 16:38:16 -0800253 scoped_ptr<ScopedLoopbackDeviceBinder> loop_binder_;
Thieu Le5c7d9752010-12-15 16:09:28 -0800254 scoped_ptr<ScopedFilesystemUnmounter> unmounter_;
255};
256
rspangler@google.com49fdf182009-10-10 00:57:34 +0000257} // namespace chromeos_update_engine
258
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700259#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_TEST_UTILS_H__