1 // Copyright (c) 2013 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 #ifndef CHROME_TEST_CHROMEDRIVER_NET_TEST_HTTP_SERVER_H_
6 #define CHROME_TEST_CHROMEDRIVER_NET_TEST_HTTP_SERVER_H_
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/synchronization/lock.h"
14 #include "base/synchronization/waitable_event.h"
15 #include "base/threading/thread.h"
16 #include "net/server/http_server.h"
23 // HTTP server for web socket testing purposes that runs on its own thread.
24 // All public methods are thread safe and may be called on any thread, unless
26 class TestHttpServer
: public net::HttpServer::Delegate
{
28 enum WebSocketRequestAction
{
34 enum WebSocketMessageAction
{
39 // Creates an http server. By default it accepts WebSockets and echoes
40 // WebSocket messages back.
42 virtual ~TestHttpServer();
44 // Starts the server. Returns whether it was started successfully.
47 // Stops the server. May be called multiple times.
50 // Waits until all open connections are closed. Returns true if all
51 // connections are closed, or false if a timeout is exceeded.
52 bool WaitForConnectionsToClose();
54 // Sets the action to perform when receiving a WebSocket connect request.
55 void SetRequestAction(WebSocketRequestAction action
);
57 // Sets the action to perform when receiving a WebSocket message.
58 void SetMessageAction(WebSocketMessageAction action
);
60 // Returns the web socket URL that points to the server.
61 GURL
web_socket_url() const;
63 // Overridden from net::HttpServer::Delegate:
64 virtual void OnConnect(int connection_id
) override
;
65 virtual void OnHttpRequest(int connection_id
,
66 const net::HttpServerRequestInfo
& info
) override
{}
67 virtual void OnWebSocketRequest(
69 const net::HttpServerRequestInfo
& info
) override
;
70 virtual void OnWebSocketMessage(int connection_id
,
71 const std::string
& data
) override
;
72 virtual void OnClose(int connection_id
) override
;
75 void StartOnServerThread(bool* success
, base::WaitableEvent
* event
);
76 void StopOnServerThread(base::WaitableEvent
* event
);
80 // Access only on the server thread.
81 scoped_ptr
<net::HttpServer
> server_
;
83 // Access only on the server thread.
84 std::set
<int> connections_
;
86 base::WaitableEvent all_closed_event_
;
88 // Protects |web_socket_url_|.
89 mutable base::Lock url_lock_
;
92 // Protects the action flags.
93 base::Lock action_lock_
;
94 WebSocketRequestAction request_action_
;
95 WebSocketMessageAction message_action_
;
97 DISALLOW_COPY_AND_ASSIGN(TestHttpServer
);
100 #endif // CHROME_TEST_CHROMEDRIVER_NET_TEST_HTTP_SERVER_H_