Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(342)

Unified Diff: net/socket/socket_test_util.cc

Issue 384024: There was confusion in the mock socket classes due to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/socket_test_util.h ('k') | net/socket/socks5_client_socket_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/socket_test_util.cc
===================================================================
--- net/socket/socket_test_util.cc (revision 31569)
+++ net/socket/socket_test_util.cc (working copy)
@@ -62,9 +62,9 @@
}
MockTCPClientSocket::MockTCPClientSocket(const net::AddressList& addresses,
- net::MockSocket* socket)
+ net::SocketDataProvider* data)
: addresses_(addresses),
- data_(socket),
+ data_(data),
read_offset_(0),
read_data_(true, net::ERR_UNEXPECTED),
need_read_data_(true) {
@@ -163,9 +163,9 @@
net::ClientSocket* transport_socket,
const std::string& hostname,
const net::SSLConfig& ssl_config,
- net::MockSSLSocket* socket)
+ net::SSLSocketDataProvider* data)
: transport_(transport_socket),
- data_(socket) {
+ data_(data) {
DCHECK(data_);
}
@@ -211,11 +211,11 @@
return transport_->Write(buf, buf_len, callback);
}
-MockRead StaticMockSocket::GetNextRead() {
+MockRead StaticSocketDataProvider::GetNextRead() {
return reads_[read_index_++];
}
-MockWriteResult StaticMockSocket::OnWrite(const std::string& data) {
+MockWriteResult StaticSocketDataProvider::OnWrite(const std::string& data) {
if (!writes_) {
// Not using mock writes; succeed synchronously.
return MockWriteResult(false, data.length());
@@ -236,17 +236,17 @@
return MockWriteResult(w->async, result);
}
-void StaticMockSocket::Reset() {
+void StaticSocketDataProvider::Reset() {
read_index_ = 0;
write_index_ = 0;
}
-DynamicMockSocket::DynamicMockSocket()
+DynamicSocketDataProvider::DynamicSocketDataProvider()
: short_read_limit_(0),
allow_unconsumed_reads_(false) {
}
-MockRead DynamicMockSocket::GetNextRead() {
+MockRead DynamicSocketDataProvider::GetNextRead() {
if (reads_.empty())
return MockRead(true, ERR_UNEXPECTED);
MockRead result = reads_.front();
@@ -260,28 +260,30 @@
return result;
}
-void DynamicMockSocket::Reset() {
+void DynamicSocketDataProvider::Reset() {
reads_.clear();
}
-void DynamicMockSocket::SimulateRead(const char* data) {
+void DynamicSocketDataProvider::SimulateRead(const char* data) {
if (!allow_unconsumed_reads_) {
EXPECT_TRUE(reads_.empty()) << "Unconsumed read: " << reads_.front().data;
}
reads_.push_back(MockRead(data));
}
-void MockClientSocketFactory::AddMockSocket(MockSocket* socket) {
- mock_sockets_.Add(socket);
+void MockClientSocketFactory::AddSocketDataProvider(
+ SocketDataProvider* data) {
+ mock_data_.Add(data);
}
-void MockClientSocketFactory::AddMockSSLSocket(MockSSLSocket* socket) {
- mock_ssl_sockets_.Add(socket);
+void MockClientSocketFactory::AddSSLSocketDataProvider(
+ SSLSocketDataProvider* data) {
+ mock_ssl_data_.Add(data);
}
void MockClientSocketFactory::ResetNextMockIndexes() {
- mock_sockets_.ResetNextIndex();
- mock_ssl_sockets_.ResetNextIndex();
+ mock_data_.ResetNextIndex();
+ mock_ssl_data_.ResetNextIndex();
}
MockTCPClientSocket* MockClientSocketFactory::GetMockTCPClientSocket(
@@ -297,7 +299,7 @@
ClientSocket* MockClientSocketFactory::CreateTCPClientSocket(
const AddressList& addresses) {
MockTCPClientSocket* socket =
- new MockTCPClientSocket(addresses, mock_sockets_.GetNext());
+ new MockTCPClientSocket(addresses, mock_data_.GetNext());
tcp_client_sockets_.push_back(socket);
return socket;
}
@@ -308,7 +310,7 @@
const SSLConfig& ssl_config) {
MockSSLClientSocket* socket =
new MockSSLClientSocket(transport_socket, hostname, ssl_config,
- mock_ssl_sockets_.GetNext());
+ mock_ssl_data_.GetNext());
ssl_client_sockets_.push_back(socket);
return socket;
}
« no previous file with comments | « net/socket/socket_test_util.h ('k') | net/socket/socks5_client_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698