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
|
// Copyright 2012 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/test/base/chrome_render_view_test.h"
#include <memory>
#include <vector>
#include "base/debug/leak_annotations.h"
#include "base/run_loop.h"
#include "chrome/browser/chrome_content_browser_client.h"
#include "chrome/common/chrome_content_client.h"
#include "chrome/renderer/chrome_content_renderer_client.h"
#include "chrome/test/base/chrome_unit_test_suite.h"
#include "components/autofill/content/renderer/autofill_agent.h"
#include "components/autofill/content/renderer/password_autofill_agent.h"
#include "components/autofill/content/renderer/password_generation_agent.h"
#include "components/autofill/content/renderer/test_password_autofill_agent.h"
#include "components/input/native_web_keyboard_event.h"
#include "components/spellcheck/renderer/spellcheck.h"
#include "components/spellcheck/spellcheck_buildflags.h"
#include "extensions/buildflags/buildflags.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "third_party/blink/public/platform/web_url_request.h"
#include "third_party/blink/public/web/blink.h"
#include "third_party/blink/public/web/web_frame.h"
#include "third_party/blink/public/web/web_script_controller.h"
#include "third_party/blink/public/web/web_script_source.h"
#include "third_party/blink/public/web/web_view.h"
#if BUILDFLAG(ENABLE_EXTENSIONS_CORE)
#include "chrome/renderer/extensions/chrome_extensions_renderer_client.h"
#include "extensions/renderer/dispatcher.h" // nogncheck
#include "extensions/renderer/extensions_renderer_api_provider.h" // nogncheck
#endif
#if BUILDFLAG(ENABLE_EXTENSIONS)
#include "extensions/browser/extension_function_dispatcher.h"
#include "extensions/common/extension.h"
#endif
using autofill::AutofillAgent;
using autofill::PasswordAutofillAgent;
using autofill::PasswordGenerationAgent;
using blink::WebFrame;
using blink::WebInputEvent;
using blink::WebMouseEvent;
using blink::WebScriptController;
using blink::WebScriptSource;
using blink::WebString;
using blink::WebURLRequest;
using content::RenderFrame;
using testing::_;
using testing::NiceMock;
using testing::Return;
ChromeRenderViewTest::ChromeRenderViewTest() = default;
ChromeRenderViewTest::~ChromeRenderViewTest() = default;
void ChromeRenderViewTest::SetUp() {
ChromeUnitTestSuite::InitializeProviders();
ChromeUnitTestSuite::InitializeResourceBundle();
registry_ = std::make_unique<service_manager::BinderRegistry>();
// TODO(crbug.com/41401202): Before this SetUp, the test agents defined at the
// end of this method should be injected into the creation of RenderViewImpl.
// In the current state, regular agents are created before the test agents.
content::RenderViewTest::SetUp();
RegisterMainFrameRemoteInterfaces();
// RenderFrame doesn't expose its Agent objects, because it has no need to
// store them directly (they're stored as RenderFrameObserver*). So just
// create another set. They destroy themselves in OnDestruct().
auto unique_password_autofill_agent =
std::make_unique<autofill::TestPasswordAutofillAgent>(
GetMainRenderFrame(), &associated_interfaces_);
password_autofill_agent_ = unique_password_autofill_agent.get();
auto unique_password_generation =
std::make_unique<autofill::PasswordGenerationAgent>(
GetMainRenderFrame(), password_autofill_agent_.get(),
&associated_interfaces_);
password_generation_ = unique_password_generation.get();
autofill_agent_ = new AutofillAgent(
GetMainRenderFrame(), std::move(unique_password_autofill_agent),
std::move(unique_password_generation), &associated_interfaces_);
}
void ChromeRenderViewTest::TearDown() {
autofill_agent_ = nullptr;
password_generation_ = nullptr;
password_autofill_agent_ = nullptr;
base::RunLoop().RunUntilIdle();
#if defined(LEAK_SANITIZER)
// Do this before shutting down V8 in RenderViewTest::TearDown().
// http://crbug.com/328552
__lsan_do_leak_check();
#endif
content::RenderViewTest::TearDown();
registry_.reset();
}
content::ContentClient* ChromeRenderViewTest::CreateContentClient() {
return new ChromeContentClient();
}
content::ContentBrowserClient*
ChromeRenderViewTest::CreateContentBrowserClient() {
return new ChromeContentBrowserClient();
}
content::ContentRendererClient*
ChromeRenderViewTest::CreateContentRendererClient() {
ChromeContentRendererClient* client = new ChromeContentRendererClient();
InitChromeContentRendererClient(client);
return client;
}
void ChromeRenderViewTest::RegisterMainFrameRemoteInterfaces() {}
void ChromeRenderViewTest::InitChromeContentRendererClient(
ChromeContentRendererClient* client) {
#if BUILDFLAG(ENABLE_EXTENSIONS_CORE)
ChromeExtensionsRendererClient::Create();
extensions::ExtensionsRendererClient::Get()->SetDispatcherForTesting(
std::make_unique<extensions::Dispatcher>(
std::vector<std::unique_ptr<
const extensions::ExtensionsRendererAPIProvider>>()));
#endif
#if BUILDFLAG(ENABLE_SPELLCHECK)
client->InitSpellCheck();
#endif
}
|