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

Unified Diff: content/browser/browser_plugin/browser_plugin_host_browsertest.cc

Issue 10960003: Browser Plugin: Implement Back, Forward, and Go. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with ToT Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_guest.cc ('k') | content/common/browser_plugin_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_plugin/browser_plugin_host_browsertest.cc
diff --git a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
index 282e894fbbc33bff1e64d7d19e39bbcb8d116623..86d62e294ec089bb39e04f94b53b783054f87f88 100644
--- a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
+++ b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
@@ -31,7 +31,7 @@ using content::BrowserPluginEmbedder;
using content::BrowserPluginGuest;
using content::BrowserPluginHostFactory;
-namespace content {
+namespace {
const char* kHTMLForGuest =
"data:text/html,<html><body>hello world</body></html>";
@@ -54,6 +54,19 @@ const char kHTMLForGuestTouchHandler[] =
" handler);"
"}"
"</script></html>";
+const char* kHTMLForGuestWithTitle =
+ "data:text/html,"
+ "<html><head><title>%s</title></head>"
+ "<body>hello world</body>"
+ "</html>";
+
+std::string GetHTMLForGuestWithTitle(const std::string& title) {
+ return StringPrintf(kHTMLForGuestWithTitle, title.c_str());
+}
+
+} // namespace
+
+namespace content {
// Test factory for creating test instances of BrowserPluginEmbedder and
// BrowserPluginGuest.
@@ -685,4 +698,104 @@ IN_PROC_BROWSER_TEST_F(BrowserPluginHostTest, AcceptTouchEvents) {
EXPECT_FALSE(rvh->has_touch_handler());
}
+IN_PROC_BROWSER_TEST_F(BrowserPluginHostTest, Renavigate) {
+ ASSERT_TRUE(test_server()->Start());
+ GURL test_url(test_server()->GetURL(
+ "files/browser_plugin_embedder.html"));
+ NavigateToURL(shell(), test_url);
+
+ WebContentsImpl* embedder_web_contents = static_cast<WebContentsImpl*>(
+ shell()->web_contents());
+ RenderViewHostImpl* rvh = static_cast<RenderViewHostImpl*>(
+ embedder_web_contents->GetRenderViewHost());
+
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16(
+ StringPrintf("SetSrc('%s');", GetHTMLForGuestWithTitle("P1").c_str())));
+
+ // Wait to make sure embedder is created/attached to WebContents.
+ TestBrowserPluginHostFactory::GetInstance()->WaitForEmbedderCreation();
+
+ TestBrowserPluginEmbedder* test_embedder =
+ static_cast<TestBrowserPluginEmbedder*>(
+ embedder_web_contents->GetBrowserPluginEmbedder());
+ ASSERT_TRUE(test_embedder);
+ test_embedder->WaitForGuestAdded();
+
+ // Verify that we have exactly one guest.
+ const BrowserPluginEmbedder::ContainerInstanceMap& instance_map =
+ test_embedder->guest_web_contents_for_testing();
+ EXPECT_EQ(1u, instance_map.size());
+
+ WebContentsImpl* test_guest_web_contents = static_cast<WebContentsImpl*>(
+ instance_map.begin()->second);
+ TestBrowserPluginGuest* test_guest = static_cast<TestBrowserPluginGuest*>(
+ test_guest_web_contents->GetBrowserPluginGuest());
+
+ // Wait for the guest to send an UpdateRectMsg, meaning it is ready.
+ test_guest->WaitForUpdateRectMsg();
+
+ // Navigate to P2 and verify that the navigation occurred.
+ {
+ const string16 expected_title = ASCIIToUTF16("P2");
+ content::TitleWatcher title_watcher(test_guest_web_contents,
+ expected_title);
+
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16(
+ StringPrintf("SetSrc('%s');", GetHTMLForGuestWithTitle("P2").c_str())));
+
+ string16 actual_title = title_watcher.WaitAndGetTitle();
+ EXPECT_EQ(expected_title, actual_title);
+ }
+
+ // Navigate to P3 and verify that the navigation occurred.
+ {
+ const string16 expected_title = ASCIIToUTF16("P3");
+ content::TitleWatcher title_watcher(test_guest_web_contents,
+ expected_title);
+
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16(
+ StringPrintf("SetSrc('%s');", GetHTMLForGuestWithTitle("P3").c_str())));
+
+ string16 actual_title = title_watcher.WaitAndGetTitle();
+ EXPECT_EQ(expected_title, actual_title);
+ }
+
+ // Go back and verify that we're back at P2.
+ {
+ const string16 expected_title = ASCIIToUTF16("P2");
+ content::TitleWatcher title_watcher(test_guest_web_contents,
+ expected_title);
+
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16("Back();"));
+
+ string16 actual_title = title_watcher.WaitAndGetTitle();
+ EXPECT_EQ(expected_title, actual_title);
+ }
+
+ // Go forward and verify that we're back at P3.
+ {
+ const string16 expected_title = ASCIIToUTF16("P3");
+ content::TitleWatcher title_watcher(test_guest_web_contents,
+ expected_title);
+
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16("Forward();"));
+
+ string16 actual_title = title_watcher.WaitAndGetTitle();
+ EXPECT_EQ(expected_title, actual_title);
+ }
+
+ // Go back two entries and verify that we're back at P1.
+ {
+ const string16 expected_title = ASCIIToUTF16("P1");
+ content::TitleWatcher title_watcher(test_guest_web_contents,
+ expected_title);
+
+ rvh->ExecuteJavascriptAndGetValue(string16(), ASCIIToUTF16("Go(-2);"));
+
+ string16 actual_title = title_watcher.WaitAndGetTitle();
+ EXPECT_EQ(expected_title, actual_title);
+ }
+}
+
+
} // namespace content
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_guest.cc ('k') | content/common/browser_plugin_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698