forked from apache/dubbo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* reformat the code, and move the test into the correct package * unit test for c.a.d.c.threadpool
- Loading branch information
Showing
6 changed files
with
416 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
...rc/test/java/com/alibaba/dubbo/common/threadpool/support/cached/CachedThreadPoolTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* 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 com.alibaba.dubbo.common.threadpool.support.cached; | ||
|
||
import com.alibaba.dubbo.common.Constants; | ||
import com.alibaba.dubbo.common.URL; | ||
import com.alibaba.dubbo.common.threadlocal.InternalThread; | ||
import com.alibaba.dubbo.common.threadpool.ThreadPool; | ||
import com.alibaba.dubbo.common.threadpool.support.AbortPolicyWithReport; | ||
import org.hamcrest.Matchers; | ||
import org.junit.Test; | ||
|
||
import java.util.concurrent.BlockingQueue; | ||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.LinkedBlockingQueue; | ||
import java.util.concurrent.RejectedExecutionHandler; | ||
import java.util.concurrent.SynchronousQueue; | ||
import java.util.concurrent.ThreadPoolExecutor; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.hamcrest.Matchers.instanceOf; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.hamcrest.Matchers.startsWith; | ||
import static org.junit.Assert.assertThat; | ||
|
||
public class CachedThreadPoolTest { | ||
@Test | ||
public void getExecutor1() throws Exception { | ||
URL url = URL.valueOf("dubbo://10.20.130.230:20880/context/path?" + | ||
Constants.THREAD_NAME_KEY + "=demo&" + | ||
Constants.CORE_THREADS_KEY + "=1&" + | ||
Constants.THREADS_KEY + "=2&" + | ||
Constants.ALIVE_KEY + "=1000&" + | ||
Constants.QUEUES_KEY + "=0"); | ||
ThreadPool threadPool = new CachedThreadPool(); | ||
ThreadPoolExecutor executor = (ThreadPoolExecutor) threadPool.getExecutor(url); | ||
assertThat(executor.getCorePoolSize(), is(1)); | ||
assertThat(executor.getMaximumPoolSize(), is(2)); | ||
assertThat(executor.getQueue(), Matchers.<BlockingQueue<Runnable>>instanceOf(SynchronousQueue.class)); | ||
assertThat(executor.getRejectedExecutionHandler(), | ||
Matchers.<RejectedExecutionHandler>instanceOf(AbortPolicyWithReport.class)); | ||
|
||
final CountDownLatch latch = new CountDownLatch(1); | ||
executor.execute(new Runnable() { | ||
@Override | ||
public void run() { | ||
Thread thread = Thread.currentThread(); | ||
assertThat(thread, instanceOf(InternalThread.class)); | ||
assertThat(thread.getName(), startsWith("demo")); | ||
latch.countDown(); | ||
} | ||
}); | ||
|
||
latch.await(5000, TimeUnit.MICROSECONDS); | ||
assertThat(latch.getCount(), is(0L)); | ||
} | ||
|
||
@Test | ||
public void getExecutor2() throws Exception { | ||
URL url = URL.valueOf("dubbo://10.20.130.230:20880/context/path?" + Constants.QUEUES_KEY + "=1"); | ||
ThreadPool threadPool = new CachedThreadPool(); | ||
ThreadPoolExecutor executor = (ThreadPoolExecutor) threadPool.getExecutor(url); | ||
assertThat(executor.getQueue(), Matchers.<BlockingQueue<Runnable>>instanceOf(LinkedBlockingQueue.class)); | ||
} | ||
} |
82 changes: 82 additions & 0 deletions
82
.../src/test/java/com/alibaba/dubbo/common/threadpool/support/eager/EagerThreadPoolTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* 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 com.alibaba.dubbo.common.threadpool.support.eager; | ||
|
||
import com.alibaba.dubbo.common.Constants; | ||
import com.alibaba.dubbo.common.URL; | ||
import com.alibaba.dubbo.common.threadlocal.InternalThread; | ||
import com.alibaba.dubbo.common.threadpool.ThreadPool; | ||
import com.alibaba.dubbo.common.threadpool.support.AbortPolicyWithReport; | ||
import org.hamcrest.Matchers; | ||
import org.junit.Test; | ||
|
||
import java.util.concurrent.BlockingQueue; | ||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.RejectedExecutionHandler; | ||
import java.util.concurrent.ThreadPoolExecutor; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.hamcrest.Matchers.instanceOf; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.hamcrest.Matchers.startsWith; | ||
import static org.junit.Assert.assertThat; | ||
|
||
public class EagerThreadPoolTest { | ||
@Test | ||
public void getExecutor1() throws Exception { | ||
URL url = URL.valueOf("dubbo://10.20.130.230:20880/context/path?" + | ||
Constants.THREAD_NAME_KEY + "=demo&" + | ||
Constants.CORE_THREADS_KEY + "=1&" + | ||
Constants.THREADS_KEY + "=2&" + | ||
Constants.ALIVE_KEY + "=1000&" + | ||
Constants.QUEUES_KEY + "=0"); | ||
ThreadPool threadPool = new EagerThreadPool(); | ||
ThreadPoolExecutor executor = (ThreadPoolExecutor) threadPool.getExecutor(url); | ||
assertThat(executor, instanceOf(EagerThreadPoolExecutor.class)); | ||
assertThat(executor.getCorePoolSize(), is(1)); | ||
assertThat(executor.getMaximumPoolSize(), is(2)); | ||
assertThat(executor.getKeepAliveTime(TimeUnit.MILLISECONDS), is(1000L)); | ||
assertThat(executor.getQueue().remainingCapacity(), is(1)); | ||
assertThat(executor.getQueue(), Matchers.<BlockingQueue<Runnable>>instanceOf(TaskQueue.class)); | ||
assertThat(executor.getRejectedExecutionHandler(), | ||
Matchers.<RejectedExecutionHandler>instanceOf(AbortPolicyWithReport.class)); | ||
|
||
final CountDownLatch latch = new CountDownLatch(1); | ||
executor.execute(new Runnable() { | ||
@Override | ||
public void run() { | ||
Thread thread = Thread.currentThread(); | ||
assertThat(thread, instanceOf(InternalThread.class)); | ||
assertThat(thread.getName(), startsWith("demo")); | ||
latch.countDown(); | ||
} | ||
}); | ||
|
||
latch.await(5000, TimeUnit.MICROSECONDS); | ||
assertThat(latch.getCount(), is(0L)); | ||
} | ||
|
||
@Test | ||
public void getExecutor2() throws Exception { | ||
URL url = URL.valueOf("dubbo://10.20.130.230:20880/context/path?" + Constants.QUEUES_KEY + "=2"); | ||
ThreadPool threadPool = new EagerThreadPool(); | ||
ThreadPoolExecutor executor = (ThreadPoolExecutor) threadPool.getExecutor(url); | ||
assertThat(executor.getQueue().remainingCapacity(), is(2)); | ||
} | ||
|
||
} |
89 changes: 89 additions & 0 deletions
89
...common/src/test/java/com/alibaba/dubbo/common/threadpool/support/eager/TaskQueueTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
* 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 com.alibaba.dubbo.common.threadpool.support.eager; | ||
|
||
import org.junit.Test; | ||
import org.mockito.Mockito; | ||
|
||
import java.util.concurrent.RejectedExecutionException; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.hamcrest.Matchers.is; | ||
import static org.junit.Assert.assertThat; | ||
import static org.mockito.Mockito.mock; | ||
|
||
public class TaskQueueTest { | ||
|
||
@Test(expected = RejectedExecutionException.class) | ||
public void testOffer1() throws Exception { | ||
TaskQueue<Runnable> queue = new TaskQueue<Runnable>(1); | ||
queue.offer(mock(Runnable.class)); | ||
} | ||
|
||
@Test | ||
public void testOffer2() throws Exception { | ||
TaskQueue<Runnable> queue = new TaskQueue<Runnable>(1); | ||
EagerThreadPoolExecutor executor = mock(EagerThreadPoolExecutor.class); | ||
Mockito.when(executor.getPoolSize()).thenReturn(2); | ||
Mockito.when(executor.getSubmittedTaskCount()).thenReturn(1); | ||
queue.setExecutor(executor); | ||
assertThat(queue.offer(mock(Runnable.class)), is(true)); | ||
} | ||
|
||
@Test | ||
public void testOffer3() throws Exception { | ||
TaskQueue<Runnable> queue = new TaskQueue<Runnable>(1); | ||
EagerThreadPoolExecutor executor = mock(EagerThreadPoolExecutor.class); | ||
Mockito.when(executor.getPoolSize()).thenReturn(2); | ||
Mockito.when(executor.getSubmittedTaskCount()).thenReturn(2); | ||
Mockito.when(executor.getMaximumPoolSize()).thenReturn(4); | ||
queue.setExecutor(executor); | ||
assertThat(queue.offer(mock(Runnable.class)), is(false)); | ||
} | ||
|
||
@Test | ||
public void testOffer4() throws Exception { | ||
TaskQueue<Runnable> queue = new TaskQueue<Runnable>(1); | ||
EagerThreadPoolExecutor executor = mock(EagerThreadPoolExecutor.class); | ||
Mockito.when(executor.getPoolSize()).thenReturn(4); | ||
Mockito.when(executor.getSubmittedTaskCount()).thenReturn(4); | ||
Mockito.when(executor.getMaximumPoolSize()).thenReturn(4); | ||
queue.setExecutor(executor); | ||
assertThat(queue.offer(mock(Runnable.class)), is(true)); | ||
} | ||
|
||
@Test(expected = RejectedExecutionException.class) | ||
public void testRetryOffer1() throws Exception { | ||
TaskQueue<Runnable> queue = new TaskQueue<Runnable>(1); | ||
EagerThreadPoolExecutor executor = mock(EagerThreadPoolExecutor.class); | ||
Mockito.when(executor.isShutdown()).thenReturn(true); | ||
queue.setExecutor(executor); | ||
queue.retryOffer(mock(Runnable.class), 1000, TimeUnit.MILLISECONDS); | ||
} | ||
|
||
|
||
@Test | ||
public void testRetryOffer2() throws Exception { | ||
TaskQueue<Runnable> queue = new TaskQueue<Runnable>(1); | ||
EagerThreadPoolExecutor executor = mock(EagerThreadPoolExecutor.class); | ||
Mockito.when(executor.isShutdown()).thenReturn(false); | ||
queue.setExecutor(executor); | ||
assertThat(queue.retryOffer(mock(Runnable.class), 1000, TimeUnit.MILLISECONDS), is(true)); | ||
} | ||
|
||
} |
81 changes: 81 additions & 0 deletions
81
.../src/test/java/com/alibaba/dubbo/common/threadpool/support/fixed/FixedThreadPoolTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
* 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 com.alibaba.dubbo.common.threadpool.support.fixed; | ||
|
||
import com.alibaba.dubbo.common.Constants; | ||
import com.alibaba.dubbo.common.URL; | ||
import com.alibaba.dubbo.common.threadlocal.InternalThread; | ||
import com.alibaba.dubbo.common.threadpool.ThreadPool; | ||
import com.alibaba.dubbo.common.threadpool.support.AbortPolicyWithReport; | ||
import com.alibaba.dubbo.common.threadpool.support.limited.LimitedThreadPool; | ||
import org.hamcrest.Matchers; | ||
import org.junit.Test; | ||
|
||
import java.util.concurrent.BlockingQueue; | ||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.LinkedBlockingQueue; | ||
import java.util.concurrent.RejectedExecutionHandler; | ||
import java.util.concurrent.SynchronousQueue; | ||
import java.util.concurrent.ThreadPoolExecutor; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.hamcrest.Matchers.instanceOf; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.hamcrest.Matchers.startsWith; | ||
import static org.junit.Assert.assertThat; | ||
|
||
public class FixedThreadPoolTest { | ||
@Test | ||
public void getExecutor1() throws Exception { | ||
URL url = URL.valueOf("dubbo://10.20.130.230:20880/context/path?" + | ||
Constants.THREAD_NAME_KEY + "=demo&" + | ||
Constants.CORE_THREADS_KEY + "=1&" + | ||
Constants.THREADS_KEY + "=2&" + | ||
Constants.QUEUES_KEY + "=0"); | ||
ThreadPool threadPool = new FixedThreadPool(); | ||
ThreadPoolExecutor executor = (ThreadPoolExecutor) threadPool.getExecutor(url); | ||
assertThat(executor.getCorePoolSize(), is(2)); | ||
assertThat(executor.getMaximumPoolSize(), is(2)); | ||
assertThat(executor.getKeepAliveTime(TimeUnit.MILLISECONDS), is(0L)); | ||
assertThat(executor.getQueue(), Matchers.<BlockingQueue<Runnable>>instanceOf(SynchronousQueue.class)); | ||
assertThat(executor.getRejectedExecutionHandler(), | ||
Matchers.<RejectedExecutionHandler>instanceOf(AbortPolicyWithReport.class)); | ||
|
||
final CountDownLatch latch = new CountDownLatch(1); | ||
executor.execute(new Runnable() { | ||
@Override | ||
public void run() { | ||
Thread thread = Thread.currentThread(); | ||
assertThat(thread, instanceOf(InternalThread.class)); | ||
assertThat(thread.getName(), startsWith("demo")); | ||
latch.countDown(); | ||
} | ||
}); | ||
|
||
latch.await(5000, TimeUnit.MICROSECONDS); | ||
assertThat(latch.getCount(), is(0L)); | ||
} | ||
|
||
@Test | ||
public void getExecutor2() throws Exception { | ||
URL url = URL.valueOf("dubbo://10.20.130.230:20880/context/path?" + Constants.QUEUES_KEY + "=1"); | ||
ThreadPool threadPool = new FixedThreadPool(); | ||
ThreadPoolExecutor executor = (ThreadPoolExecutor) threadPool.getExecutor(url); | ||
assertThat(executor.getQueue(), Matchers.<BlockingQueue<Runnable>>instanceOf(LinkedBlockingQueue.class)); | ||
} | ||
} |
Oops, something went wrong.