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
|
// 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/browser/download/download_core_service_impl.h"
#include "base/memory/raw_ptr.h"
#include "chrome/browser/download/chrome_download_manager_delegate.h"
#include "chrome/test/base/testing_profile.h"
#include "components/download/public/common/download_item.h"
#include "components/download/public/common/mock_download_item.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/mock_download_manager.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
using DownloadState = download::DownloadItem::DownloadState;
using CancelDownloadsTrigger = DownloadCoreService::CancelDownloadsTrigger;
using ::testing::_;
using ::testing::NiceMock;
using ::testing::Return;
using ::testing::SetArgPointee;
class TestDownloadManagerDelegate : public ChromeDownloadManagerDelegate {
public:
explicit TestDownloadManagerDelegate(Profile* profile)
: ChromeDownloadManagerDelegate(profile) {}
~TestDownloadManagerDelegate() override = default;
void OnDownloadCanceledAtShutdown(download::DownloadItem* item) override {
canceled_at_shutdown_called_count_++;
}
int OnDownloadCanceledAtShutdownCalledCount() {
return canceled_at_shutdown_called_count_;
}
private:
int canceled_at_shutdown_called_count_ = 0;
};
class DownloadCoreServiceImplTest : public testing::Test {
public:
void SetUp() override {
profile_ = std::make_unique<TestingProfile>();
auto download_manager =
std::make_unique<NiceMock<content::MockDownloadManager>>();
download_manager_ = download_manager.get();
profile_->SetDownloadManagerForTesting(std::move(download_manager));
download_core_service_ =
std::make_unique<DownloadCoreServiceImpl>(profile_.get());
auto delegate =
std::make_unique<TestDownloadManagerDelegate>(profile_.get());
delegate_ = delegate.get();
download_core_service_->SetDownloadManagerDelegateForTesting(
std::move(delegate));
}
void TearDown() override {
download_core_service_->GetDownloadManagerDelegate()->Shutdown();
delegate_ = nullptr;
download_manager_ = nullptr;
download_core_service_ = nullptr;
profile_ = nullptr;
}
protected:
std::unique_ptr<download::MockDownloadItem> CreateDownloadItem(
DownloadState state) {
auto item = std::make_unique<NiceMock<download::MockDownloadItem>>();
EXPECT_CALL(*item, GetState()).WillRepeatedly(Return(state));
return item;
}
void RunCancelDownloadsTest(
CancelDownloadsTrigger trigger,
int expected_download_canceled_at_shutdown_called_count) {
auto completed_item = CreateDownloadItem(DownloadState::COMPLETE);
auto in_progress_item1 = CreateDownloadItem(DownloadState::IN_PROGRESS);
auto in_progress_item2 = CreateDownloadItem(DownloadState::IN_PROGRESS);
std::vector<raw_ptr<download::DownloadItem, VectorExperimental>> items;
items.push_back(completed_item.get());
items.push_back(in_progress_item1.get());
items.push_back(in_progress_item2.get());
EXPECT_CALL(*download_manager_, GetAllDownloads)
.WillRepeatedly(SetArgPointee<0>(items));
// Only in progress items should be canceled.
EXPECT_CALL(*completed_item, Cancel(_)).Times(0);
EXPECT_CALL(*in_progress_item1, Cancel(/*user_cancel=*/false)).Times(1);
EXPECT_CALL(*in_progress_item2, Cancel(/*user_cancel=*/false)).Times(1);
download_core_service_->CancelDownloads(trigger);
EXPECT_EQ(delegate_->OnDownloadCanceledAtShutdownCalledCount(),
expected_download_canceled_at_shutdown_called_count);
}
content::BrowserTaskEnvironment task_environment_;
raw_ptr<NiceMock<content::MockDownloadManager>> download_manager_;
std::unique_ptr<TestingProfile> profile_;
raw_ptr<TestDownloadManagerDelegate> delegate_;
std::unique_ptr<DownloadCoreServiceImpl> download_core_service_;
};
TEST_F(DownloadCoreServiceImplTest, CancelDownloadsAtShutdown) {
RunCancelDownloadsTest(
DownloadCoreService::CancelDownloadsTrigger::kShutdown,
/*expected_download_canceled_at_shutdown_called_count=*/2);
}
TEST_F(DownloadCoreServiceImplTest, CancelDownloadsAtProfileDeletion) {
RunCancelDownloadsTest(
DownloadCoreService::CancelDownloadsTrigger::kProfileDeletion,
/*expected_download_canceled_at_shutdown_called_count=*/0);
}
} // namespace
|