| OLD | NEW |
| 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 #ifndef WEBRTC_BASE_GUNIT_H_ | 11 #ifndef WEBRTC_BASE_GUNIT_H_ |
| 12 #define WEBRTC_BASE_GUNIT_H_ | 12 #define WEBRTC_BASE_GUNIT_H_ |
| 13 | 13 |
| 14 #include "webrtc/base/fakeclock.h" | 14 #include "webrtc/base/fakeclock.h" |
| 15 #include "webrtc/base/logging.h" | 15 #include "webrtc/base/logging.h" |
| 16 #include "webrtc/base/thread.h" | 16 #include "webrtc/base/thread.h" |
| 17 #if defined(GTEST_RELATIVE_PATH) | 17 #if defined(GTEST_RELATIVE_PATH) |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 19 #else | 19 #else |
| 20 #include "testing/base/public/gunit.h" | 20 #include "testing/base/public/gunit.h" |
| 21 #endif | 21 #endif |
| 22 | 22 |
| 23 // Wait until "ex" is true, or "timeout" expires. | 23 // Wait until "ex" is true, or "timeout" expires. |
| 24 #define WAIT(ex, timeout) \ | 24 #define WAIT(ex, timeout) \ |
| 25 for (int64_t start = rtc::SystemTimeMillis(); \ | 25 for (int64_t start = rtc::SystemTimeMillis(); \ |
| 26 !(ex) && rtc::SystemTimeMillis() < start + timeout;) { \ | 26 !(ex) && rtc::SystemTimeMillis() < start + (timeout);) { \ |
| 27 rtc::Thread::Current()->ProcessMessages(0); \ | 27 rtc::Thread::Current()->ProcessMessages(0); \ |
| 28 rtc::Thread::Current()->SleepMs(1); \ | 28 rtc::Thread::Current()->SleepMs(1); \ |
| 29 } | 29 } |
| 30 | 30 |
| 31 // This returns the result of the test in res, so that we don't re-evaluate | 31 // This returns the result of the test in res, so that we don't re-evaluate |
| 32 // the expression in the XXXX_WAIT macros below, since that causes problems | 32 // the expression in the XXXX_WAIT macros below, since that causes problems |
| 33 // when the expression is only true the first time you check it. | 33 // when the expression is only true the first time you check it. |
| 34 #define WAIT_(ex, timeout, res) \ | 34 #define WAIT_(ex, timeout, res) \ |
| 35 do { \ | 35 do { \ |
| 36 int64_t start = rtc::SystemTimeMillis(); \ | 36 int64_t start = rtc::SystemTimeMillis(); \ |
| 37 res = (ex); \ | 37 res = (ex); \ |
| 38 while (!res && rtc::SystemTimeMillis() < start + timeout) { \ | 38 while (!res && rtc::SystemTimeMillis() < start + (timeout)) { \ |
| 39 rtc::Thread::Current()->ProcessMessages(0); \ | 39 rtc::Thread::Current()->ProcessMessages(0); \ |
| 40 rtc::Thread::Current()->SleepMs(1); \ | 40 rtc::Thread::Current()->SleepMs(1); \ |
| 41 res = (ex); \ | 41 res = (ex); \ |
| 42 } \ | 42 } \ |
| 43 } while (0) | 43 } while (0) |
| 44 | 44 |
| 45 // The typical EXPECT_XXXX and ASSERT_XXXXs, but done until true or a timeout. | 45 // The typical EXPECT_XXXX and ASSERT_XXXXs, but done until true or a timeout. |
| 46 #define EXPECT_TRUE_WAIT(ex, timeout) \ | 46 #define EXPECT_TRUE_WAIT(ex, timeout) \ |
| 47 do { \ | 47 do { \ |
| 48 bool res; \ | 48 bool res; \ |
| 49 WAIT_(ex, timeout, res); \ | 49 WAIT_(ex, timeout, res); \ |
| 50 if (!res) EXPECT_TRUE(ex); \ | 50 if (!res) EXPECT_TRUE(ex); \ |
| 51 } while (0) | 51 } while (0) |
| 52 | 52 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 67 #define ASSERT_EQ_WAIT(v1, v2, timeout) \ | 67 #define ASSERT_EQ_WAIT(v1, v2, timeout) \ |
| 68 do { \ | 68 do { \ |
| 69 bool res; \ | 69 bool res; \ |
| 70 WAIT_(v1 == v2, timeout, res); \ | 70 WAIT_(v1 == v2, timeout, res); \ |
| 71 if (!res) ASSERT_EQ(v1, v2); \ | 71 if (!res) ASSERT_EQ(v1, v2); \ |
| 72 } while (0) | 72 } while (0) |
| 73 | 73 |
| 74 // Version with a "soft" timeout and a margin. This logs if the timeout is | 74 // Version with a "soft" timeout and a margin. This logs if the timeout is |
| 75 // exceeded, but it only fails if the expression still isn't true after the | 75 // exceeded, but it only fails if the expression still isn't true after the |
| 76 // margin time passes. | 76 // margin time passes. |
| 77 #define EXPECT_TRUE_WAIT_MARGIN(ex, timeout, margin) \ | 77 #define EXPECT_TRUE_WAIT_MARGIN(ex, timeout, margin) \ |
| 78 do { \ | 78 do { \ |
| 79 bool res; \ | 79 bool res; \ |
| 80 WAIT_(ex, timeout, res); \ | 80 WAIT_(ex, timeout, res); \ |
| 81 if (res) { \ | 81 if (res) { \ |
| 82 break; \ | 82 break; \ |
| 83 } \ | 83 } \ |
| 84 LOG(LS_WARNING) << "Expression " << #ex << " still not true after " << \ | 84 LOG(LS_WARNING) << "Expression " << #ex << " still not true after " \ |
| 85 timeout << "ms; waiting an additional " << margin << "ms"; \ | 85 << (timeout) << "ms; waiting an additional " << margin \ |
| 86 WAIT_(ex, margin, res); \ | 86 << "ms"; \ |
| 87 if (!res) { \ | 87 WAIT_(ex, margin, res); \ |
| 88 EXPECT_TRUE(ex); \ | 88 if (!res) { \ |
| 89 } \ | 89 EXPECT_TRUE(ex); \ |
| 90 } \ |
| 90 } while (0) | 91 } while (0) |
| 91 | 92 |
| 92 // Wait until "ex" is true, or "timeout" expires, using fake clock where | 93 // Wait until "ex" is true, or "timeout" expires, using fake clock where |
| 93 // messages are processed every millisecond. | 94 // messages are processed every millisecond. |
| 94 #define SIMULATED_WAIT(ex, timeout, clock) \ | 95 #define SIMULATED_WAIT(ex, timeout, clock) \ |
| 95 for (int64_t start = rtc::TimeMillis(); \ | 96 for (int64_t start = rtc::TimeMillis(); \ |
| 96 !(ex) && rtc::TimeMillis() < start + timeout;) { \ | 97 !(ex) && rtc::TimeMillis() < start + (timeout);) { \ |
| 97 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1)); \ | 98 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1)); \ |
| 98 } | 99 } |
| 99 | 100 |
| 100 // This returns the result of the test in res, so that we don't re-evaluate | 101 // This returns the result of the test in res, so that we don't re-evaluate |
| 101 // the expression in the XXXX_WAIT macros below, since that causes problems | 102 // the expression in the XXXX_WAIT macros below, since that causes problems |
| 102 // when the expression is only true the first time you check it. | 103 // when the expression is only true the first time you check it. |
| 103 #define SIMULATED_WAIT_(ex, timeout, res, clock) \ | 104 #define SIMULATED_WAIT_(ex, timeout, res, clock) \ |
| 104 do { \ | 105 do { \ |
| 105 int64_t start = rtc::TimeMillis(); \ | 106 int64_t start = rtc::TimeMillis(); \ |
| 106 res = (ex); \ | 107 res = (ex); \ |
| 107 while (!res && rtc::TimeMillis() < start + timeout) { \ | 108 while (!res && rtc::TimeMillis() < start + (timeout)) { \ |
| 108 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1)); \ | 109 clock.AdvanceTime(rtc::TimeDelta::FromMilliseconds(1)); \ |
| 109 res = (ex); \ | 110 res = (ex); \ |
| 110 } \ | 111 } \ |
| 111 } while (0) | 112 } while (0) |
| 112 | 113 |
| 113 // The typical EXPECT_XXXX, but done until true or a timeout with a fake clock. | 114 // The typical EXPECT_XXXX, but done until true or a timeout with a fake clock. |
| 114 #define EXPECT_TRUE_SIMULATED_WAIT(ex, timeout, clock) \ | 115 #define EXPECT_TRUE_SIMULATED_WAIT(ex, timeout, clock) \ |
| 115 do { \ | 116 do { \ |
| 116 bool res; \ | 117 bool res; \ |
| 117 SIMULATED_WAIT_(ex, timeout, res, clock); \ | 118 SIMULATED_WAIT_(ex, timeout, res, clock); \ |
| 118 if (!res) { \ | 119 if (!res) { \ |
| 119 EXPECT_TRUE(ex); \ | 120 EXPECT_TRUE(ex); \ |
| 120 } \ | 121 } \ |
| 121 } while (0) | 122 } while (0) |
| 122 | 123 |
| 123 #define EXPECT_EQ_SIMULATED_WAIT(v1, v2, timeout, clock) \ | 124 #define EXPECT_EQ_SIMULATED_WAIT(v1, v2, timeout, clock) \ |
| 124 do { \ | 125 do { \ |
| 125 bool res; \ | 126 bool res; \ |
| 126 SIMULATED_WAIT_(v1 == v2, timeout, res, clock); \ | 127 SIMULATED_WAIT_(v1 == v2, timeout, res, clock); \ |
| 127 if (!res) { \ | 128 if (!res) { \ |
| 128 EXPECT_EQ(v1, v2); \ | 129 EXPECT_EQ(v1, v2); \ |
| 129 } \ | 130 } \ |
| 130 } while (0) | 131 } while (0) |
| 131 | 132 |
| 133 #define ASSERT_TRUE_SIMULATED_WAIT(ex, timeout, clock) \ |
| 134 do { \ |
| 135 bool res; \ |
| 136 SIMULATED_WAIT_(ex, timeout, res, clock); \ |
| 137 if (!res) \ |
| 138 ASSERT_TRUE(ex); \ |
| 139 } while (0) |
| 140 |
| 141 #define ASSERT_EQ_SIMULATED_WAIT(v1, v2, timeout, clock) \ |
| 142 do { \ |
| 143 bool res; \ |
| 144 SIMULATED_WAIT_(v1 == v2, timeout, res, clock); \ |
| 145 if (!res) \ |
| 146 ASSERT_EQ(v1, v2); \ |
| 147 } while (0) |
| 148 |
| 132 #endif // WEBRTC_BASE_GUNIT_H_ | 149 #endif // WEBRTC_BASE_GUNIT_H_ |
| OLD | NEW |