Junit使用GroboUtils进行多线程测试

写过Junit单元测试的同学应该会有感觉,Junit本身是不支持普通的多线程测试的,这是因为Junit的底层实现上,是用System.exit退出用例执行的。JVM都终止了,在测试线程启动的其他线程自然也无法执行。JunitCore代码如下:

/** 
     * Run the tests contained in the classes named in the <code>args</code>. 
     * If all tests run successfully, exit with a status of 0. Otherwise exit with a status of 1. 
     * Write feedback while tests are running and write 
     * stack traces for all failed tests after the tests all complete. 
     * @param args names of classes in which to find tests to run 
     */ 
    public static void main(String... args) { 
        runMainAndExit(new RealSystem(), args); 
    } 
 
    /** 
     * Do not use. Testing purposes only. 
     * @param system  
     */ 
    public static void runMainAndExit(JUnitSystem system, String... args) { 
        Result result= new JUnitCore().runMain(system, args); 
        system.exit(result.wasSuccessful() ? 0 : 1); 
    }

RealSystem.java:

public void exit(int code) { 
        System.exit(code); 
    }

所以要想编写多线程Junit测试用例,就必须让主线程等待所有子线程执行完成后再退出。想到的办法自然是Thread中的join方法。话又说回来,这样一个简单而又典型的需求,难道会没有第三方的包支持么?通过google,很快就找到了GroboUtils这个Junit多线程测试的开源的第三方的工具包。

GroboUtils官网如下:http://groboutils.sourceforge.net/

下载页面:http://groboutils.sourceforge.net/downloads.html,解压后 使用 GroboUtils-5\lib\core\GroboTestingJUnit-1.2.1-core.jar 这个即可

GroboUtils是一个工具集合,里面包含各种测试工具,这里使用的是该工具集中的jUnit扩展.

依赖好Jar包后就可以编写多线程测试用例了。上手很简单:

package com.junittest.threadtest;  
  
import java.util.ArrayList;  
import java.util.HashSet;  
import java.util.Hashtable;  
import java.util.List;  
import java.util.Map;  
import java.util.Set;  
  
import net.sourceforge.groboutils.junit.v1.MultiThreadedTestRunner;  
import net.sourceforge.groboutils.junit.v1.TestRunnable;  
  
  
import org.junit.Test;  
  
public class MutiThreadTest {  
  
    static String[] path = new String[] { "" };  
    static Map<String, String> countMap = new Hashtable<String, String>();  
    static Map<String, String> countMap2 = new Hashtable<String, String>();  
    static Set<String> countSet = new HashSet<String>();  
    static List<String> list = new ArrayList<String>();  
  
    @Test  
    public void testThreadJunit() throws Throwable {   
        //Runner数组,想当于并发多少个。 
        TestRunnable[] trs = new TestRunnable [10];  
        for(int i=0;i<10;i++){  
            trs[i]=new ThreadA();  
        }  

        // 用于执行多线程测试用例的Runner,将前面定义的单个Runner组成的数组传入 
        MultiThreadedTestRunner mttr = new MultiThreadedTestRunner(trs);  
        
        // 开发并发执行数组里定义的内容 
        mttr.runTestRunnables();  
        
        
    }  
  
    private class ThreadA extends TestRunnable {  
        @Override  
        public void runTest() throws Throwable {  
            // 测试内容
            myCommMethod2();  
        }  
    }  
  
    public void myCommMethod2() throws Exception {  
        System.out.println("===" + Thread.currentThread().getId() + "begin to execute myCommMethod2");  
        for (int i = 0; i <10; i++) {  
             int a  = i*5;  
             System.out.println(a);  
        }  
        System.out.println("===" + Thread.currentThread().getId() + "end to execute myCommMethod2");  
    }  
}

运行时需依赖log4j的jar文件,GroboUtils的jar包。

主要关注3个类:TestRunnable,TestMonitorRunnable,MultiThreadedTestRunner,全部来自包:net.sourceforge.groboutils.junit.v1.MultiThreadedTestRunner.

(1) TestRunnable 抽象类,表示一个测试线程,实例需要实现该类的runTest()方法,在该方法中写自己用的测试代码.

该类继承了jUnit的junit.framework.Assert类,所以可以在TestRunnable中使用各种Assert方法

(可惜因为GroboUtils使用的jUnit版本较老,且久未更新,新版本的jUnit中已经不推荐使用这个类的方法了).

该类实现了Runnable,在run方法中调用抽象方法runTest().

(2)   MultiThreadedTestRunner

这个类相当与一个ExecuteService,可以用来执行 TestRunnable,构造函数需要传入TestRunnable数组,

表示需要测试的线程.

调用MultiThreadedTestRunner.runTestRunnables() 方法启动测试线程,开始执行测试.

