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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
#include "content/web_test/browser/web_test_devtools_bindings.h"
#include "base/memory/raw_ptr.h"
#include <memory>
#include "base/command_line.h"
#include "base/functional/callback_helpers.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "content/shell/browser/shell.h"
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
#include "content/shell/common/shell_switches.h"
#endif
#include "content/web_test/browser/web_test_control_host.h"
#include "content/web_test/common/web_test_switches.h"
#include "net/base/filename_util.h"
namespace {
const char kDevToolsFrontendOrigin[] = "debug-frontend.test";
const char kOriginToReplace[] = "127.0.0.1";
GURL GetInspectedPageURL(const GURL& test_url) {
std::string spec = test_url.spec();
std::string test_query_param = "&inspected_test=";
std::string test_script_url =
spec.substr(spec.find(test_query_param) + test_query_param.length());
std::string inspected_page_url = test_script_url.replace(
test_script_url.find("/devtools/"), std::string::npos,
"/devtools/resources/inspected-page.html");
return GURL(inspected_page_url);
}
} // namespace
namespace content {
class WebTestDevToolsBindings::SecondaryObserver : public WebContentsObserver {
public:
explicit SecondaryObserver(WebTestDevToolsBindings* bindings)
: WebContentsObserver(bindings->inspected_contents()),
bindings_(bindings) {}
SecondaryObserver(const SecondaryObserver&) = delete;
SecondaryObserver& operator=(const SecondaryObserver&) = delete;
// WebContentsObserver implementation.
void PrimaryMainDocumentElementAvailable() override {
if (bindings_)
bindings_->NavigateDevToolsFrontend();
bindings_ = nullptr;
}
private:
raw_ptr<WebTestDevToolsBindings> bindings_;
};
// static.
GURL WebTestDevToolsBindings::MapTestURLIfNeeded(const GURL& test_url,
bool* is_devtools_test) {
std::string test_url_string = test_url.spec();
*is_devtools_test = test_url_string.find("/devtools/") != std::string::npos;
if (!*is_devtools_test)
return test_url;
base::FilePath dir_exe;
if (!base::PathService::Get(base::DIR_EXE, &dir_exe)) {
NOTREACHED();
}
#if BUILDFLAG(IS_MAC)
// On Mac, the executable is in
// out/Release/Content Shell.app/Contents/MacOS/Content Shell.
// We need to go up 3 directories to get to out/Release.
dir_exe = dir_exe.AppendASCII("../../..");
#endif
base::FilePath dev_tools_path;
bool is_debug_dev_tools = base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDebugDevTools);
// The test runner hosts DevTools resources at this path.
// To reduce timeouts, we need to load DevTools resources from the same
// origin as the `test_url_string`.
CHECK_NE(test_url_string.find("127.0.0.1:8000"), std::string::npos);
std::string url_string = "http://" + std::string(kDevToolsFrontendOrigin) +
":8000/inspector-sources/";
url_string += "integration_test_runner.html?experiments=true";
if (is_debug_dev_tools)
url_string += "&debugFrontend=true";
std::string devtools_test_url = test_url_string;
devtools_test_url.replace(test_url_string.find(kOriginToReplace),
std::strlen(kOriginToReplace),
kDevToolsFrontendOrigin);
url_string += "&test=" + devtools_test_url;
url_string += "&inspected_test=" + test_url_string;
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
url_string += "&targetType=tab";
#endif
return GURL(url_string);
}
void WebTestDevToolsBindings::NavigateDevToolsFrontend() {
NavigationController::LoadURLParams params(frontend_url_);
params.transition_type = ui::PageTransitionFromInt(
ui::PAGE_TRANSITION_TYPED | ui::PAGE_TRANSITION_FROM_ADDRESS_BAR);
web_contents()->GetController().LoadURLWithParams(params);
}
void WebTestDevToolsBindings::Attach() {}
WebTestDevToolsBindings::WebTestDevToolsBindings(
WebContents* devtools_contents,
WebContents* inspected_contents,
const GURL& frontend_url)
: ShellDevToolsBindings(devtools_contents, inspected_contents, nullptr),
frontend_url_(frontend_url) {
secondary_observer_ = std::make_unique<SecondaryObserver>(this);
NavigationController::LoadURLParams params(GetInspectedPageURL(frontend_url));
params.transition_type = ui::PageTransitionFromInt(
ui::PAGE_TRANSITION_TYPED | ui::PAGE_TRANSITION_FROM_ADDRESS_BAR);
inspected_contents->GetController().LoadURLWithParams(params);
}
WebTestDevToolsBindings::~WebTestDevToolsBindings() {}
void WebTestDevToolsBindings::PrimaryMainDocumentElementAvailable() {
ShellDevToolsBindings::Attach();
}
} // namespace content
|