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
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/update_client/unpacker.h"
#include <iterator>
#include <utility>
#include <vector>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "components/crx_file/crx_verifier.h"
#include "components/services/unzip/in_process_unzipper.h"
#include "components/update_client/test_configurator.h"
#include "components/update_client/test_utils.h"
#include "components/update_client/unzip/unzip_impl.h"
#include "components/update_client/unzipper.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace update_client {
class UnpackerTest : public testing::Test {
private:
base::test::TaskEnvironment env_;
};
TEST_F(UnpackerTest, UnpackFullCrx) {
SEQUENCE_CHECKER(sequence_checker);
base::RunLoop loop;
Unpacker::Unpack(
std::vector<uint8_t>(std::begin(jebg_hash), std::end(jebg_hash)),
GetTestFilePath("jebgalgnebhfojomionfpkfelancnnkf.crx"),
base::MakeRefCounted<update_client::UnzipChromiumFactory>(
base::BindRepeating(&unzip::LaunchInProcessUnzipper))
->Create(),
crx_file::VerifierFormat::CRX3,
base::BindLambdaForTesting([&](const Unpacker::Result& result) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker);
EXPECT_EQ(result.error, UnpackerError::kNone);
EXPECT_EQ(result.extended_error, 0);
base::FilePath unpack_path = result.unpack_path;
EXPECT_TRUE(base::DirectoryExists(unpack_path));
EXPECT_EQ(result.public_key, jebg_public_key);
std::optional<int64_t> file_size = base::GetFileSize(
unpack_path.Append(FILE_PATH_LITERAL("component1.dll")));
ASSERT_TRUE(file_size.has_value());
EXPECT_EQ(file_size.value(), 1024);
file_size = base::GetFileSize(
unpack_path.Append(FILE_PATH_LITERAL("manifest.json")));
ASSERT_TRUE(file_size.has_value());
EXPECT_EQ(file_size.value(), 169);
EXPECT_TRUE(base::DeletePathRecursively(unpack_path));
loop.Quit();
}));
loop.Run();
}
TEST_F(UnpackerTest, UnpackFileNotFound) {
SEQUENCE_CHECKER(sequence_checker);
base::RunLoop loop;
Unpacker::Unpack(
std::vector<uint8_t>(std::begin(jebg_hash), std::end(jebg_hash)),
GetTestFilePath("file_not_found.crx"), nullptr,
crx_file::VerifierFormat::CRX3,
base::BindLambdaForTesting([&](const Unpacker::Result& result) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker);
EXPECT_EQ(result.error, UnpackerError::kInvalidFile);
EXPECT_EQ(result.extended_error,
static_cast<int>(
crx_file::VerifierResult::ERROR_FILE_NOT_READABLE));
EXPECT_TRUE(result.unpack_path.empty());
EXPECT_TRUE(result.public_key.empty());
loop.Quit();
}));
loop.Run();
}
// Tests a mismatch between the public key hash and the id of the component.
TEST_F(UnpackerTest, UnpackFileHashMismatch) {
SEQUENCE_CHECKER(sequence_checker);
base::RunLoop loop;
Unpacker::Unpack(
std::vector<uint8_t>(std::begin(abag_hash), std::end(abag_hash)),
GetTestFilePath("jebgalgnebhfojomionfpkfelancnnkf.crx"), nullptr,
crx_file::VerifierFormat::CRX3,
base::BindLambdaForTesting([&](const Unpacker::Result& result) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker);
EXPECT_EQ(result.error, UnpackerError::kInvalidFile);
EXPECT_EQ(result.extended_error,
static_cast<int>(
crx_file::VerifierResult::ERROR_REQUIRED_PROOF_MISSING));
EXPECT_TRUE(result.unpack_path.empty());
EXPECT_TRUE(result.public_key.empty());
loop.Quit();
}));
loop.Run();
}
TEST_F(UnpackerTest, UnpackWithVerifiedContents) {
SEQUENCE_CHECKER(sequence_checker);
base::RunLoop loop;
Unpacker::Unpack(
std::vector<uint8_t>(),
GetTestFilePath("gndmhdcefbhlchkhipcnnbkcmicncehk_22_314.crx3"),
base::MakeRefCounted<update_client::UnzipChromiumFactory>(
base::BindRepeating(&unzip::LaunchInProcessUnzipper))
->Create(),
crx_file::VerifierFormat::CRX3,
base::BindLambdaForTesting([&](const Unpacker::Result& result) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker);
EXPECT_EQ(result.error, UnpackerError::kNone);
base::FilePath unpack_path = result.unpack_path;
EXPECT_FALSE(unpack_path.empty());
EXPECT_TRUE(base::DirectoryExists(unpack_path));
std::optional<int64_t> file_size = base::GetFileSize(
unpack_path.Append(FILE_PATH_LITERAL("_metadata"))
.Append(FILE_PATH_LITERAL("verified_contents.json")));
ASSERT_TRUE(file_size.has_value());
EXPECT_EQ(file_size.value(), 1538);
EXPECT_TRUE(base::DeletePathRecursively(unpack_path));
loop.Quit();
}));
loop.Run();
}
} // namespace update_client
|