1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <iterator>
#include <vector>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/macros.h"
#include "base/message_loop/message_loop.h"
#include "base/path_service.h"
#include "base/run_loop.h"
#include "base/test/sequenced_worker_pool_owner.h"
#include "components/update_client/component_patcher_operation.h"
#include "components/update_client/component_unpacker.h"
#include "components/update_client/test_configurator.h"
#include "components/update_client/test_installer.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
class TestCallback {
public:
TestCallback();
virtual ~TestCallback() {}
void Set(update_client::UnpackerError error, int extra_code);
update_client::UnpackerError error_;
int extra_code_;
bool called_;
private:
DISALLOW_COPY_AND_ASSIGN(TestCallback);
};
TestCallback::TestCallback()
: error_(update_client::UnpackerError::kNone),
extra_code_(-1),
called_(false) {}
void TestCallback::Set(update_client::UnpackerError error, int extra_code) {
error_ = error;
extra_code_ = extra_code;
called_ = true;
}
base::FilePath test_file(const char* file) {
base::FilePath path;
PathService::Get(base::DIR_SOURCE_ROOT, &path);
return path.AppendASCII("components")
.AppendASCII("test")
.AppendASCII("data")
.AppendASCII("update_client")
.AppendASCII(file);
}
} // namespace
namespace update_client {
class ComponentUnpackerTest : public testing::Test {
public:
ComponentUnpackerTest();
~ComponentUnpackerTest() override;
void UnpackComplete(const ComponentUnpacker::Result& result);
protected:
void RunThreads();
base::MessageLoopForUI message_loop_;
base::RunLoop runloop_;
base::Closure quit_closure_;
std::unique_ptr<base::SequencedWorkerPoolOwner> worker_pool_;
scoped_refptr<update_client::TestConfigurator> config_;
ComponentUnpacker::Result result_;
};
ComponentUnpackerTest::ComponentUnpackerTest()
: worker_pool_(new base::SequencedWorkerPoolOwner(2, "test")) {
quit_closure_ = runloop_.QuitClosure();
auto pool = worker_pool_->pool();
config_ = new TestConfigurator(
pool->GetSequencedTaskRunner(pool->GetSequenceToken()),
message_loop_.task_runner());
}
ComponentUnpackerTest::~ComponentUnpackerTest() {}
void ComponentUnpackerTest::RunThreads() {
runloop_.Run();
}
void ComponentUnpackerTest::UnpackComplete(
const ComponentUnpacker::Result& result) {
result_ = result;
message_loop_.task_runner()->PostTask(FROM_HERE, quit_closure_);
}
TEST_F(ComponentUnpackerTest, UnpackFullCrx) {
scoped_refptr<ComponentUnpacker> component_unpacker = new ComponentUnpacker(
std::vector<uint8_t>(std::begin(jebg_hash), std::end(jebg_hash)),
test_file("jebgalgnebhfojomionfpkfelancnnkf.crx"), nullptr, nullptr,
config_->GetSequencedTaskRunner());
component_unpacker->Unpack(base::Bind(&ComponentUnpackerTest::UnpackComplete,
base::Unretained(this)));
RunThreads();
EXPECT_EQ(UnpackerError::kNone, result_.error);
EXPECT_EQ(0, result_.extended_error);
base::FilePath unpack_path = result_.unpack_path;
EXPECT_FALSE(unpack_path.empty());
EXPECT_TRUE(base::DirectoryExists(unpack_path));
int64_t file_size = 0;
EXPECT_TRUE(
base::GetFileSize(unpack_path.AppendASCII("component1.dll"), &file_size));
EXPECT_EQ(1024, file_size);
EXPECT_TRUE(
base::GetFileSize(unpack_path.AppendASCII("flashtest.pem"), &file_size));
EXPECT_EQ(911, file_size);
EXPECT_TRUE(
base::GetFileSize(unpack_path.AppendASCII("manifest.json"), &file_size));
EXPECT_EQ(144, file_size);
EXPECT_TRUE(base::DeleteFile(unpack_path, true));
}
TEST_F(ComponentUnpackerTest, UnpackFileNotFound) {
scoped_refptr<ComponentUnpacker> component_unpacker = new ComponentUnpacker(
std::vector<uint8_t>(std::begin(jebg_hash), std::end(jebg_hash)),
test_file("file-not-found.crx"), nullptr, nullptr,
config_->GetSequencedTaskRunner());
component_unpacker->Unpack(base::Bind(&ComponentUnpackerTest::UnpackComplete,
base::Unretained(this)));
RunThreads();
EXPECT_EQ(UnpackerError::kInvalidFile, result_.error);
EXPECT_EQ(0, result_.extended_error);
EXPECT_TRUE(result_.unpack_path.empty());
}
// Tests a mismatch between the public key hash and the id of the component.
TEST_F(ComponentUnpackerTest, UnpackFileHashMismatch) {
scoped_refptr<ComponentUnpacker> component_unpacker = new ComponentUnpacker(
std::vector<uint8_t>(std::begin(abag_hash), std::end(abag_hash)),
test_file("jebgalgnebhfojomionfpkfelancnnkf.crx"), nullptr, nullptr,
config_->GetSequencedTaskRunner());
component_unpacker->Unpack(base::Bind(&ComponentUnpackerTest::UnpackComplete,
base::Unretained(this)));
RunThreads();
EXPECT_EQ(UnpackerError::kInvalidId, result_.error);
EXPECT_EQ(0, result_.extended_error);
EXPECT_TRUE(result_.unpack_path.empty());
}
} // namespace update_client
|