| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 "base/files/file_util.h" | 5 #include "base/files/file_util.h" |
| 6 #include "base/files/scoped_temp_dir.h" | 6 #include "base/files/scoped_temp_dir.h" |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
| 8 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
| 9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "content/browser/browser_thread_impl.h" | 10 #include "content/browser/browser_thread_impl.h" |
| 11 #include "content/public/browser/devtools_http_handler.h" | 11 #include "content/public/browser/devtools_http_handler.h" |
| 12 #include "content/public/browser/devtools_http_handler_delegate.h" | 12 #include "content/public/browser/devtools_http_handler_delegate.h" |
| 13 #include "content/public/browser/devtools_target.h" | 13 #include "content/public/browser/devtools_target.h" |
| 14 #include "content/public/test/test_utils.h" |
| 14 #include "net/base/ip_endpoint.h" | 15 #include "net/base/ip_endpoint.h" |
| 15 #include "net/base/net_errors.h" | 16 #include "net/base/net_errors.h" |
| 16 #include "net/socket/server_socket.h" | 17 #include "net/socket/server_socket.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 19 |
| 19 namespace content { | 20 namespace content { |
| 20 namespace { | 21 namespace { |
| 21 | 22 |
| 22 const int kDummyPort = 4321; | 23 const int kDummyPort = 4321; |
| 23 const base::FilePath::CharType kDevToolsActivePortFileName[] = | 24 const base::FilePath::CharType kDevToolsActivePortFileName[] = |
| (...skipping 20 matching lines...) Expand all Loading... |
| 44 *address = net::IPEndPoint(number, kDummyPort); | 45 *address = net::IPEndPoint(number, kDummyPort); |
| 45 return net::OK; | 46 return net::OK; |
| 46 } | 47 } |
| 47 | 48 |
| 48 int Accept(scoped_ptr<net::StreamSocket>* socket, | 49 int Accept(scoped_ptr<net::StreamSocket>* socket, |
| 49 const net::CompletionCallback& callback) override { | 50 const net::CompletionCallback& callback) override { |
| 50 return net::ERR_IO_PENDING; | 51 return net::ERR_IO_PENDING; |
| 51 } | 52 } |
| 52 }; | 53 }; |
| 53 | 54 |
| 55 void QuitFromHandlerThread(const base::Closure& quit_closure) { |
| 56 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, quit_closure); |
| 57 } |
| 58 |
| 54 class DummyServerSocketFactory | 59 class DummyServerSocketFactory |
| 55 : public DevToolsHttpHandler::ServerSocketFactory { | 60 : public DevToolsHttpHandler::ServerSocketFactory { |
| 56 public: | 61 public: |
| 57 DummyServerSocketFactory(base::Closure quit_closure_1, | 62 DummyServerSocketFactory(base::Closure quit_closure_1, |
| 58 base::Closure quit_closure_2) | 63 base::Closure quit_closure_2) |
| 59 : DevToolsHttpHandler::ServerSocketFactory("", 0, 0), | 64 : DevToolsHttpHandler::ServerSocketFactory("", 0, 0), |
| 60 quit_closure_1_(quit_closure_1), | 65 quit_closure_1_(quit_closure_1), |
| 61 quit_closure_2_(quit_closure_2) {} | 66 quit_closure_2_(quit_closure_2) {} |
| 62 | 67 |
| 63 ~DummyServerSocketFactory() override { | 68 ~DummyServerSocketFactory() override { |
| 64 BrowserThread::PostTask( | 69 BrowserThread::PostTask( |
| 65 BrowserThread::UI, FROM_HERE, quit_closure_2_); | 70 BrowserThread::UI, FROM_HERE, quit_closure_2_); |
| 66 } | 71 } |
| 67 | 72 |
| 68 private: | 73 protected: |
| 69 scoped_ptr<net::ServerSocket> Create() const override { | 74 scoped_ptr<net::ServerSocket> Create() const override { |
| 70 BrowserThread::PostTask( | 75 base::MessageLoopProxy::current()->PostTask(FROM_HERE, |
| 71 BrowserThread::UI, FROM_HERE, quit_closure_1_); | 76 base::Bind(&QuitFromHandlerThread, quit_closure_1_)); |
| 72 return scoped_ptr<net::ServerSocket>(new DummyServerSocket()); | 77 return scoped_ptr<net::ServerSocket>(new DummyServerSocket()); |
| 73 } | 78 } |
| 74 | 79 |
| 75 base::Closure quit_closure_1_; | 80 base::Closure quit_closure_1_; |
| 76 base::Closure quit_closure_2_; | 81 base::Closure quit_closure_2_; |
| 77 }; | 82 }; |
| 78 | 83 |
| 84 class FailingServerSocketFactory : public DummyServerSocketFactory { |
| 85 public: |
| 86 FailingServerSocketFactory(const base::Closure& quit_closure_1, |
| 87 const base::Closure& quit_closure_2) |
| 88 : DummyServerSocketFactory(quit_closure_1, quit_closure_2) { |
| 89 } |
| 90 |
| 91 private: |
| 92 scoped_ptr<net::ServerSocket> Create() const override { |
| 93 base::MessageLoopProxy::current()->PostTask(FROM_HERE, |
| 94 base::Bind(&QuitFromHandlerThread, quit_closure_1_)); |
| 95 return nullptr; |
| 96 } |
| 97 }; |
| 98 |
| 79 class DummyDelegate : public DevToolsHttpHandlerDelegate { | 99 class DummyDelegate : public DevToolsHttpHandlerDelegate { |
| 80 public: | 100 public: |
| 81 std::string GetDiscoveryPageHTML() override { return std::string(); } | 101 std::string GetDiscoveryPageHTML() override { return std::string(); } |
| 82 | 102 |
| 83 bool BundlesFrontendResources() override { return true; } | 103 bool BundlesFrontendResources() override { return true; } |
| 84 | 104 |
| 85 base::FilePath GetDebugFrontendDir() override { return base::FilePath(); } | 105 base::FilePath GetDebugFrontendDir() override { return base::FilePath(); } |
| 86 | 106 |
| 87 scoped_ptr<net::StreamListenSocket> CreateSocketForTethering( | 107 scoped_ptr<net::StreamListenSocket> CreateSocketForTethering( |
| 88 net::StreamListenSocket::Delegate* delegate, | 108 net::StreamListenSocket::Delegate* delegate, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 111 base::MessageLoopForIO message_loop_; | 131 base::MessageLoopForIO message_loop_; |
| 112 BrowserThreadImpl ui_thread_; | 132 BrowserThreadImpl ui_thread_; |
| 113 scoped_ptr<BrowserThreadImpl> file_thread_; | 133 scoped_ptr<BrowserThreadImpl> file_thread_; |
| 114 }; | 134 }; |
| 115 | 135 |
| 116 TEST_F(DevToolsHttpHandlerTest, TestStartStop) { | 136 TEST_F(DevToolsHttpHandlerTest, TestStartStop) { |
| 117 base::RunLoop run_loop, run_loop_2; | 137 base::RunLoop run_loop, run_loop_2; |
| 118 scoped_ptr<DevToolsHttpHandler::ServerSocketFactory> factory( | 138 scoped_ptr<DevToolsHttpHandler::ServerSocketFactory> factory( |
| 119 new DummyServerSocketFactory(run_loop.QuitClosure(), | 139 new DummyServerSocketFactory(run_loop.QuitClosure(), |
| 120 run_loop_2.QuitClosure())); | 140 run_loop_2.QuitClosure())); |
| 121 content::DevToolsHttpHandler* devtools_http_handler_ = | 141 content::DevToolsHttpHandler* devtools_http_handler = |
| 122 content::DevToolsHttpHandler::Start(factory.Pass(), | 142 content::DevToolsHttpHandler::Start(factory.Pass(), |
| 123 std::string(), | 143 std::string(), |
| 124 new DummyDelegate(), | 144 new DummyDelegate(), |
| 145 base::FilePath()); |
| 146 // Our dummy socket factory will post a quit message once the server will |
| 147 // become ready. |
| 148 run_loop.Run(); |
| 149 devtools_http_handler->Stop(); |
| 150 // Make sure the handler actually stops. |
| 151 run_loop_2.Run(); |
| 152 } |
| 153 |
| 154 TEST_F(DevToolsHttpHandlerTest, TestServerSocketFailed) { |
| 155 base::RunLoop run_loop, run_loop_2; |
| 156 scoped_ptr<DevToolsHttpHandler::ServerSocketFactory> factory( |
| 157 new FailingServerSocketFactory(run_loop.QuitClosure(), |
| 158 run_loop_2.QuitClosure())); |
| 159 content::DevToolsHttpHandler* devtools_http_handler = |
| 160 content::DevToolsHttpHandler::Start(factory.Pass(), |
| 161 std::string(), |
| 162 new DummyDelegate(), |
| 125 base::FilePath()); | 163 base::FilePath()); |
| 126 // Our dummy socket factory will post a quit message once the server will | 164 // Our dummy socket factory will post a quit message once the server will |
| 127 // become ready. | 165 // become ready. |
| 128 run_loop.Run(); | 166 run_loop.Run(); |
| 129 devtools_http_handler_->Stop(); | 167 for (int i = 0; i < 5; i++) { |
| 168 RunAllPendingInMessageLoop(BrowserThread::UI); |
| 169 RunAllPendingInMessageLoop(BrowserThread::FILE); |
| 170 } |
| 171 devtools_http_handler->Stop(); |
| 130 // Make sure the handler actually stops. | 172 // Make sure the handler actually stops. |
| 131 run_loop_2.Run(); | 173 run_loop_2.Run(); |
| 132 } | 174 } |
| 133 | 175 |
| 176 |
| 134 TEST_F(DevToolsHttpHandlerTest, TestDevToolsActivePort) { | 177 TEST_F(DevToolsHttpHandlerTest, TestDevToolsActivePort) { |
| 135 base::RunLoop run_loop, run_loop_2; | 178 base::RunLoop run_loop, run_loop_2; |
| 136 base::ScopedTempDir temp_dir; | 179 base::ScopedTempDir temp_dir; |
| 137 EXPECT_TRUE(temp_dir.CreateUniqueTempDir()); | 180 EXPECT_TRUE(temp_dir.CreateUniqueTempDir()); |
| 138 scoped_ptr<DevToolsHttpHandler::ServerSocketFactory> factory( | 181 scoped_ptr<DevToolsHttpHandler::ServerSocketFactory> factory( |
| 139 new DummyServerSocketFactory(run_loop.QuitClosure(), | 182 new DummyServerSocketFactory(run_loop.QuitClosure(), |
| 140 run_loop_2.QuitClosure())); | 183 run_loop_2.QuitClosure())); |
| 141 content::DevToolsHttpHandler* devtools_http_handler_ = | 184 content::DevToolsHttpHandler* devtools_http_handler = |
| 142 content::DevToolsHttpHandler::Start(factory.Pass(), | 185 content::DevToolsHttpHandler::Start(factory.Pass(), |
| 143 std::string(), | 186 std::string(), |
| 144 new DummyDelegate(), | 187 new DummyDelegate(), |
| 145 temp_dir.path()); | 188 temp_dir.path()); |
| 146 // Our dummy socket factory will post a quit message once the server will | 189 // Our dummy socket factory will post a quit message once the server will |
| 147 // become ready. | 190 // become ready. |
| 148 run_loop.Run(); | 191 run_loop.Run(); |
| 149 devtools_http_handler_->Stop(); | 192 devtools_http_handler->Stop(); |
| 150 // Make sure the handler actually stops. | 193 // Make sure the handler actually stops. |
| 151 run_loop_2.Run(); | 194 run_loop_2.Run(); |
| 152 | 195 |
| 153 // Now make sure the DevToolsActivePort was written into the | 196 // Now make sure the DevToolsActivePort was written into the |
| 154 // temporary directory and its contents are as expected. | 197 // temporary directory and its contents are as expected. |
| 155 base::FilePath active_port_file = temp_dir.path().Append( | 198 base::FilePath active_port_file = temp_dir.path().Append( |
| 156 kDevToolsActivePortFileName); | 199 kDevToolsActivePortFileName); |
| 157 EXPECT_TRUE(base::PathExists(active_port_file)); | 200 EXPECT_TRUE(base::PathExists(active_port_file)); |
| 158 std::string file_contents; | 201 std::string file_contents; |
| 159 EXPECT_TRUE(base::ReadFileToString(active_port_file, &file_contents)); | 202 EXPECT_TRUE(base::ReadFileToString(active_port_file, &file_contents)); |
| 160 int port = 0; | 203 int port = 0; |
| 161 EXPECT_TRUE(base::StringToInt(file_contents, &port)); | 204 EXPECT_TRUE(base::StringToInt(file_contents, &port)); |
| 162 EXPECT_EQ(kDummyPort, port); | 205 EXPECT_EQ(kDummyPort, port); |
| 163 } | 206 } |
| 164 | 207 |
| 165 } // namespace content | 208 } // namespace content |
| OLD | NEW |