This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/master by this push:
new fcaf959 add test case for TimeoutCountDown (#7662)
fcaf959 is described below
commit fcaf959c562db69b922108c2fb081c765b00608f
Author: xiaoheng1 <[email protected]>
AuthorDate: Wed May 5 20:23:31 2021 +0800
add test case for TimeoutCountDown (#7662)
* fix #7661 add test case for TimeoutCountDown
* Optimized code
---
.../org/apache/dubbo/rpc/TimeoutCountDownTest.java | 39 ++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git
a/dubbo-rpc/dubbo-rpc-api/src/test/java/org/apache/dubbo/rpc/TimeoutCountDownTest.java
b/dubbo-rpc/dubbo-rpc-api/src/test/java/org/apache/dubbo/rpc/TimeoutCountDownTest.java
new file mode 100644
index 0000000..c83ab01
--- /dev/null
+++
b/dubbo-rpc/dubbo-rpc-api/src/test/java/org/apache/dubbo/rpc/TimeoutCountDownTest.java
@@ -0,0 +1,39 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.dubbo.rpc;
+
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+
+import java.util.concurrent.TimeUnit;
+
+public class TimeoutCountDownTest {
+
+ @Test
+ public void testTimeoutCountDown() throws InterruptedException {
+ TimeoutCountDown timeoutCountDown = TimeoutCountDown.newCountDown(5,
TimeUnit.SECONDS);
+ Assertions.assertEquals(5 * 1000,
timeoutCountDown.getTimeoutInMilli());
+ Assertions.assertFalse(timeoutCountDown.isExpired());
+ Assertions.assertTrue(timeoutCountDown.timeRemaining(TimeUnit.SECONDS)
> 0);
+
+ Thread.sleep(6 * 1000);
+
+ Assertions.assertTrue(timeoutCountDown.isExpired());
+ Assertions.assertTrue(timeoutCountDown.timeRemaining(TimeUnit.SECONDS)
<= 0);
+ }
+}