| 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 // This test suite uses SSLClientSocket to test the implementation of | 5 // This test suite uses SSLClientSocket to test the implementation of |
| 6 // SSLServerSocket. In order to establish connections between the sockets | 6 // SSLServerSocket. In order to establish connections between the sockets |
| 7 // we need two additional classes: | 7 // we need two additional classes: |
| 8 // 1. FakeSocket | 8 // 1. FakeSocket |
| 9 // Connects SSL socket to FakeDataChannel. This class is just a stub. | 9 // Connects SSL socket to FakeDataChannel. This class is just a stub. |
| 10 // | 10 // |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #include "base/callback_helpers.h" | 27 #include "base/callback_helpers.h" |
| 28 #include "base/compiler_specific.h" | 28 #include "base/compiler_specific.h" |
| 29 #include "base/files/file_path.h" | 29 #include "base/files/file_path.h" |
| 30 #include "base/files/file_util.h" | 30 #include "base/files/file_util.h" |
| 31 #include "base/location.h" | 31 #include "base/location.h" |
| 32 #include "base/logging.h" | 32 #include "base/logging.h" |
| 33 #include "base/macros.h" | 33 #include "base/macros.h" |
| 34 #include "base/message_loop/message_loop.h" | 34 #include "base/message_loop/message_loop.h" |
| 35 #include "base/single_thread_task_runner.h" | 35 #include "base/single_thread_task_runner.h" |
| 36 #include "base/thread_task_runner_handle.h" | 36 #include "base/threading/thread_task_runner_handle.h" |
| 37 #include "build/build_config.h" | 37 #include "build/build_config.h" |
| 38 #include "crypto/nss_util.h" | 38 #include "crypto/nss_util.h" |
| 39 #include "crypto/rsa_private_key.h" | 39 #include "crypto/rsa_private_key.h" |
| 40 #include "crypto/scoped_openssl_types.h" | 40 #include "crypto/scoped_openssl_types.h" |
| 41 #include "crypto/signature_creator.h" | 41 #include "crypto/signature_creator.h" |
| 42 #include "net/base/address_list.h" | 42 #include "net/base/address_list.h" |
| 43 #include "net/base/completion_callback.h" | 43 #include "net/base/completion_callback.h" |
| 44 #include "net/base/host_port_pair.h" | 44 #include "net/base/host_port_pair.h" |
| 45 #include "net/base/io_buffer.h" | 45 #include "net/base/io_buffer.h" |
| 46 #include "net/base/ip_address.h" | 46 #include "net/base/ip_address.h" |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 int server_ret = server_socket_->Handshake(handshake_callback.callback()); | 1066 int server_ret = server_socket_->Handshake(handshake_callback.callback()); |
| 1067 | 1067 |
| 1068 client_ret = connect_callback.GetResult(client_ret); | 1068 client_ret = connect_callback.GetResult(client_ret); |
| 1069 server_ret = handshake_callback.GetResult(server_ret); | 1069 server_ret = handshake_callback.GetResult(server_ret); |
| 1070 | 1070 |
| 1071 ASSERT_EQ(ERR_SSL_VERSION_OR_CIPHER_MISMATCH, client_ret); | 1071 ASSERT_EQ(ERR_SSL_VERSION_OR_CIPHER_MISMATCH, client_ret); |
| 1072 ASSERT_EQ(ERR_SSL_VERSION_OR_CIPHER_MISMATCH, server_ret); | 1072 ASSERT_EQ(ERR_SSL_VERSION_OR_CIPHER_MISMATCH, server_ret); |
| 1073 } | 1073 } |
| 1074 | 1074 |
| 1075 } // namespace net | 1075 } // namespace net |
| OLD | NEW |