This source file includes following definitions.
- NavigateToStartPage
- GetBodyText
- IN_PROC_BROWSER_TEST_F
- IN_PROC_BROWSER_TEST_F
- IN_PROC_BROWSER_TEST_F
- IN_PROC_BROWSER_TEST_F
#include "base/strings/string_util.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/public/test/test_utils.h"
#include "content/shell/browser/shell.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
class BookmarkletTest : public ContentBrowserTest {
public:
void NavigateToStartPage() {
NavigateToURL(shell(), GURL("data:text/html,start page"));
EXPECT_EQ("start page", GetBodyText());
}
std::string GetBodyText() {
std::string body_text;
EXPECT_TRUE(ExecuteScriptAndExtractString(
shell()->web_contents(),
"window.domAutomationController.send(document.body.innerText);",
&body_text));
return body_text;
}
};
IN_PROC_BROWSER_TEST_F(BookmarkletTest, Redirect) {
NavigateToStartPage();
NavigateToURL(shell(), GURL(
"javascript:location.href='data:text/plain,SUCCESS'"));
EXPECT_EQ("SUCCESS", GetBodyText());
}
IN_PROC_BROWSER_TEST_F(BookmarkletTest, RedirectVoided) {
NavigateToStartPage();
NavigateToURL(shell(), GURL(
"javascript:void(location.href='data:text/plain,SUCCESS')"));
EXPECT_EQ("SUCCESS", GetBodyText());
}
IN_PROC_BROWSER_TEST_F(BookmarkletTest, NonEmptyResult) {
NavigateToStartPage();
shell()->LoadURL(GURL("javascript:'hello world'"));
EXPECT_EQ("hello world", GetBodyText());
}
IN_PROC_BROWSER_TEST_F(BookmarkletTest, DocumentWrite) {
NavigateToStartPage();
shell()->LoadURL(GURL(
"javascript:document.open();"
"document.write('hello world');"
"document.close();"));
EXPECT_EQ("hello world", GetBodyText());
}
}