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
|
// Copyright 2026 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/patch/patch_impl.h"
#include <utility>
#include "base/files/file.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/functional/callback.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "components/services/patch/public/mojom/file_patcher.mojom.h"
#include "components/update_client/update_client_errors.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace update_client {
namespace {
// A no-op callback for the patcher.
mojo::PendingRemote<patch::mojom::FilePatcher> MakePatcher() {
return mojo::PendingRemote<patch::mojom::FilePatcher>();
}
} // namespace
class PatchImplTest : public testing::Test {
protected:
void SetUp() override { ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); }
base::File CreateTestFile(const std::string& content) {
base::FilePath file_path;
EXPECT_TRUE(
base::CreateTemporaryFileInDir(temp_dir_.GetPath(), &file_path));
EXPECT_TRUE(base::WriteFile(file_path, content));
return base::File(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
}
base::test::TaskEnvironment task_environment_;
base::ScopedTempDir temp_dir_;
scoped_refptr<Patcher> patcher_ = base::MakeRefCounted<PatchChromiumFactory>(
base::BindRepeating(&MakePatcher))
->Create();
};
TEST_F(PatchImplTest, PuffPatch_InvalidOldFile) {
base::RunLoop run_loop;
patcher_->PatchPuffPatch(
base::File(), CreateTestFile("patch"), CreateTestFile(""),
base::BindOnce(
[](base::OnceClosure quit_closure, int result) {
EXPECT_EQ(result,
static_cast<int>(UnpackerError::kPatchInvalidOldFile));
std::move(quit_closure).Run();
},
run_loop.QuitClosure()));
run_loop.Run();
}
TEST_F(PatchImplTest, PuffPatch_InvalidPatchFile) {
base::RunLoop run_loop;
patcher_->PatchPuffPatch(
CreateTestFile("old"), base::File(), CreateTestFile(""),
base::BindOnce(
[](base::OnceClosure quit_closure, int result) {
EXPECT_EQ(result,
static_cast<int>(UnpackerError::kPatchInvalidPatchFile));
std::move(quit_closure).Run();
},
run_loop.QuitClosure()));
run_loop.Run();
}
TEST_F(PatchImplTest, PuffPatch_InvalidDestinationFile) {
base::RunLoop run_loop;
patcher_->PatchPuffPatch(
CreateTestFile("old"), CreateTestFile("patch"), base::File(),
base::BindOnce(
[](base::OnceClosure quit_closure, int result) {
EXPECT_EQ(result,
static_cast<int>(UnpackerError::kPatchInvalidNewFile));
std::move(quit_closure).Run();
},
run_loop.QuitClosure()));
run_loop.Run();
}
TEST_F(PatchImplTest, ZucchiniPatch_InvalidOldFile) {
base::RunLoop run_loop;
patcher_->PatchZucchini(
base::File(), CreateTestFile("patch"), CreateTestFile(""),
base::BindOnce(
[](base::OnceClosure quit_closure, int result) {
EXPECT_EQ(result,
static_cast<int>(UnpackerError::kPatchInvalidOldFile));
std::move(quit_closure).Run();
},
run_loop.QuitClosure()));
run_loop.Run();
}
TEST_F(PatchImplTest, ZucchiniPatch_InvalidPatchFile) {
base::RunLoop run_loop;
patcher_->PatchZucchini(
CreateTestFile("old"), base::File(), CreateTestFile(""),
base::BindOnce(
[](base::OnceClosure quit_closure, int result) {
EXPECT_EQ(result,
static_cast<int>(UnpackerError::kPatchInvalidPatchFile));
std::move(quit_closure).Run();
},
run_loop.QuitClosure()));
run_loop.Run();
}
TEST_F(PatchImplTest, ZucchiniPatch_InvalidDestinationFile) {
base::RunLoop run_loop;
patcher_->PatchZucchini(
CreateTestFile("old"), CreateTestFile("patch"), base::File(),
base::BindOnce(
[](base::OnceClosure quit_closure, int result) {
EXPECT_EQ(result,
static_cast<int>(UnpackerError::kPatchInvalidNewFile));
std::move(quit_closure).Run();
},
run_loop.QuitClosure()));
run_loop.Run();
}
} // namespace update_client
|