| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <stddef.h> | 5 #include <stddef.h> |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 75 |
| 76 using AXProviderTest = mus::WindowServerTestBase; | 76 using AXProviderTest = mus::WindowServerTestBase; |
| 77 | 77 |
| 78 TEST_F(AXProviderTest, HelloWorld) { | 78 TEST_F(AXProviderTest, HelloWorld) { |
| 79 // Start a test server for net/data/test.html access. | 79 // Start a test server for net/data/test.html access. |
| 80 net::EmbeddedTestServer server; | 80 net::EmbeddedTestServer server; |
| 81 server.ServeFilesFromSourceDirectory("net/data"); | 81 server.ServeFilesFromSourceDirectory("net/data"); |
| 82 ASSERT_TRUE(server.Start()); | 82 ASSERT_TRUE(server.Start()); |
| 83 | 83 |
| 84 // Connect to the URL through the mojo:html_viewer content handler. | 84 // Connect to the URL through the mojo:html_viewer content handler. |
| 85 scoped_ptr<ApplicationConnection> connection = | 85 scoped_ptr<Connection> connection = |
| 86 shell()->ConnectToApplication(server.GetURL("/test.html").spec()); | 86 shell()->ConnectToApplication(server.GetURL("/test.html").spec()); |
| 87 | 87 |
| 88 // Embed the html_viewer in a Window. | 88 // Embed the html_viewer in a Window. |
| 89 mus::mojom::WindowTreeClientPtr tree_client; | 89 mus::mojom::WindowTreeClientPtr tree_client; |
| 90 connection->ConnectToService(&tree_client); | 90 connection->ConnectToService(&tree_client); |
| 91 mus::Window* embed_window = window_manager()->NewWindow(); | 91 mus::Window* embed_window = window_manager()->NewWindow(); |
| 92 embed_window->Embed(std::move(tree_client)); | 92 embed_window->Embed(std::move(tree_client)); |
| 93 | 93 |
| 94 TestFrame frame; | 94 TestFrame frame; |
| 95 web_view::mojom::FramePtr frame_ptr; | 95 web_view::mojom::FramePtr frame_ptr; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 117 EXPECT_TRUE(QuitRunLoop()); | 117 EXPECT_TRUE(QuitRunLoop()); |
| 118 }); | 118 }); |
| 119 ASSERT_TRUE(DoRunLoopWithTimeout()); | 119 ASSERT_TRUE(DoRunLoopWithTimeout()); |
| 120 | 120 |
| 121 EXPECT_TRUE(AxTreeContainsText(ax_tree, "Hello ")); | 121 EXPECT_TRUE(AxTreeContainsText(ax_tree, "Hello ")); |
| 122 EXPECT_TRUE(AxTreeContainsText(ax_tree, "World!")); | 122 EXPECT_TRUE(AxTreeContainsText(ax_tree, "World!")); |
| 123 EXPECT_FALSE(AxTreeContainsText(ax_tree, "foo")); | 123 EXPECT_FALSE(AxTreeContainsText(ax_tree, "foo")); |
| 124 } | 124 } |
| 125 | 125 |
| 126 } // namespace mojo | 126 } // namespace mojo |
| OLD | NEW |