Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "base/run_loop.h" | |
| 6 #include "content/public/test/browser_test.h" | |
| 7 #include "headless/public/headless_browser.h" | |
| 8 #include "headless/public/headless_web_contents.h" | |
| 9 #include "headless/test/headless_browser_test.h" | |
| 10 #include "testing/gtest/include/gtest/gtest.h" | |
| 11 #include "ui/gfx/geometry/size.h" | |
| 12 #include "url/gurl.h" | |
| 13 | |
| 14 namespace headless { | |
| 15 | |
| 16 class HeadlessWebContentsTest : public HeadlessBrowserTest {}; | |
| 17 | |
| 18 class WaitForNavigationObserver : public HeadlessWebContents::Observer { | |
| 19 public: | |
| 20 WaitForNavigationObserver(base::RunLoop* run_loop, | |
| 21 HeadlessWebContents* web_contents) | |
| 22 : run_loop_(run_loop), web_contents_(web_contents) { | |
| 23 web_contents_->AddObserver(this); | |
| 24 } | |
| 25 | |
| 26 ~WaitForNavigationObserver() override { web_contents_->RemoveObserver(this); } | |
| 27 | |
| 28 void DocumentOnLoadCompletedInMainFrame() override { run_loop_->Quit(); } | |
| 29 | |
| 30 private: | |
| 31 base::RunLoop* run_loop_; // Not owned. | |
| 32 HeadlessWebContents* web_contents_; // Not owned. | |
| 33 | |
| 34 DISALLOW_COPY_AND_ASSIGN(WaitForNavigationObserver); | |
| 35 }; | |
| 36 | |
| 37 IN_PROC_BROWSER_TEST_F(HeadlessWebContentsTest, Navigation) { | |
| 38 EXPECT_TRUE(embedded_test_server()->Start()); | |
| 39 scoped_ptr<HeadlessWebContents> web_contents = | |
| 40 browser()->CreateWebContents(gfx::Size(800, 600)); | |
| 41 | |
| 42 base::RunLoop run_loop; | |
| 43 base::MessageLoop::ScopedNestableTaskAllower nestable_allower( | |
| 44 base::MessageLoop::current()); | |
|
Ryan Sleevi
2016/02/25 22:04:36
o_O
ScopedNestableTasks are generally anathema -
Sami
2016/02/26 18:49:16
Completely agreed about nested run loops -- they'v
| |
| 45 WaitForNavigationObserver observer(&run_loop, web_contents.get()); | |
| 46 | |
| 47 web_contents->OpenURL(embedded_test_server()->GetURL("/hello.html")); | |
| 48 run_loop.Run(); | |
| 49 } | |
| 50 | |
| 51 IN_PROC_BROWSER_TEST_F(HeadlessWebContentsTest, NavigationWithBadURL) { | |
| 52 scoped_ptr<HeadlessWebContents> web_contents = | |
| 53 browser()->CreateWebContents(gfx::Size(800, 600)); | |
| 54 GURL bad_url("not_valid"); | |
| 55 EXPECT_FALSE(web_contents->OpenURL(bad_url)); | |
| 56 } | |
| 57 | |
| 58 } // namespace headless | |
| OLD | NEW |