henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
jbauch | 555604a | 2016-04-26 03:13:22 -0700 | [diff] [blame] | 11 | #include <memory> |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 12 | #include <string> |
| 13 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 14 | #include "rtc_base/asyncudpsocket.h" |
| 15 | #include "rtc_base/gunit.h" |
| 16 | #include "rtc_base/physicalsocketserver.h" |
| 17 | #include "rtc_base/virtualsocketserver.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 18 | |
| 19 | namespace rtc { |
| 20 | |
| 21 | class AsyncUdpSocketTest |
| 22 | : public testing::Test, |
| 23 | public sigslot::has_slots<> { |
| 24 | public: |
| 25 | AsyncUdpSocketTest() |
| 26 | : pss_(new rtc::PhysicalSocketServer), |
| 27 | vss_(new rtc::VirtualSocketServer(pss_.get())), |
| 28 | socket_(vss_->CreateAsyncSocket(SOCK_DGRAM)), |
| 29 | udp_socket_(new AsyncUDPSocket(socket_)), |
| 30 | ready_to_send_(false) { |
| 31 | udp_socket_->SignalReadyToSend.connect(this, |
| 32 | &AsyncUdpSocketTest::OnReadyToSend); |
| 33 | } |
| 34 | |
| 35 | void OnReadyToSend(rtc::AsyncPacketSocket* socket) { |
| 36 | ready_to_send_ = true; |
| 37 | } |
| 38 | |
| 39 | protected: |
jbauch | 555604a | 2016-04-26 03:13:22 -0700 | [diff] [blame] | 40 | std::unique_ptr<PhysicalSocketServer> pss_; |
| 41 | std::unique_ptr<VirtualSocketServer> vss_; |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 42 | AsyncSocket* socket_; |
jbauch | 555604a | 2016-04-26 03:13:22 -0700 | [diff] [blame] | 43 | std::unique_ptr<AsyncUDPSocket> udp_socket_; |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 44 | bool ready_to_send_; |
| 45 | }; |
| 46 | |
| 47 | TEST_F(AsyncUdpSocketTest, OnWriteEvent) { |
| 48 | EXPECT_FALSE(ready_to_send_); |
| 49 | socket_->SignalWriteEvent(socket_); |
| 50 | EXPECT_TRUE(ready_to_send_); |
| 51 | } |
| 52 | |
| 53 | } // namespace rtc |