| 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/memory/ref_counted.h" | 5 #include "base/memory/ref_counted.h" |
| 6 #include "base/memory/scoped_ptr.h" | 6 #include "base/memory/scoped_ptr.h" |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
| 8 #include "jingle/glue/channel_socket_adapter.h" | 8 #include "jingle/glue/channel_socket_adapter.h" |
| 9 #include "net/base/io_buffer.h" | 9 #include "net/base/io_buffer.h" |
| 10 #include "net/base/net_errors.h" | 10 #include "net/base/net_errors.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 class MockTransportChannel : public cricket::TransportChannel { | 30 class MockTransportChannel : public cricket::TransportChannel { |
| 31 public: | 31 public: |
| 32 MockTransportChannel() : cricket::TransportChannel(std::string(), 0) { | 32 MockTransportChannel() : cricket::TransportChannel(std::string(), 0) { |
| 33 set_writable(true); | 33 set_writable(true); |
| 34 set_readable(true); | 34 set_readable(true); |
| 35 } | 35 } |
| 36 | 36 |
| 37 MOCK_METHOD3(SendPacket, int(const char* data, size_t len, int flags)); | 37 MOCK_METHOD3(SendPacket, int(const char* data, size_t len, int flags)); |
| 38 MOCK_METHOD2(SetOption, int(talk_base::Socket::Option opt, int value)); | 38 MOCK_METHOD2(SetOption, int(talk_base::Socket::Option opt, int value)); |
| 39 MOCK_METHOD0(GetError, int()); | 39 MOCK_METHOD0(GetError, int()); |
| 40 MOCK_CONST_METHOD0(GetRole, cricket::TransportRole()); | 40 MOCK_CONST_METHOD0(GetIceRole, cricket::IceRole()); |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 class TransportChannelSocketAdapterTest : public testing::Test { | 43 class TransportChannelSocketAdapterTest : public testing::Test { |
| 44 public: | 44 public: |
| 45 TransportChannelSocketAdapterTest() | 45 TransportChannelSocketAdapterTest() |
| 46 : callback_(base::Bind(&TransportChannelSocketAdapterTest::Callback, | 46 : callback_(base::Bind(&TransportChannelSocketAdapterTest::Callback, |
| 47 base::Unretained(this))), | 47 base::Unretained(this))), |
| 48 callback_result_(0) { | 48 callback_result_(0) { |
| 49 } | 49 } |
| 50 | 50 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 .WillOnce(Return(SOCKET_ERROR)); | 110 .WillOnce(Return(SOCKET_ERROR)); |
| 111 | 111 |
| 112 EXPECT_CALL(channel_, GetError()) | 112 EXPECT_CALL(channel_, GetError()) |
| 113 .WillOnce(Return(EWOULDBLOCK)); | 113 .WillOnce(Return(EWOULDBLOCK)); |
| 114 | 114 |
| 115 int result = target_->Write(buffer.get(), kTestDataSize, callback_); | 115 int result = target_->Write(buffer.get(), kTestDataSize, callback_); |
| 116 ASSERT_EQ(net::OK, result); | 116 ASSERT_EQ(net::OK, result); |
| 117 } | 117 } |
| 118 | 118 |
| 119 } // namespace jingle_glue | 119 } // namespace jingle_glue |
| OLD | NEW |