blob: cd17ec1fdf52f92289b08d012b6ae2a0dc1f0a1d [file] [log] [blame]
rspangler@google.com49fdf182009-10-10 00:57:34 +00001// Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2// 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>
11#include <gtest/gtest.h>
12#include "update_engine/action.h"
rspangler@google.com49fdf182009-10-10 00:57:34 +000013
14// These are some handy functions for unittests.
15
16namespace chromeos_update_engine {
17
rspangler@google.com49fdf182009-10-10 00:57:34 +000018// Writes the data passed to path. The file at path will be overwritten if it
19// exists. Returns true on success, false otherwise.
adlr@google.comc98a7ed2009-12-04 18:54:03 +000020bool WriteFileVector(const std::string& path, const std::vector<char>& data);
21bool WriteFileString(const std::string& path, const std::string& data);
rspangler@google.com49fdf182009-10-10 00:57:34 +000022
23// Returns the size of the file at path. If the file doesn't exist or some
24// error occurrs, -1 is returned.
25off_t FileSize(const std::string& path);
26
adlr@google.comc98a7ed2009-12-04 18:54:03 +000027// Reads a symlink from disk. Returns empty string on failure.
28std::string Readlink(const std::string& path);
29
rspangler@google.com49fdf182009-10-10 00:57:34 +000030// Gzip compresses the data passed using the gzip command line program.
31// Returns compressed data back.
32std::vector<char> GzipCompressData(const std::vector<char>& data);
33
adlr@google.comc98a7ed2009-12-04 18:54:03 +000034// Gives back a 512-bytes length array that contains an MBR with
35// the first partition is marked bootable.
36std::vector<char> GenerateSampleMbr();
37
38std::string GetUnusedLoopDevice();
39
40// Returns true iff a == b
41bool ExpectVectorsEq(const std::vector<char>& a, const std::vector<char>& b);
42
43inline int System(const std::string& cmd) {
44 return system(cmd.c_str());
45}
46
47namespace {
48// 300 byte pseudo-random string. Not null terminated.
49// This does not gzip compress well.
50const unsigned char kRandomString[] = {
51 0xf2, 0xb7, 0x55, 0x92, 0xea, 0xa6, 0xc9, 0x57,
52 0xe0, 0xf8, 0xeb, 0x34, 0x93, 0xd9, 0xc4, 0x8f,
53 0xcb, 0x20, 0xfa, 0x37, 0x4b, 0x40, 0xcf, 0xdc,
54 0xa5, 0x08, 0x70, 0x89, 0x79, 0x35, 0xe2, 0x3d,
55 0x56, 0xa4, 0x75, 0x73, 0xa3, 0x6d, 0xd1, 0xd5,
56 0x26, 0xbb, 0x9c, 0x60, 0xbd, 0x2f, 0x5a, 0xfa,
57 0xb7, 0xd4, 0x3a, 0x50, 0xa7, 0x6b, 0x3e, 0xfd,
58 0x61, 0x2b, 0x3a, 0x31, 0x30, 0x13, 0x33, 0x53,
59 0xdb, 0xd0, 0x32, 0x71, 0x5c, 0x39, 0xed, 0xda,
60 0xb4, 0x84, 0xca, 0xbc, 0xbd, 0x78, 0x1c, 0x0c,
61 0xd8, 0x0b, 0x41, 0xe8, 0xe1, 0xe0, 0x41, 0xad,
62 0x03, 0x12, 0xd3, 0x3d, 0xb8, 0x75, 0x9b, 0xe6,
63 0xd9, 0x01, 0xd0, 0x87, 0xf4, 0x36, 0xfa, 0xa7,
64 0x0a, 0xfa, 0xc5, 0x87, 0x65, 0xab, 0x9a, 0x7b,
65 0xeb, 0x58, 0x23, 0xf0, 0xa8, 0x0a, 0xf2, 0x33,
66 0x3a, 0xe2, 0xe3, 0x35, 0x74, 0x95, 0xdd, 0x3c,
67 0x59, 0x5a, 0xd9, 0x52, 0x3a, 0x3c, 0xac, 0xe5,
68 0x15, 0x87, 0x6d, 0x82, 0xbc, 0xf8, 0x7d, 0xbe,
69 0xca, 0xd3, 0x2c, 0xd6, 0xec, 0x38, 0xeb, 0xe4,
70 0x53, 0xb0, 0x4c, 0x3f, 0x39, 0x29, 0xf7, 0xa4,
71 0x73, 0xa8, 0xcb, 0x32, 0x50, 0x05, 0x8c, 0x1c,
72 0x1c, 0xca, 0xc9, 0x76, 0x0b, 0x8f, 0x6b, 0x57,
73 0x1f, 0x24, 0x2b, 0xba, 0x82, 0xba, 0xed, 0x58,
74 0xd8, 0xbf, 0xec, 0x06, 0x64, 0x52, 0x6a, 0x3f,
75 0xe4, 0xad, 0xce, 0x84, 0xb4, 0x27, 0x55, 0x14,
76 0xe3, 0x75, 0x59, 0x73, 0x71, 0x51, 0xea, 0xe8,
77 0xcc, 0xda, 0x4f, 0x09, 0xaf, 0xa4, 0xbc, 0x0e,
78 0xa6, 0x1f, 0xe2, 0x3a, 0xf8, 0x96, 0x7d, 0x30,
79 0x23, 0xc5, 0x12, 0xb5, 0xd8, 0x73, 0x6b, 0x71,
80 0xab, 0xf1, 0xd7, 0x43, 0x58, 0xa7, 0xc9, 0xf0,
81 0xe4, 0x85, 0x1c, 0xd6, 0x92, 0x50, 0x2c, 0x98,
82 0x36, 0xfe, 0x87, 0xaf, 0x43, 0x8f, 0x8f, 0xf5,
83 0x88, 0x48, 0x18, 0x42, 0xcf, 0x42, 0xc1, 0xa8,
84 0xe8, 0x05, 0x08, 0xa1, 0x45, 0x70, 0x5b, 0x8c,
85 0x39, 0x28, 0xab, 0xe9, 0x6b, 0x51, 0xd2, 0xcb,
86 0x30, 0x04, 0xea, 0x7d, 0x2f, 0x6e, 0x6c, 0x3b,
87 0x5f, 0x82, 0xd9, 0x5b, 0x89, 0x37, 0x65, 0x65,
88 0xbe, 0x9f, 0xa3, 0x5d
89};
90
Andrew de los Reyes4fe15d02009-12-10 19:01:36 -080091const char* const kMountPath = "/tmp/UpdateEngineTests_mnt";
adlr@google.comc98a7ed2009-12-04 18:54:03 +000092} // namespace {}
93
94// Creates an ext image with some files in it. The paths creates are
95// returned in out_paths.
96void CreateExtImageAtPath(const std::string& path,
97 std::vector<std::string>* out_paths);
98
99// Verifies that for each path in paths, it exists in the filesystem under
100// parent. Also, verifies that no additional paths are present under parent.
101// Also tests properties of various files created by CreateExtImageAtPath().
102// Intentionally copies expected_paths.
103void VerifyAllPaths(const std::string& parent,
104 std::set<std::string> expected_paths);
105
106// Useful actions for test
107
108class NoneType;
109
110template<typename T>
111class ObjectFeederAction;
112
113template<typename T>
114class ActionTraits<ObjectFeederAction<T> > {
115 public:
116 typedef T OutputObjectType;
117 typedef NoneType InputObjectType;
118};
119
120// This is a simple Action class for testing. It feeds an object into
121// another action.
122template<typename T>
123struct ObjectFeederAction : public Action<ObjectFeederAction<T> > {
124 public:
125 typedef NoneType InputObjectType;
126 typedef T OutputObjectType;
127 void PerformAction() {
128 LOG(INFO) << "feeder running!";
129 CHECK(this->processor_);
130 if (this->HasOutputPipe()) {
131 this->SetOutputObject(out_obj_);
132 }
133 this->processor_->ActionComplete(this, true);
134 }
135 static std::string StaticType() { return "ObjectFeederAction"; }
136 std::string Type() const { return StaticType(); }
137 void set_obj(const T& out_obj) {
138 out_obj_ = out_obj;
139 }
140 private:
141 T out_obj_;
142};
143
144template<typename T>
145class ObjectCollectorAction;
146
147template<typename T>
148class ActionTraits<ObjectCollectorAction<T> > {
149 public:
150 typedef NoneType OutputObjectType;
151 typedef T InputObjectType;
152};
153
154// This is a simple Action class for testing. It receives an object from
155// another action.
156template<typename T>
157struct ObjectCollectorAction : public Action<ObjectCollectorAction<T> > {
158 public:
159 typedef T InputObjectType;
160 typedef NoneType OutputObjectType;
161 void PerformAction() {
162 LOG(INFO) << "collector running!";
163 ASSERT_TRUE(this->processor_);
164 if (this->HasInputObject()) {
165 object_ = this->GetInputObject();
166 }
167 this->processor_->ActionComplete(this, true);
168 }
169 static std::string StaticType() { return "ObjectCollectorAction"; }
170 std::string Type() const { return StaticType(); }
171 const T& object() const { return object_; }
172 private:
173 T object_;
174};
175
rspangler@google.com49fdf182009-10-10 00:57:34 +0000176} // namespace chromeos_update_engine
177
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000178#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_TEST_UTILS_H__