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
|
// Copyright 2019 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/banners/test_app_banner_manager_desktop.h"
#include <memory>
#include <utility>
#include "base/containers/contains.h"
#include "base/run_loop.h"
#include "base/strings/strcat.h"
#include "base/strings/stringprintf.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/gmock_callback_support.h"
#include "chrome/browser/webapps/webapps_client_desktop.h"
#include "components/webapps/browser/banners/app_banner_manager.h"
#include "components/webapps/browser/installable/installable_data.h"
#include "components/webapps/browser/webapps_client.h"
#include "content/public/browser/web_contents.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "third_party/blink/public/common/manifest/manifest_util.h"
namespace webapps {
TestAppBannerManagerDesktop::TestAppBannerManagerDesktop(
content::WebContents* web_contents)
: AppBannerManagerDesktop(web_contents) {
// Ensure no real instance exists. This must be the only instance to avoid
// observers of AppBannerManager left observing the wrong one.
DCHECK_EQ(AppBannerManagerDesktop::FromWebContents(web_contents), nullptr);
}
TestAppBannerManagerDesktop::~TestAppBannerManagerDesktop() = default;
static std::unique_ptr<AppBannerManagerDesktop> CreateTestAppBannerManager(
content::WebContents* web_contents) {
return std::make_unique<TestAppBannerManagerDesktop>(web_contents);
}
void TestAppBannerManagerDesktop::SetUp() {
AppBannerManagerDesktop::override_app_banner_manager_desktop_for_testing_ =
CreateTestAppBannerManager;
WebappsClientDesktop::CreateSingleton();
}
TestAppBannerManagerDesktop* TestAppBannerManagerDesktop::FromWebContents(
content::WebContents* web_contents) {
DCHECK(web_contents);
// Must call TestAppBannerManagerDesktop::SetUp() first.
DCHECK_EQ(
AppBannerManagerDesktop::override_app_banner_manager_desktop_for_testing_,
CreateTestAppBannerManager);
auto* manager = AppBannerManagerDesktop::FromWebContents(web_contents);
DCHECK(manager);
DCHECK(manager->AsTestAppBannerManagerDesktopForTesting());
return manager->AsTestAppBannerManagerDesktopForTesting();
}
void TestAppBannerManagerDesktop::WaitForInstallableCheckTearDown() {
base::RunLoop run_loop;
tear_down_quit_closure_ = run_loop.QuitClosure();
run_loop.Run();
}
bool TestAppBannerManagerDesktop::WaitForInstallableCheck() {
if (!installable_.has_value()) {
base::RunLoop run_loop;
installable_quit_closure_ = run_loop.QuitClosure();
run_loop.Run();
}
return *installable_ && IsPromotableWebApp();
}
void TestAppBannerManagerDesktop::PrepareDone(base::OnceClosure on_done) {
on_done_ = std::move(on_done);
}
AppBannerManager::State TestAppBannerManagerDesktop::state() {
return AppBannerManager::state();
}
void TestAppBannerManagerDesktop::AwaitAppInstall() {
base::RunLoop loop;
on_install_ = loop.QuitClosure();
loop.Run();
}
void TestAppBannerManagerDesktop::OnDidGetManifest(
const InstallableData& result) {
debug_log_.Append("OnDidGetManifest");
AppBannerManagerDesktop::OnDidGetManifest(result);
// The manifest URL changing in the middle of a pipeline doesn't always mean
// the page data will be reset. To ensure that installable_ isn't accidentally
// set twice, reset it here.
if (base::Contains(result.errors,
InstallableStatusCode::MANIFEST_URL_CHANGED)) {
installable_.reset();
} else if (blink::IsEmptyManifest(*result.manifest)) {
// AppBannerManagerDesktop does not call
// |OnDidPerformInstallableWebAppCheck| to complete the installability check
// in this case, instead it early exits with failure.
SetInstallable(false);
}
}
void TestAppBannerManagerDesktop::OnDidPerformInstallableWebAppCheck(
const InstallableData& result) {
// If the renderer is existing, ensure installable isn't accidentally set
// twice.
if (base::Contains(result.errors, InstallableStatusCode::RENDERER_EXITING)) {
installable_.reset();
}
debug_log_.Append("OnDidPerformInstallableWebAppCheck");
AppBannerManagerDesktop::OnDidPerformInstallableWebAppCheck(result);
SetInstallable(result.errors.empty());
}
void TestAppBannerManagerDesktop::ResetCurrentPageData() {
debug_log_.Append("ResetCurrentPageData");
AppBannerManagerDesktop::ResetCurrentPageData();
installable_.reset();
if (tear_down_quit_closure_)
std::move(tear_down_quit_closure_).Run();
}
void TestAppBannerManagerDesktop::RecheckInstallabilityForLoadedPage() {
debug_log_.Append("RecheckInstallabilityForLoadedPage");
installable_.reset();
AppBannerManagerDesktop::RecheckInstallabilityForLoadedPage();
}
TestAppBannerManagerDesktop*
TestAppBannerManagerDesktop::AsTestAppBannerManagerDesktopForTesting() {
return this;
}
void TestAppBannerManagerDesktop::OnInstall(
blink::mojom::DisplayMode display,
bool set_current_web_app_not_installable) {
AppBannerManager::OnInstall(display, set_current_web_app_not_installable);
if (on_install_)
std::move(on_install_).Run();
}
void TestAppBannerManagerDesktop::DidFinishCreatingWebApp(
const webapps::ManifestId& manifest_id,
base::WeakPtr<AppBannerManagerDesktop> is_navigation_current,
const webapps::AppId& app_id,
webapps::InstallResultCode code) {
AppBannerManagerDesktop::DidFinishCreatingWebApp(
manifest_id, is_navigation_current, app_id, code);
OnFinished();
}
void TestAppBannerManagerDesktop::DidFinishLoad(
content::RenderFrameHost* render_frame_host,
const GURL& validated_url) {
debug_log_.Append(base::StrCat({"DidFinishLoad ", validated_url.spec()}));
UrlType url_type = GetUrlType(render_frame_host, validated_url);
if (url_type == AppBannerManager::UrlType::kInvalidPrimaryFrameUrl) {
SetInstallable(false);
return;
}
AppBannerManagerDesktop::DidFinishLoad(render_frame_host, validated_url);
}
void TestAppBannerManagerDesktop::UpdateState(AppBannerManager::State state) {
debug_log_.Append(
base::StringPrintf("State updated to %d", static_cast<int>(state)));
AppBannerManager::UpdateState(state);
if (state == AppBannerManager::State::PENDING_PROMPT_CANCELED ||
state == AppBannerManager::State::PENDING_PROMPT_NOT_CANCELED ||
state == AppBannerManager::State::COMPLETE) {
OnFinished();
}
}
void TestAppBannerManagerDesktop::SetInstallable(bool installable) {
debug_log_.Append(base::StringPrintf("SetInstallable(%d)", installable));
DCHECK(!installable_.has_value() || installable_ == installable)
<< "Cannot set installable to " << installable << ", already set to "
<< installable_.value() << ". Debug log:\n"
<< debug_log_.DebugString();
installable_ = installable;
if (installable_quit_closure_)
std::move(installable_quit_closure_).Run();
}
void TestAppBannerManagerDesktop::OnFinished() {
if (on_done_) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, std::move(on_done_));
}
}
} // namespace webapps
|