henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 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 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 11 | #include "rtc_base/null_socket_server.h" |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 12 | |
| 13 | #include <stdint.h> |
Jonas Olsson | a4d8737 | 2019-07-05 17:08:33 | [diff] [blame] | 14 | |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 15 | #include <memory> |
| 16 | |
Markus Handell | 9a21c49 | 2022-08-25 11:40:13 | [diff] [blame] | 17 | #include "api/units/time_delta.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 18 | #include "rtc_base/gunit.h" |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 19 | #include "rtc_base/thread.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 20 | #include "rtc_base/time_utils.h" |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 21 | #include "test/gtest.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 22 | |
| 23 | namespace rtc { |
| 24 | |
Danil Chapovalov | 1e6965a | 2022-09-05 09:27:57 | [diff] [blame] | 25 | TEST(NullSocketServerTest, WaitAndSet) { |
| 26 | NullSocketServer ss; |
tommi | e725159 | 2017-07-14 21:44:46 | [diff] [blame] | 27 | auto thread = Thread::Create(); |
| 28 | EXPECT_TRUE(thread->Start()); |
Danil Chapovalov | 1e6965a | 2022-09-05 09:27:57 | [diff] [blame] | 29 | thread->PostTask([&ss] { ss.WakeUp(); }); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 30 | // The process_io will be ignored. |
| 31 | const bool process_io = true; |
Danil Chapovalov | 1e6965a | 2022-09-05 09:27:57 | [diff] [blame] | 32 | EXPECT_TRUE_WAIT(ss.Wait(SocketServer::kForever, process_io), 5'000); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 33 | } |
| 34 | |
Danil Chapovalov | 1e6965a | 2022-09-05 09:27:57 | [diff] [blame] | 35 | TEST(NullSocketServerTest, TestWait) { |
| 36 | NullSocketServer ss; |
Honghai Zhang | 82d7862 | 2016-05-06 18:29:15 | [diff] [blame] | 37 | int64_t start = TimeMillis(); |
Danil Chapovalov | 1e6965a | 2022-09-05 09:27:57 | [diff] [blame] | 38 | ss.Wait(webrtc::TimeDelta::Millis(200), true); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 39 | // The actual wait time is dependent on the resolution of the timer used by |
| 40 | // the Event class. Allow for the event to signal ~20ms early. |
| 41 | EXPECT_GE(TimeSince(start), 180); |
| 42 | } |
| 43 | |
| 44 | } // namespace rtc |