1 // Copyright (c) 2012 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.
5 #include "net/test/embedded_test_server/embedded_test_server.h"
8 #include "base/files/file_path.h"
9 #include "base/files/file_util.h"
10 #include "base/message_loop/message_loop.h"
11 #include "base/path_service.h"
12 #include "base/process/process_metrics.h"
13 #include "base/run_loop.h"
14 #include "base/stl_util.h"
15 #include "base/strings/string_util.h"
16 #include "base/strings/stringprintf.h"
17 #include "base/threading/thread_restrictions.h"
18 #include "net/base/ip_endpoint.h"
19 #include "net/base/net_errors.h"
20 #include "net/test/embedded_test_server/http_connection.h"
21 #include "net/test/embedded_test_server/http_request.h"
22 #include "net/test/embedded_test_server/http_response.h"
25 namespace test_server
{
29 class CustomHttpResponse
: public HttpResponse
{
31 CustomHttpResponse(const std::string
& headers
, const std::string
& contents
)
32 : headers_(headers
), contents_(contents
) {
35 std::string
ToResponseString() const override
{
36 return headers_
+ "\r\n" + contents_
;
41 std::string contents_
;
43 DISALLOW_COPY_AND_ASSIGN(CustomHttpResponse
);
46 // Handles |request| by serving a file from under |server_root|.
47 scoped_ptr
<HttpResponse
> HandleFileRequest(
48 const base::FilePath
& server_root
,
49 const HttpRequest
& request
) {
50 // This is a test-only server. Ignore I/O thread restrictions.
51 base::ThreadRestrictions::ScopedAllowIO allow_io
;
53 // Trim the first byte ('/').
54 std::string
request_path(request
.relative_url
.substr(1));
56 // Remove the query string if present.
57 size_t query_pos
= request_path
.find('?');
58 if (query_pos
!= std::string::npos
)
59 request_path
= request_path
.substr(0, query_pos
);
61 base::FilePath
file_path(server_root
.AppendASCII(request_path
));
62 std::string file_contents
;
63 if (!base::ReadFileToString(file_path
, &file_contents
))
64 return scoped_ptr
<HttpResponse
>();
66 base::FilePath
headers_path(
67 file_path
.AddExtension(FILE_PATH_LITERAL("mock-http-headers")));
69 if (base::PathExists(headers_path
)) {
70 std::string headers_contents
;
71 if (!base::ReadFileToString(headers_path
, &headers_contents
))
72 return scoped_ptr
<HttpResponse
>();
74 scoped_ptr
<CustomHttpResponse
> http_response(
75 new CustomHttpResponse(headers_contents
, file_contents
));
76 return http_response
.Pass();
79 scoped_ptr
<BasicHttpResponse
> http_response(new BasicHttpResponse
);
80 http_response
->set_code(HTTP_OK
);
81 http_response
->set_content(file_contents
);
82 return http_response
.Pass();
87 HttpListenSocket::HttpListenSocket(const SocketDescriptor socket_descriptor
,
88 StreamListenSocket::Delegate
* delegate
)
89 : TCPListenSocket(socket_descriptor
, delegate
) {
90 DCHECK(thread_checker_
.CalledOnValidThread());
93 void HttpListenSocket::Listen() {
94 DCHECK(thread_checker_
.CalledOnValidThread());
95 TCPListenSocket::Listen();
98 void HttpListenSocket::ListenOnIOThread() {
99 DCHECK(thread_checker_
.CalledOnValidThread());
100 #if !defined(OS_POSIX)
101 // This method may be called after the IO thread is changed, thus we need to
102 // call |WatchSocket| again to make sure it listens on the current IO thread.
103 // Only needed for non POSIX platforms, since on POSIX platforms
104 // StreamListenSocket::Listen already calls WatchSocket inside the function.
105 WatchSocket(WAITING_ACCEPT
);
110 HttpListenSocket::~HttpListenSocket() {
111 DCHECK(thread_checker_
.CalledOnValidThread());
114 void HttpListenSocket::DetachFromThread() {
115 thread_checker_
.DetachFromThread();
118 EmbeddedTestServer::EmbeddedTestServer()
120 weak_factory_(this) {
121 DCHECK(thread_checker_
.CalledOnValidThread());
124 EmbeddedTestServer::~EmbeddedTestServer() {
125 DCHECK(thread_checker_
.CalledOnValidThread());
127 if (Started() && !ShutdownAndWaitUntilComplete()) {
128 LOG(ERROR
) << "EmbeddedTestServer failed to shut down.";
132 bool EmbeddedTestServer::InitializeAndWaitUntilReady() {
134 DCHECK(thread_checker_
.CalledOnValidThread());
135 if (!PostTaskToIOThreadAndWait(base::Bind(
136 &EmbeddedTestServer::InitializeOnIOThread
, base::Unretained(this)))) {
139 return Started() && base_url_
.is_valid();
142 void EmbeddedTestServer::StopThread() {
143 DCHECK(io_thread_
&& io_thread_
->IsRunning());
145 #if defined(OS_LINUX)
146 const int thread_count
=
147 base::GetNumberOfThreads(base::GetCurrentProcessHandle());
152 thread_checker_
.DetachFromThread();
153 listen_socket_
->DetachFromThread();
155 #if defined(OS_LINUX)
156 // Busy loop to wait for thread count to decrease. This is needed because
157 // pthread_join does not guarantee that kernel stat is updated when it
158 // returns. Thus, GetNumberOfThreads does not immediately reflect the stopped
159 // thread and hits the thread number DCHECK in render_sandbox_host_linux.cc
161 while (thread_count
==
162 base::GetNumberOfThreads(base::GetCurrentProcessHandle())) {
163 base::PlatformThread::YieldCurrentThread();
168 void EmbeddedTestServer::RestartThreadAndListen() {
170 CHECK(PostTaskToIOThreadAndWait(base::Bind(
171 &EmbeddedTestServer::ListenOnIOThread
, base::Unretained(this))));
174 bool EmbeddedTestServer::ShutdownAndWaitUntilComplete() {
175 DCHECK(thread_checker_
.CalledOnValidThread());
177 return PostTaskToIOThreadAndWait(base::Bind(
178 &EmbeddedTestServer::ShutdownOnIOThread
, base::Unretained(this)));
181 void EmbeddedTestServer::StartThread() {
182 DCHECK(!io_thread_
.get());
183 base::Thread::Options thread_options
;
184 thread_options
.message_loop_type
= base::MessageLoop::TYPE_IO
;
185 io_thread_
.reset(new base::Thread("EmbeddedTestServer io thread"));
186 CHECK(io_thread_
->StartWithOptions(thread_options
));
189 void EmbeddedTestServer::InitializeOnIOThread() {
190 DCHECK(io_thread_
->message_loop_proxy()->BelongsToCurrentThread());
193 SocketDescriptor socket_descriptor
=
194 TCPListenSocket::CreateAndBindAnyPort("127.0.0.1", &port_
);
195 if (socket_descriptor
== kInvalidSocket
)
198 listen_socket_
.reset(new HttpListenSocket(socket_descriptor
, this));
199 listen_socket_
->Listen();
202 int result
= listen_socket_
->GetLocalAddress(&address
);
204 base_url_
= GURL(std::string("http://") + address
.ToString());
206 LOG(ERROR
) << "GetLocalAddress failed: " << ErrorToString(result
);
210 void EmbeddedTestServer::ListenOnIOThread() {
211 DCHECK(io_thread_
->message_loop_proxy()->BelongsToCurrentThread());
213 listen_socket_
->ListenOnIOThread();
216 void EmbeddedTestServer::ShutdownOnIOThread() {
217 DCHECK(io_thread_
->message_loop_proxy()->BelongsToCurrentThread());
219 listen_socket_
.reset();
220 STLDeleteContainerPairSecondPointers(connections_
.begin(),
222 connections_
.clear();
225 void EmbeddedTestServer::HandleRequest(HttpConnection
* connection
,
226 scoped_ptr
<HttpRequest
> request
) {
227 DCHECK(io_thread_
->message_loop_proxy()->BelongsToCurrentThread());
229 bool request_handled
= false;
231 for (size_t i
= 0; i
< request_handlers_
.size(); ++i
) {
232 scoped_ptr
<HttpResponse
> response
=
233 request_handlers_
[i
].Run(*request
.get());
234 if (response
.get()) {
235 connection
->SendResponse(response
.Pass());
236 request_handled
= true;
241 if (!request_handled
) {
242 LOG(WARNING
) << "Request not handled. Returning 404: "
243 << request
->relative_url
;
244 scoped_ptr
<BasicHttpResponse
> not_found_response(new BasicHttpResponse
);
245 not_found_response
->set_code(HTTP_NOT_FOUND
);
246 connection
->SendResponse(not_found_response
.Pass());
249 // Drop the connection, since we do not support multiple requests per
251 connections_
.erase(connection
->socket_
.get());
255 GURL
EmbeddedTestServer::GetURL(const std::string
& relative_url
) const {
256 DCHECK(Started()) << "You must start the server first.";
257 DCHECK(StartsWithASCII(relative_url
, "/", true /* case_sensitive */))
259 return base_url_
.Resolve(relative_url
);
262 void EmbeddedTestServer::ServeFilesFromDirectory(
263 const base::FilePath
& directory
) {
264 RegisterRequestHandler(base::Bind(&HandleFileRequest
, directory
));
267 void EmbeddedTestServer::RegisterRequestHandler(
268 const HandleRequestCallback
& callback
) {
269 request_handlers_
.push_back(callback
);
272 void EmbeddedTestServer::DidAccept(
273 StreamListenSocket
* server
,
274 scoped_ptr
<StreamListenSocket
> connection
) {
275 DCHECK(io_thread_
->message_loop_proxy()->BelongsToCurrentThread());
277 HttpConnection
* http_connection
= new HttpConnection(
279 base::Bind(&EmbeddedTestServer::HandleRequest
,
280 weak_factory_
.GetWeakPtr()));
281 // TODO(szym): Make HttpConnection the StreamListenSocket delegate.
282 connections_
[http_connection
->socket_
.get()] = http_connection
;
285 void EmbeddedTestServer::DidRead(StreamListenSocket
* connection
,
288 DCHECK(io_thread_
->message_loop_proxy()->BelongsToCurrentThread());
290 HttpConnection
* http_connection
= FindConnection(connection
);
291 if (http_connection
== NULL
) {
292 LOG(WARNING
) << "Unknown connection.";
295 http_connection
->ReceiveData(std::string(data
, length
));
298 void EmbeddedTestServer::DidClose(StreamListenSocket
* connection
) {
299 DCHECK(io_thread_
->message_loop_proxy()->BelongsToCurrentThread());
301 HttpConnection
* http_connection
= FindConnection(connection
);
302 if (http_connection
== NULL
) {
303 LOG(WARNING
) << "Unknown connection.";
306 delete http_connection
;
307 connections_
.erase(connection
);
310 HttpConnection
* EmbeddedTestServer::FindConnection(
311 StreamListenSocket
* socket
) {
312 DCHECK(io_thread_
->message_loop_proxy()->BelongsToCurrentThread());
314 std::map
<StreamListenSocket
*, HttpConnection
*>::iterator it
=
315 connections_
.find(socket
);
316 if (it
== connections_
.end()) {
322 bool EmbeddedTestServer::PostTaskToIOThreadAndWait(
323 const base::Closure
& closure
) {
324 // Note that PostTaskAndReply below requires base::MessageLoopProxy::current()
325 // to return a loop for posting the reply task. However, in order to make
326 // EmbeddedTestServer universally usable, it needs to cope with the situation
327 // where it's running on a thread on which a message loop is not (yet)
328 // available or as has been destroyed already.
330 // To handle this situation, create temporary message loop to support the
331 // PostTaskAndReply operation if the current thread as no message loop.
332 scoped_ptr
<base::MessageLoop
> temporary_loop
;
333 if (!base::MessageLoop::current())
334 temporary_loop
.reset(new base::MessageLoop());
336 base::RunLoop run_loop
;
337 if (!io_thread_
->message_loop_proxy()->PostTaskAndReply(
338 FROM_HERE
, closure
, run_loop
.QuitClosure())) {
346 } // namespace test_server