blob: a43acaca013321fcde4c580be78884196b06a750 [file] [log] [blame]
// Copyright 2018 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/plugins/plugin_test_utils.h"
#include <string_view>
#include "base/strings/stringprintf.h"
#include "content/public/test/browser_test_utils.h"
// static
std::string PluginTestUtils::RunTestScript(std::string_view test_script,
content::WebContents* contents,
const std::string& element_id) {
std::string script = base::StringPrintf(
"var plugin = window.document.getElementById('%s');"
"if (plugin === undefined ||"
" (plugin.nodeName !== 'OBJECT' && plugin.nodeName !== 'EMBED')) {"
" 'error';"
"} else {"
" %s"
"}",
element_id.c_str(), test_script.data());
return content::EvalJs(contents, script).ExtractString();
}
// static
void PluginTestUtils::WaitForPlaceholderReady(content::WebContents* contents,
const std::string& element_id) {
std::string result = RunTestScript(
"new Promise(resolve => {"
" function handleEvent(event) {"
" if (event.data === 'placeholderReady') {"
" resolve('ready');"
" plugin.removeEventListener('message', handleEvent);"
" }"
" }"
" plugin.addEventListener('message', handleEvent);"
" if (plugin.hasAttribute('placeholderReady')) {"
" resolve('ready');"
" plugin.removeEventListener('message', handleEvent);"
" }"
"});",
contents, element_id);
ASSERT_EQ("ready", result);
}