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

Side by Side Diff: headless/lib/headless_web_contents_browsertest.cc

Issue 1674263002: headless: Initial headless embedder API implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fine, no console logging Mr. Presubmit. Created 4 years, 10 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
OLDNEW
(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());
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
OLDNEW
« no previous file with comments | « headless/lib/headless_content_main_delegate.cc ('k') | headless/lib/renderer/headless_content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698