| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // End-to-end tests for WebSocket. | 5 // End-to-end tests for WebSocket. |
| 6 // | 6 // |
| 7 // A python server is (re)started for each test, which is moderately | 7 // A python server is (re)started for each test, which is moderately |
| 8 // inefficient. However, it makes these tests a good fit for scenarios which | 8 // inefficient. However, it makes these tests a good fit for scenarios which |
| 9 // require special server configurations. | 9 // require special server configurations. |
| 10 | 10 |
| 11 #include <stdint.h> | 11 #include <stdint.h> |
| 12 | 12 |
| 13 #include <memory> | 13 #include <memory> |
| 14 #include <string> | 14 #include <string> |
| 15 | 15 |
| 16 #include "base/bind.h" | 16 #include "base/bind.h" |
| 17 #include "base/bind_helpers.h" | 17 #include "base/bind_helpers.h" |
| 18 #include "base/callback.h" | 18 #include "base/callback.h" |
| 19 #include "base/location.h" | 19 #include "base/location.h" |
| 20 #include "base/macros.h" | 20 #include "base/macros.h" |
| 21 #include "base/memory/ptr_util.h" | 21 #include "base/memory/ptr_util.h" |
| 22 #include "base/run_loop.h" | 22 #include "base/run_loop.h" |
| 23 #include "base/single_thread_task_runner.h" | 23 #include "base/single_thread_task_runner.h" |
| 24 #include "base/strings/string_piece.h" | 24 #include "base/strings/string_piece.h" |
| 25 #include "base/threading/thread_task_runner_handle.h" | 25 #include "base/threading/thread_task_runner_handle.h" |
| 26 #include "net/base/auth.h" | 26 #include "net/base/auth.h" |
| 27 #include "net/base/proxy_delegate.h" | 27 #include "net/base/proxy_delegate.h" |
| 28 #include "net/base/test_data_directory.h" | |
| 29 #include "net/proxy/proxy_service.h" | 28 #include "net/proxy/proxy_service.h" |
| 30 #include "net/test/embedded_test_server/embedded_test_server.h" | 29 #include "net/test/embedded_test_server/embedded_test_server.h" |
| 31 #include "net/test/spawned_test_server/spawned_test_server.h" | 30 #include "net/test/spawned_test_server/spawned_test_server.h" |
| 31 #include "net/test/test_data_directory.h" |
| 32 #include "net/url_request/url_request_test_util.h" | 32 #include "net/url_request/url_request_test_util.h" |
| 33 #include "net/websockets/websocket_channel.h" | 33 #include "net/websockets/websocket_channel.h" |
| 34 #include "net/websockets/websocket_event_interface.h" | 34 #include "net/websockets/websocket_event_interface.h" |
| 35 #include "testing/gtest/include/gtest/gtest.h" | 35 #include "testing/gtest/include/gtest/gtest.h" |
| 36 #include "url/origin.h" | 36 #include "url/origin.h" |
| 37 | 37 |
| 38 namespace net { | 38 namespace net { |
| 39 | 39 |
| 40 namespace { | 40 namespace { |
| 41 | 41 |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 GURL ws_url = ws_server.GetURL("header-continuation"); | 510 GURL ws_url = ws_server.GetURL("header-continuation"); |
| 511 | 511 |
| 512 EXPECT_TRUE(ConnectAndWait(ws_url)); | 512 EXPECT_TRUE(ConnectAndWait(ws_url)); |
| 513 EXPECT_EQ("permessage-deflate; server_max_window_bits=10", | 513 EXPECT_EQ("permessage-deflate; server_max_window_bits=10", |
| 514 event_interface_->extensions()); | 514 event_interface_->extensions()); |
| 515 } | 515 } |
| 516 | 516 |
| 517 } // namespace | 517 } // namespace |
| 518 | 518 |
| 519 } // namespace net | 519 } // namespace net |
| OLD | NEW |