blob: ed2e067ceda8291e63bff9fc2780e748cf403e8d [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/bookmark_app_helper.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/test/test_browser_dialog.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/chrome_render_frame.mojom.h"
#include "content/public/browser/browser_message_filter.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "third_party/WebKit/common/associated_interfaces/associated_interface_provider.h"
namespace extensions {
namespace {
// Extends BookmarkAppHelper to see the call to OnIconsDownloaded.
class TestBookmarkAppHelper : public BookmarkAppHelper {
public:
TestBookmarkAppHelper(Profile* profile,
WebApplicationInfo web_app_info,
content::WebContents* contents,
base::Closure on_icons_downloaded_closure,
WebAppInstallSource install_source)
: BookmarkAppHelper(profile, web_app_info, contents, install_source),
on_icons_downloaded_closure_(on_icons_downloaded_closure) {}
// TestBookmarkAppHelper:
void OnIconsDownloaded(
bool success,
const std::map<GURL, std::vector<SkBitmap>>& bitmaps) override {
on_icons_downloaded_closure_.Run();
BookmarkAppHelper::OnIconsDownloaded(success, bitmaps);
}
private:
base::Closure on_icons_downloaded_closure_;
DISALLOW_COPY_AND_ASSIGN(TestBookmarkAppHelper);
};
} // namespace
class BookmarkAppHelperTest : public DialogBrowserTest {
public:
BookmarkAppHelperTest() {}
content::WebContents* web_contents() {
return browser()->tab_strip_model()->GetActiveWebContents();
}
void OnDidGetWebApplicationInfo(
chrome::mojom::ChromeRenderFrameAssociatedPtr chrome_render_frame,
const WebApplicationInfo& const_info) {
WebApplicationInfo info = const_info;
// Mimic extensions::TabHelper for fields missing from the manifest.
if (info.app_url.is_empty())
info.app_url = web_contents()->GetURL();
if (info.title.empty())
info.title = web_contents()->GetTitle();
if (info.title.empty())
info.title = base::UTF8ToUTF16(info.app_url.spec());
bookmark_app_helper_ = base::MakeUnique<TestBookmarkAppHelper>(
browser()->profile(), info, web_contents(), quit_closure_,
WebAppInstallSource::MENU);
bookmark_app_helper_->Create(
base::Bind(&BookmarkAppHelperTest::FinishCreateBookmarkApp,
base::Unretained(this)));
}
void FinishCreateBookmarkApp(const Extension* extension,
const WebApplicationInfo& web_app_info) {
// ~WebAppReadyMsgWatcher() is called on the IO thread, but
// |bookmark_app_helper_| must be destroyed on the UI thread.
bookmark_app_helper_.reset();
}
void Wait() {
base::RunLoop run_loop;
quit_closure_ = run_loop.QuitClosure();
run_loop.Run();
}
// DialogBrowserTest:
void ShowUi(const std::string& name) override {
ASSERT_TRUE(embedded_test_server()->Start());
const std::string path = (name == "CreateWindowedPWA")
? "/banners/manifest_test_page.html"
: "/favicon/page_with_favicon.html";
AddTabAtIndex(1, GURL(embedded_test_server()->GetURL(path)),
ui::PAGE_TRANSITION_LINK);
chrome::mojom::ChromeRenderFrameAssociatedPtr chrome_render_frame;
browser()
->tab_strip_model()
->GetActiveWebContents()
->GetMainFrame()
->GetRemoteAssociatedInterfaces()
->GetInterface(&chrome_render_frame);
// Bind the InterfacePtr into the callback so that it's kept alive
// until there's either a connection error or a response.
auto* web_app_info_proxy = chrome_render_frame.get();
web_app_info_proxy->GetWebApplicationInfo(
base::Bind(&BookmarkAppHelperTest::OnDidGetWebApplicationInfo,
base::Unretained(this), base::Passed(&chrome_render_frame)));
Wait();
}
private:
base::Closure quit_closure_;
std::unique_ptr<TestBookmarkAppHelper> bookmark_app_helper_;
DISALLOW_COPY_AND_ASSIGN(BookmarkAppHelperTest);
};
// Launches an installation confirmation dialog for a bookmark app.
IN_PROC_BROWSER_TEST_F(BookmarkAppHelperTest, InvokeUi_CreateBookmarkApp) {
ShowAndVerifyUi();
}
// Launches an installation confirmation dialog for a PWA.
IN_PROC_BROWSER_TEST_F(BookmarkAppHelperTest, InvokeUi_CreateWindowedPWA) {
// The PWA dialog will be launched because manifest_test_page.html passes
// the PWA check, but the kDesktopPWAWindowing flag must also be enabled.
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(features::kDesktopPWAWindowing);
ShowAndVerifyUi();
}
} // namespace extensions