OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "base/base_paths.h" | |
6 #include "base/bind.h" | |
7 #include "base/files/file_path.h" | |
8 #include "base/files/file_util.h" | |
9 #include "base/path_service.h" | |
10 #include "base/run_loop.h" | |
11 #include "base/strings/string_util.h" | |
12 #include "base/strings/stringprintf.h" | |
13 #include "mojo/application/application_test_base_chromium.h" | |
14 #include "mojo/common/data_pipe_utils.h" | |
15 #include "mojo/public/cpp/application/application_impl.h" | |
16 #include "mojo/public/cpp/system/macros.h" | |
17 #include "mojo/services/http_server/public/cpp/http_server_util.h" | |
18 #include "mojo/services/http_server/public/interfaces/http_server.mojom.h" | |
19 #include "mojo/services/http_server/public/interfaces/http_server_factory.mojom.
h" | |
20 #include "mojo/services/network/public/interfaces/net_address.mojom.h" | |
21 #include "mojo/shell/kPingable.h" | |
22 #include "mojo/shell/test/pingable.mojom.h" | |
23 | |
24 namespace mojo { | |
25 namespace { | |
26 | |
27 std::string GetURL(uint16_t port, const std::string& path) { | |
28 return base::StringPrintf("http://127.0.0.1:%u/%s", | |
29 static_cast<unsigned>(port), path.c_str()); | |
30 } | |
31 | |
32 class GetHandler : public http_server::HttpHandler { | |
33 public: | |
34 GetHandler(InterfaceRequest<http_server::HttpHandler> request, uint16_t port) | |
35 : binding_(this, request.Pass()), port_(port) { | |
36 } | |
37 ~GetHandler() override {} | |
38 | |
39 private: | |
40 // http_server::HttpHandler: | |
41 void HandleRequest( | |
42 http_server::HttpRequestPtr request, | |
43 const Callback<void(http_server::HttpResponsePtr)>& callback) override { | |
44 http_server::HttpResponsePtr response; | |
45 if (StartsWithASCII(request->relative_url, "/app", true)) { | |
46 response = http_server::CreateHttpResponse( | |
47 200, std::string(kPingable.data, kPingable.size)); | |
48 response->content_type = "application/octet-stream"; | |
49 } else if (request->relative_url == "/redirect") { | |
50 response = http_server::HttpResponse::New(); | |
51 response->status_code = 302; | |
52 response->custom_headers.insert("Location", GetURL(port_, "app")); | |
53 } else { | |
54 NOTREACHED(); | |
55 } | |
56 | |
57 callback.Run(response.Pass()); | |
58 } | |
59 | |
60 Binding<http_server::HttpHandler> binding_; | |
61 uint16_t port_; | |
62 | |
63 MOJO_DISALLOW_COPY_AND_ASSIGN(GetHandler); | |
64 }; | |
65 | |
66 typedef test::ApplicationTestBase ShellAppTest; | |
67 | |
68 class ShellHTTPAppTest : public test::ApplicationTestBase { | |
69 public: | |
70 ShellHTTPAppTest() : ApplicationTestBase() {} | |
71 ~ShellHTTPAppTest() override {} | |
72 | |
73 protected: | |
74 // ApplicationTestBase: | |
75 void SetUp() override { | |
76 ApplicationTestBase::SetUp(); | |
77 | |
78 application_impl()->ConnectToService("mojo:http_server", | |
79 &http_server_factory_); | |
80 | |
81 NetAddressPtr local_address(NetAddress::New()); | |
82 local_address->family = NET_ADDRESS_FAMILY_IPV4; | |
83 local_address->ipv4 = NetAddressIPv4::New(); | |
84 local_address->ipv4->addr.resize(4); | |
85 local_address->ipv4->addr[0] = 127; | |
86 local_address->ipv4->addr[1] = 0; | |
87 local_address->ipv4->addr[2] = 0; | |
88 local_address->ipv4->addr[3] = 1; | |
89 local_address->ipv4->port = 0; | |
90 http_server_factory_->CreateHttpServer(GetProxy(&http_server_), | |
91 local_address.Pass()); | |
92 | |
93 http_server_->GetPort([this](uint16_t p) { port_ = p; }); | |
94 EXPECT_TRUE(http_server_.WaitForIncomingMethodCall()); | |
95 | |
96 InterfacePtr<http_server::HttpHandler> http_handler; | |
97 handler_.reset(new GetHandler(GetProxy(&http_handler).Pass(), port_)); | |
98 http_server_->SetHandler(".*", http_handler.Pass(), | |
99 [](bool result) { EXPECT_TRUE(result); }); | |
100 EXPECT_TRUE(http_server_.WaitForIncomingMethodCall()); | |
101 } | |
102 | |
103 std::string GetURL(const std::string& path) { | |
104 return ::mojo::GetURL(port_, path); | |
105 } | |
106 | |
107 http_server::HttpServerFactoryPtr http_server_factory_; | |
108 http_server::HttpServerPtr http_server_; | |
109 scoped_ptr<GetHandler> handler_; | |
110 uint16_t port_; | |
111 | |
112 private: | |
113 MOJO_DISALLOW_COPY_AND_ASSIGN(ShellHTTPAppTest); | |
114 }; | |
115 | |
116 // Test that we can load apps over http. | |
117 TEST_F(ShellHTTPAppTest, Http) { | |
118 InterfacePtr<Pingable> pingable; | |
119 application_impl()->ConnectToService(GetURL("app"), &pingable); | |
120 pingable->Ping("hello", | |
121 [this](const String& app_url, const String& connection_url, | |
122 const String& message) { | |
123 EXPECT_EQ(GetURL("app"), app_url); | |
124 EXPECT_EQ(GetURL("app"), connection_url); | |
125 EXPECT_EQ("hello", message); | |
126 base::MessageLoop::current()->Quit(); | |
127 }); | |
128 base::RunLoop().Run(); | |
129 } | |
130 | |
131 // Test that redirects work. | |
132 // TODO(aa): Test that apps receive the correct URL parameters. | |
133 TEST_F(ShellHTTPAppTest, Redirect) { | |
134 InterfacePtr<Pingable> pingable; | |
135 application_impl()->ConnectToService(GetURL("redirect"), &pingable); | |
136 pingable->Ping("hello", | |
137 [this](const String& app_url, const String& connection_url, | |
138 const String& message) { | |
139 EXPECT_EQ(GetURL("app"), app_url); | |
140 EXPECT_EQ(GetURL("app"), connection_url); | |
141 EXPECT_EQ("hello", message); | |
142 base::MessageLoop::current()->Quit(); | |
143 }); | |
144 base::RunLoop().Run(); | |
145 } | |
146 | |
147 // Test that querystring is not considered when resolving http applications. | |
148 // TODO(aa|qsr): Fix this test on Linux ASAN http://crbug.com/463662 | |
149 #if defined(ADDRESS_SANITIZER) | |
150 #define MAYBE_QueryHandling DISABLED_QueryHandling | |
151 #else | |
152 #define MAYBE_QueryHandling QueryHandling | |
153 #endif // ADDRESS_SANITIZER | |
154 TEST_F(ShellHTTPAppTest, MAYBE_QueryHandling) { | |
155 InterfacePtr<Pingable> pingable1; | |
156 InterfacePtr<Pingable> pingable2; | |
157 application_impl()->ConnectToService(GetURL("app?foo"), &pingable1); | |
158 application_impl()->ConnectToService(GetURL("app?bar"), &pingable2); | |
159 | |
160 int num_responses = 0; | |
161 auto callback = [this, &num_responses](const String& app_url, | |
162 const String& connection_url, | |
163 const String& message) { | |
164 EXPECT_EQ(GetURL("app"), app_url); | |
165 EXPECT_EQ("hello", message); | |
166 ++num_responses; | |
167 if (num_responses == 1) { | |
168 EXPECT_EQ(GetURL("app?foo"), connection_url); | |
169 } else if (num_responses == 2) { | |
170 EXPECT_EQ(GetURL("app?bar"), connection_url); | |
171 base::MessageLoop::current()->Quit(); | |
172 } else { | |
173 CHECK(false); | |
174 } | |
175 }; | |
176 pingable1->Ping("hello", callback); | |
177 pingable2->Ping("hello", callback); | |
178 base::RunLoop().Run(); | |
179 } | |
180 | |
181 // mojo: URLs can have querystrings too | |
182 TEST_F(ShellAppTest, MojoURLQueryHandling) { | |
183 InterfacePtr<Pingable> pingable; | |
184 application_impl()->ConnectToService("mojo:pingable_app?foo", &pingable); | |
185 auto callback = [this](const String& app_url, const String& connection_url, | |
186 const String& message) { | |
187 EXPECT_TRUE(EndsWith(app_url, "/pingable_app.mojo", true)); | |
188 EXPECT_EQ(app_url.To<std::string>() + "?foo", connection_url); | |
189 EXPECT_EQ("hello", message); | |
190 base::MessageLoop::current()->Quit(); | |
191 }; | |
192 pingable->Ping("hello", callback); | |
193 base::RunLoop().Run(); | |
194 } | |
195 | |
196 } // namespace | |
197 } // namespace mojo | |
OLD | NEW |