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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/updater/net/fallback_net_fetcher.h"
#include <cstdint>
#include <memory>
#include <string>
#include <utility>
#include "base/containers/flat_map.h"
#include "base/files/file_path.h"
#include "base/functional/callback_helpers.h"
#include "base/test/bind.h"
#include "components/update_client/network.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace updater {
namespace {
class FakeFetcher : public update_client::NetworkFetcher {
public:
FakeFetcher() = delete;
FakeFetcher(const FakeFetcher&) = delete;
FakeFetcher& operator=(const FakeFetcher&) = delete;
FakeFetcher(
base::OnceCallback<
void(update_client::NetworkFetcher::PostRequestCompleteCallback)>
post_request,
base::OnceCallback<base::OnceClosure(
update_client::NetworkFetcher::DownloadToFileCompleteCallback)>
download_to_file)
: post_request_(std::move(post_request)),
download_to_file_(std::move(download_to_file)) {}
// Overrides for update_client::NetworkFetcher
void PostRequest(
const GURL& url,
const std::string& post_data,
const std::string& content_type,
const base::flat_map<std::string, std::string>& post_additional_headers,
update_client::NetworkFetcher::ResponseStartedCallback
response_started_callback,
update_client::NetworkFetcher::ProgressCallback progress_callback,
update_client::NetworkFetcher::PostRequestCompleteCallback
post_request_complete_callback) override {
std::move(post_request_).Run(std::move(post_request_complete_callback));
}
base::OnceClosure DownloadToFile(
const GURL& url,
const base::FilePath& file_path,
update_client::NetworkFetcher::ResponseStartedCallback
response_started_callback,
update_client::NetworkFetcher::ProgressCallback progress_callback,
update_client::NetworkFetcher::DownloadToFileCompleteCallback
download_to_file_complete_callback) override {
return std::move(download_to_file_)
.Run(std::move(download_to_file_complete_callback));
}
private:
base::OnceCallback<void(
update_client::NetworkFetcher::PostRequestCompleteCallback)>
post_request_;
base::OnceCallback<base::OnceClosure(
update_client::NetworkFetcher::DownloadToFileCompleteCallback)>
download_to_file_;
};
std::unique_ptr<FakeFetcher> MakeFakeFetcherForPost(
base::OnceCallback<int(void)> error_supplier) {
return std::make_unique<FakeFetcher>(
base::BindOnce(
[](base::OnceCallback<int(void)> error_supplier,
update_client::NetworkFetcher::PostRequestCompleteCallback
callback) {
std::move(callback).Run(
std::nullopt, std::move(error_supplier).Run(), {}, {}, {}, 0);
},
std::move(error_supplier)),
base::BindOnce(
[](update_client::NetworkFetcher::DownloadToFileCompleteCallback
callback) {
std::move(callback).Run(0, 0);
return base::BindOnce([] {});
}));
}
std::unique_ptr<FakeFetcher> MakeFakeFetcherForDownload(
base::OnceCallback<int(void)> error_supplier) {
return std::make_unique<FakeFetcher>(
base::BindOnce(
[](update_client::NetworkFetcher::PostRequestCompleteCallback
callback) {
std::move(callback).Run(std::nullopt, 0, {}, {}, {}, 0);
}),
base::BindOnce(
[](base::OnceCallback<int(void)> error_supplier,
update_client::NetworkFetcher::DownloadToFileCompleteCallback
callback) {
std::move(callback).Run(std::move(error_supplier).Run(), 0);
return base::BindOnce([] {});
},
std::move(error_supplier)));
}
} // namespace
TEST(FallbackNetFetcher, NoFallbackOnSuccess_Post) {
bool ran1 = false;
bool ran2 = false;
bool called_back = false;
FallbackNetFetcher(MakeFakeFetcherForPost(base::BindLambdaForTesting([&] {
ran1 = true;
return 0;
})),
MakeFakeFetcherForPost(base::BindLambdaForTesting([&] {
ran2 = true;
return 0;
})))
.PostRequest({}, {}, {}, {}, base::DoNothing(), base::DoNothing(),
base::BindLambdaForTesting(
[&](std::optional<std::string>, int, const std::string&,
const std::string&, const std::string&,
int64_t) { called_back = true; }));
EXPECT_TRUE(ran1);
EXPECT_FALSE(ran2);
EXPECT_TRUE(called_back);
}
TEST(FallbackNetFetcher, NoFallbackOnSuccess_Download) {
bool ran1 = false;
bool ran2 = false;
bool called_back = false;
FallbackNetFetcher(MakeFakeFetcherForDownload(base::BindLambdaForTesting([&] {
ran1 = true;
return 0;
})),
MakeFakeFetcherForDownload(base::BindLambdaForTesting([&] {
ran2 = true;
return 0;
})))
.DownloadToFile({}, {}, base::DoNothing(), base::DoNothing(),
base::BindLambdaForTesting(
[&](int, int64_t) { called_back = true; }));
EXPECT_TRUE(ran1);
EXPECT_FALSE(ran2);
EXPECT_TRUE(called_back);
}
TEST(FallbackNetFetcher, FallbackOnFailure_Post) {
bool ran1 = false;
bool ran2 = false;
bool called_back = false;
FallbackNetFetcher(MakeFakeFetcherForPost(base::BindLambdaForTesting([&] {
ran1 = true;
return 1;
})),
MakeFakeFetcherForPost(base::BindLambdaForTesting([&] {
ran2 = true;
return 0;
})))
.PostRequest({}, {}, {}, {}, base::DoNothing(), base::DoNothing(),
base::BindLambdaForTesting(
[&](std::optional<std::string>, int, const std::string&,
const std::string&, const std::string&,
int64_t) { called_back = true; }));
EXPECT_TRUE(ran1);
EXPECT_TRUE(ran2);
EXPECT_TRUE(called_back);
}
TEST(FallbackNetFetcher, FallbackOnFailure_Download) {
bool ran1 = false;
bool ran2 = false;
bool called_back = false;
FallbackNetFetcher(MakeFakeFetcherForDownload(base::BindLambdaForTesting([&] {
ran1 = true;
return 1;
})),
MakeFakeFetcherForDownload(base::BindLambdaForTesting([&] {
ran2 = true;
return 0;
})))
.DownloadToFile({}, {}, base::DoNothing(), base::DoNothing(),
base::BindLambdaForTesting(
[&](int, int64_t) { called_back = true; }));
EXPECT_TRUE(ran1);
EXPECT_TRUE(ran2);
EXPECT_TRUE(called_back);
}
TEST(FallbackNetFetcher, NoCrashOnNullptr_Post) {
bool ran1 = false;
bool called_back = false;
FallbackNetFetcher(MakeFakeFetcherForPost(base::BindLambdaForTesting([&] {
ran1 = true;
return 1;
})),
nullptr)
.PostRequest({}, {}, {}, {}, base::DoNothing(), base::DoNothing(),
base::BindLambdaForTesting(
[&](std::optional<std::string>, int, const std::string&,
const std::string&, const std::string&,
int64_t) { called_back = true; }));
EXPECT_TRUE(ran1);
EXPECT_TRUE(called_back);
}
TEST(FallbackNetFetcher, NoCrashOnNullptr_Download) {
bool ran1 = false;
bool called_back = false;
FallbackNetFetcher(MakeFakeFetcherForDownload(base::BindLambdaForTesting([&] {
ran1 = true;
return 1;
})),
nullptr)
.DownloadToFile({}, {}, base::DoNothing(), base::DoNothing(),
base::BindLambdaForTesting(
[&](int, int64_t) { called_back = true; }));
EXPECT_TRUE(ran1);
EXPECT_TRUE(called_back);
}
} // namespace updater
|