blob: 1bfcce96f943d1516520ec36b02c162bc6fe94e0 [file] [log] [blame]
// Copyright 2015 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.
#ifndef CONTENT_TEST_TEST_RENDER_FRAME_H_
#define CONTENT_TEST_TEST_RENDER_FRAME_H_
#include <memory>
#include "base/macros.h"
#include "base/optional.h"
#include "content/common/frame.mojom-forward.h"
#include "content/common/navigation_params.mojom-forward.h"
#include "content/renderer/render_frame_impl.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "mojo/public/cpp/bindings/scoped_interface_endpoint_handle.h"
#include "third_party/blink/public/mojom/input/input_handler.mojom.h"
namespace content {
class MockFrameHost;
// A test class to use in RenderViewTests.
class TestRenderFrame : public RenderFrameImpl {
public:
static RenderFrameImpl* CreateTestRenderFrame(
RenderFrameImpl::CreateParams params);
~TestRenderFrame() override;
// Overrides the content in the next navigation originating from the frame.
// This will also short-circuit browser-side navigation,
// FrameLoader will always carry out the load renderer-side.
void SetHTMLOverrideForNextNavigation(const std::string& html);
void Navigate(network::mojom::URLResponseHeadPtr head,
mojom::CommonNavigationParamsPtr common_params,
mojom::CommitNavigationParamsPtr commit_params);
void Navigate(mojom::CommonNavigationParamsPtr common_params,
mojom::CommitNavigationParamsPtr commit_params);
void NavigateWithError(mojom::CommonNavigationParamsPtr common_params,
mojom::CommitNavigationParamsPtr request_params,
int error_code,
const net::ResolveErrorInfo& resolve_error_info,
const base::Optional<std::string>& error_page_content);
void BeginNavigation(std::unique_ptr<blink::WebNavigationInfo> info) override;
mojom::DidCommitProvisionalLoadParamsPtr TakeLastCommitParams();
mojo::PendingReceiver<blink::mojom::BrowserInterfaceBroker>
TakeLastBrowserInterfaceBrokerReceiver();
void SimulateBeforeUnload(bool is_reload);
bool IsPageStateUpdated() const;
bool IsURLOpened() const;
// Returns a pending Frame receiver that represents a renderer-side connection
// from a non-existent browser, so no messages would ever be received on it.
static mojo::PendingAssociatedReceiver<mojom::Frame>
CreateStubFrameReceiver();
// Returns a pending BrowserInterfaceBroker remote that represents a
// connection to a non-existent browser, where all messages will go into the
// void.
static mojo::PendingRemote<blink::mojom::BrowserInterfaceBroker>
CreateStubBrowserInterfaceBrokerRemote();
protected:
explicit TestRenderFrame(RenderFrameImpl::CreateParams params);
private:
mojom::FrameHost* GetFrameHost() override;
std::unique_ptr<MockFrameHost> mock_frame_host_;
base::Optional<std::string> next_navigation_html_override_;
mojo::AssociatedRemote<mojom::NavigationClient> mock_navigation_client_;
DISALLOW_COPY_AND_ASSIGN(TestRenderFrame);
};
} // namespace content
#endif // CONTENT_TEST_TEST_RENDER_FRAME_H_