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

Side by Side Diff: webrtc/base/asynctcpsocket_unittest.cc

Issue 2883313003: Remove VirtualSocketServer's dependency on PhysicalSocketServer. (Closed)
Patch Set: Created 3 years, 7 months 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/base/nat_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 13
14 #include "webrtc/base/asynctcpsocket.h" 14 #include "webrtc/base/asynctcpsocket.h"
15 #include "webrtc/base/gunit.h" 15 #include "webrtc/base/gunit.h"
16 #include "webrtc/base/physicalsocketserver.h"
17 #include "webrtc/base/virtualsocketserver.h" 16 #include "webrtc/base/virtualsocketserver.h"
18 17
19 namespace rtc { 18 namespace rtc {
20 19
21 class AsyncTCPSocketTest 20 class AsyncTCPSocketTest
22 : public testing::Test, 21 : public testing::Test,
23 public sigslot::has_slots<> { 22 public sigslot::has_slots<> {
24 public: 23 public:
25 AsyncTCPSocketTest() 24 AsyncTCPSocketTest()
26 : pss_(new rtc::PhysicalSocketServer), 25 : vss_(new rtc::VirtualSocketServer()),
27 vss_(new rtc::VirtualSocketServer(pss_.get())),
28 socket_(vss_->CreateAsyncSocket(SOCK_STREAM)), 26 socket_(vss_->CreateAsyncSocket(SOCK_STREAM)),
29 tcp_socket_(new AsyncTCPSocket(socket_, true)), 27 tcp_socket_(new AsyncTCPSocket(socket_, true)),
30 ready_to_send_(false) { 28 ready_to_send_(false) {
31 tcp_socket_->SignalReadyToSend.connect(this, 29 tcp_socket_->SignalReadyToSend.connect(this,
32 &AsyncTCPSocketTest::OnReadyToSend); 30 &AsyncTCPSocketTest::OnReadyToSend);
33 } 31 }
34 32
35 void OnReadyToSend(rtc::AsyncPacketSocket* socket) { 33 void OnReadyToSend(rtc::AsyncPacketSocket* socket) {
36 ready_to_send_ = true; 34 ready_to_send_ = true;
37 } 35 }
38 36
39 protected: 37 protected:
40 std::unique_ptr<PhysicalSocketServer> pss_;
41 std::unique_ptr<VirtualSocketServer> vss_; 38 std::unique_ptr<VirtualSocketServer> vss_;
42 AsyncSocket* socket_; 39 AsyncSocket* socket_;
43 std::unique_ptr<AsyncTCPSocket> tcp_socket_; 40 std::unique_ptr<AsyncTCPSocket> tcp_socket_;
44 bool ready_to_send_; 41 bool ready_to_send_;
45 }; 42 };
46 43
47 TEST_F(AsyncTCPSocketTest, OnWriteEvent) { 44 TEST_F(AsyncTCPSocketTest, OnWriteEvent) {
48 EXPECT_FALSE(ready_to_send_); 45 EXPECT_FALSE(ready_to_send_);
49 socket_->SignalWriteEvent(socket_); 46 socket_->SignalWriteEvent(socket_);
50 EXPECT_TRUE(ready_to_send_); 47 EXPECT_TRUE(ready_to_send_);
51 } 48 }
52 49
53 } // namespace rtc 50 } // namespace rtc
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/nat_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698