Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: content/browser/bookmarklet_browsertest.cc

Issue 11728003: Change ExecuteJavaScript* helper functions in browser_test_utils.{h,cc} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding files for gpu_tests and NaCl browser tests. Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/string_util.h" 5 #include "base/string_util.h"
6 #include "content/public/browser/web_contents.h" 6 #include "content/public/browser/web_contents.h"
7 #include "content/public/test/browser_test_utils.h" 7 #include "content/public/test/browser_test_utils.h"
8 #include "content/public/test/test_utils.h" 8 #include "content/public/test/test_utils.h"
9 #include "content/shell/shell.h" 9 #include "content/shell/shell.h"
10 #include "content/test/content_browser_test.h" 10 #include "content/test/content_browser_test.h"
11 #include "content/test/content_browser_test_utils.h" 11 #include "content/test/content_browser_test_utils.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 class BookmarkletTest : public ContentBrowserTest { 16 class BookmarkletTest : public ContentBrowserTest {
17 public: 17 public:
18 void NavigateToStartPage() { 18 void NavigateToStartPage() {
19 NavigateToURL(shell(), GURL("data:text/html,start page")); 19 NavigateToURL(shell(), GURL("data:text/html,start page"));
20 EXPECT_EQ("start page", GetBodyText()); 20 EXPECT_EQ("start page", GetBodyText());
21 } 21 }
22 22
23 std::string GetBodyText() { 23 std::string GetBodyText() {
24 std::string body_text; 24 std::string body_text;
25 EXPECT_TRUE(ExecuteJavaScriptAndExtractString( 25 EXPECT_TRUE(ExecuteJavaScriptAndExtractString(
26 shell()->web_contents()->GetRenderViewHost(), 26 shell()->web_contents()->GetRenderViewHost(),
27 L"", 27 "",
28 L"window.domAutomationController.send(document.body.innerText);", 28 "window.domAutomationController.send(document.body.innerText);",
29 &body_text)); 29 &body_text));
30 return body_text; 30 return body_text;
31 } 31 }
32 }; 32 };
33 33
34 IN_PROC_BROWSER_TEST_F(BookmarkletTest, Redirect) { 34 IN_PROC_BROWSER_TEST_F(BookmarkletTest, Redirect) {
35 NavigateToStartPage(); 35 NavigateToStartPage();
36 36
37 NavigateToURL(shell(), GURL( 37 NavigateToURL(shell(), GURL(
38 "javascript:location.href='data:text/plain,SUCCESS'")); 38 "javascript:location.href='data:text/plain,SUCCESS'"));
(...skipping 27 matching lines...) Expand all
66 shell()->LoadURL(GURL( 66 shell()->LoadURL(GURL(
67 "javascript:document.open();" 67 "javascript:document.open();"
68 "document.write('hello world');" 68 "document.write('hello world');"
69 "document.close();")); 69 "document.close();"));
70 EXPECT_EQ("hello world", GetBodyText()); 70 EXPECT_EQ("hello world", GetBodyText());
71 } 71 }
72 72
73 73
74 } // namespace content 74 } // namespace content
75 75
OLDNEW
« no previous file with comments | « chrome/test/gpu/gpu_pixel_browsertest.cc ('k') | content/browser/browser_plugin/browser_plugin_host_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698