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