这个方法默认让测试线程TestRunnable的run方法最多运行1天,也可以调用

MultiThreadedTestRunner.runTestRunnables(long maxTime) 这个方法,然测试线程TestRunnable

最多执行 maxTime 毫秒.如果超过maxTime毫秒之后,TestRunnable还没有执行完毕,则TestRunnable

会被中断,并且MultiThreadedTestRunner 会抛出异常,

导致测试失败fail("Threads did not finish within " + maxTime + " milliseconds.").

每个TestRunnable中runTest需要能够控制自己在什么时间自己结束自己,精确控制测试时间,不要利用

上面的maxTime.

(3) TestMonitorRunnable

表示监控线程,可以让每一个TestRunnable对应一个TestMonitorRunnable,在TestMonitorRunnable中监控

TestRunnable.TestMonitorRunnable是TestRunnable的子类,提供了一些方便使用的方法.

时间: 2024-10-21 04:38:37

Junit使用GroboUtils进行多线程测试的相关文章

junit基础学习之-多线程测试(6)

步骤: 1.定义单个TestRunner 2.重载单个TestRunner的runTest() 3.定义TestRunner数组,并添加多个TestRunner 4.MultiThreadedTestRunner测试 1 @Test 2 public void MultiRequestsTest() { 3 // 步骤一:构造一个Runner 4 TestRunnable runner = new TestRunnable() { 5 @Override //步骤二:重载runTest函数 6

关于JUnit4无法支持多线程测试的解决方法

转自:https://segmentfault.com/a/1190000003762719 其实junit是将test作为参数传递给了TestRunner的main函数.并通过main函数进行执行. test函数在main中执行.如果test执行结束,那么main将会调用System.exit(0);即使还有其他的线程在运行,main也会调用System.exit(0); System.exit()是系统调用,通知系统立即结束jvm的运行,即使jvm中有线程在运行,jvm也会停止的.所以会出现

LinkedBlockingQueue多线程测试

public class FillQueueThread extends Thread { private Queue queue; public FillQueueThread(Queue queue){ this.queue = queue; } @Override public void run() { while(true){ try { boolean added = queue.offer(UUID.randomUUID().toString()); if(added) { Syst

多线程测试类

package base_class; import java.util.concurrent.CountDownLatch; /** * 多线程测试器 */ public class ManyThreadStarter { private int count; public ManyThreadStarter(){ count = 10000; } public ManyThreadStarter(int count){ this.count = count; } public void al

浅淡java单例模式结合多线程测试

本人才疏学浅,正好利用博客这个平台整理下思路 使用单例模式简单来说生成对象时属性都一样,即你new一百次,通过方法得到的结果都一样(比如获取静态资源文件,工具类等). 所以就没必要生成多个对象浪费服务器内存,他和静态类又不同,因为单例本质也是对象系统,长期不使用,也会给cg清除.但是静态类不同,静态类的成员变量和有静态方法会在程序的整个生命周期存在,比如在服务器内在中加载后服务器不关,就会一直存在,同理的有servlet的ServletContext对象和jsp的application对象 单例

C语言 多线程测试

1.CreateThread 在主线程的基础上创建一个新线程 2.WaitForMultipleObjects 主线程等待子线程 3.CloseHandle 关闭线程 1 // testThread.cpp : 定义控制台应用程序的入口点. 2 3 #include "stdafx.h" 4 #include "windows.h" 5 6 #define MAX_THREADS 3 7 8 //子线程函数 9 DWORD WINAPI ThreadFun(LPVO

使用junit对java中三角形测试

Tasks: Install Junit(4.12), Hamcrest(1.3) with Eclipse Install Eclemma with Eclipse Write a java program for the triangle problem and test the program with Junit. 关于三角形问题的代码的链接如下: https://github.com/Cartisia/triangle 部分如下: 1.安装并运用junit, hamcrest and 

Junit中对私有方法测试

在Junit中对私有方法进行测试有两种方法: 一.改变私有方法的访问权限(此方法并不推荐) 二.使用反射机制(推荐) 例如:Calculator类中有一个  private int add2(int a,int b) { return a+b; } 那么在我们的测试类的测试方法中: @Test public void add2() { Calculator c=new Calculator(); Class<Calculator> cal=Calculator.class; try { Met

testNG 多线程测试(xml文件实现)

测试用例一般是单线程模式,为了提高测试效率.testNG的多线程可以分为test,class,method级别的并发,可以通过在testng.xml中的suite tag下设置. methods级别:所有用例都可以在不同的线程去执行.classs级别:不同class tag下的用例可以在不同的线程执行,相同class tag下的用例只能在同一个线程中执行.tests级别:不同test tag下的用例可以在不同的线程执行,相同test tag下的用例只能在同一个线程中执行. 如: <suite n