📄 threadpooltest.java
字号:
//========================================================================//Copyright 2004-2008 Mort Bay Consulting Pty. Ltd.//------------------------------------------------------------------------//Licensed 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.mortbay.thread;import java.util.Random;import java.util.concurrent.atomic.AtomicInteger;import junit.framework.TestCase;public class ThreadPoolTest extends TestCase{ int _jobs; long _result; Runnable _job = new Runnable() { public void run() { try { Thread.sleep(100); } catch(Exception e) { e.printStackTrace(); } long t = System.currentTimeMillis()%10000; long r=t; for (int i=0;i<t;i++) r+=i; synchronized(ThreadPoolTest.class) { _jobs++; _result+=r; } } }; public void testQueuedThreadPool() throws Exception { QueuedThreadPool tp= new QueuedThreadPool(); tp.setMinThreads(5); tp.setMaxThreads(10); tp.setMaxIdleTimeMs(1000); tp.setSpawnOrShrinkAt(2); tp.setThreadsPriority(Thread.NORM_PRIORITY-1); tp.start(); Thread.sleep(500); assertEquals(5,tp.getThreads()); assertEquals(5,tp.getIdleThreads()); tp.dispatch(_job); tp.dispatch(_job); assertEquals(5,tp.getThreads()); assertEquals(3,tp.getIdleThreads()); Thread.sleep(500); assertEquals(5,tp.getThreads()); assertEquals(5,tp.getIdleThreads()); for (int i=0;i<100;i++) tp.dispatch(_job); assertTrue(tp.getQueueSize()>10); assertTrue(tp.getIdleThreads()<=1); Thread.sleep(2000); assertEquals(0,tp.getQueueSize()); assertTrue(tp.getIdleThreads()>5); int threads=tp.getThreads(); assertTrue(threads>5); Thread.sleep(1500); assertTrue(tp.getThreads()<threads); } public void testStress() throws Exception { QueuedThreadPool tp= new QueuedThreadPool(); tp.setMinThreads(240); tp.setMaxThreads(250); tp.setMaxIdleTimeMs(100); tp.start(); tp.setMinThreads(90); final AtomicInteger count = new AtomicInteger(); final Random random = new Random(System.currentTimeMillis()); int loops = 16000; try { for (int i=0;i<loops;) { int burst=random.nextInt(100); for (int b=0;b<burst && i<loops; b++) { if (i%20==0) System.err.print('.'); if (i%1600==1599) System.err.println(); if (i==1000) tp.setMinThreads(10); if (i==10000) tp.setMaxThreads(20); i++; tp.dispatch(new Runnable() { public void run() { int s=random.nextInt(50); try { Thread.sleep(s); } catch (InterruptedException e) { e.printStackTrace(); } finally { count.incrementAndGet(); } } }); } Thread.sleep(random.nextInt(100)); } Thread.sleep(1000); tp.stop(); assertEquals(loops,count.get()); } catch (Exception e) { e.printStackTrace(); assertTrue(false); } } public void testMaxStopTime() throws Exception { QueuedThreadPool tp= new QueuedThreadPool(); tp.setMaxStopTimeMs(500); tp.start(); tp.dispatch(new Runnable(){ public void run () { while (true) { try { Thread.sleep(10000); } catch (InterruptedException ie) {} } } }); long beforeStop = System.currentTimeMillis(); tp.stop(); long afterStop = System.currentTimeMillis(); assertTrue(tp.isStopped()); assertTrue(afterStop - beforeStop < 1000); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -