[TestNG]TestNG和Junit4的参数化测试对比

TestNG系列:
TestNG和Junit4的参数化测试对比
TestNG运行指定测试套件
TestNG整合ReportNG
TestNG参数化测试实战
TestNG+Spring/Spring Boot整合

参数化测试是测试数据和测试脚本分离的一种实现方式,我们可以根据测试目的设计不同的测试数据并将测试数据存储在各种介质(内存、硬盘)中,测试方法在执行时获取一组预设的测试数据执行并给出结果

一、首先对比下TestNG和Junit的框架整合:

  • Spring+TestNG+Maven整合:

1.pom.xml中增加testng依赖:

        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8.8</version>
            <scope>test</scope>
        </dependency>

2.测试类增加1条注解
@ContextConfiguration(locations = "classpath:applicationContext.xml")并继承AbstractTestNGSpringContextTests,范例如下

@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class BaseTest extends AbstractTestNGSpringContextTests{
    @Test
    public void testMethods()
    {
        ......
    }
}
  • Spring+Junit+Maven整合:

1.pom.xml中增加junit依赖:

        <!--Junit版本-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.4</version>
            <scope>test</scope>
        </dependency>

2.测试类增加2条注解
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml"),如下:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class BaseTest{
    @Test
    public void testMethods()
    {
        ......
    }
}

二、再对比下二者参数化测试的实现:

Junit4 参数化测试:

  • 步骤如下:
    1.通过@Parameters标识静态参数构造方法
    2.通过测试类构造方法引入参数
    3.测试方法使用参数
  • 源码如下:
@RunWith(Parameterized.class)
public class AuthorizedMemberHSFTest extends AuthorizedServiceTest {

    private Long userId;
    private String userName;
    private String appName;
    private String channelId;
    private String secret;
    private String xcodeAppKey;
    private Long tenantId;
    private boolean expected;

    @Parameterized.Parameters
    public static Collection<Object[]> data() {
        return Arrays.asList(new Object[][]{
                {3253622341L, "arthur.hw", "ocs", "1703183528", "123456", "123", 905L, true},
                {3253622341L, "arthur.hw", "ocs", "1703183528", "123456", "123", 905L, true}});
    }

    public AuthorizedMemberHSFTest(Long userId,
                                   String userName,
                                   String appName,
                                   String channelId,
                                   String secret,
                                   String xcodeAppKey,
                                   Long tenantId,
                                   boolean expected) {
        this.userId = userId;
        this.userName = userName;
        this.appName = appName;
        this.channelId = channelId;
        this.secret = secret;
        this.xcodeAppKey = xcodeAppKey;
        this.tenantId = tenantId;
        this.expected = expected;
    }

    @Test
    public void authorizeMember() {
        // 01:prepare parameter
        Credentials credentials = new Credentials();

        credentials.setUserId(userId);
        credentials.setUserName(userName);
        credentials.setAppName(appName);
        credentials.setChannelId(channelId);  // channelId cant be null
        credentials.setSecret(secret);
        credentials.setXcodeAppKey(xcodeAppKey);
        credentials.setTenantId(tenantId);

        Result<AccessToken> result = new Result<AccessToken>();

        // 02 hsf execution
        try {
            result = authorizeService.authorizeMember(credentials);
        } catch (Exception ex) {
//            log.error(ex.getMessage());
        }

        // 03 assert
        Assert.assertEquals(result.isSuccess(), expected);
    }
} 

缺点:

  • 1个测试类只能有一个静态的参数构造方法data()
  • 测试类需要使用@RunWith(Parameterized.class),无法兼容spring-test的runner:@RunWith(SpringJUnit4ClassRunner.class),会导致无法通过注解注入待测服务
  • 需要在测试类中添加一个构造方法(一种冗余设计)

TestNG 参数化测试:

  • 步骤如下:
    1.通过@dataProvider注解标识参数构造方法
    2.测试方法在注解@Test中通过dataProvider属性指定参数构造方法,便可在测试方法中使用参数
  • 源码如下:
public class AuthorizedServiceTest extends BaseTest {
    @Resource
    protected AuthorizeService authorizeService;

    @BeforeClass
    public void init() throws Exception {
        ServiceUtil.waitServiceReady(authorizeService);
    }
}
public class AuthorizedMemberHSFTest extends AuthorizedServiceTest {
    @DataProvider
    public static Object[][] getParameters(Method method) {

        return new Object[][]{
                {3253622341L, "arthur.hw", "ocs", "1703183528", "123456", "123", 905L, true},
                {1L, "obama", "ocs", "323243242", "123", "123", 3L, true}};
    }

    @Test(dataProvider = "getParameters")
    public void authorizeMember(Long userId,
                                String userName,
                                String appName,
                                String channelId,
                                String secret,
                                String xcodeAppKey,
                                Long tenantId,
                                boolean expected) {

        // 01:prepare parameter
        Credentials credentials = new Credentials();

        credentials.setUserId(userId);
        credentials.setUserName(userName);
        credentials.setAppName(appName);
        credentials.setChannelId(channelId);  
        credentials.setSecret(secret);
        credentials.setXcodeAppKey(xcodeAppKey);
        credentials.setTenantId(tenantId);

        Result<AccessToken> result = new Result<AccessToken>();

        // 02 hsf execution
        try {
            result = authorizeService.authorizeMember(credentials);
        } catch (Exception ex) {
            log.error(ex.getMessage());
        }

        // 03 assert
        Assert.assertEquals(result.isSuccess(), expected);
    }
}

执行结果:


d55b9f5814827446.png
d55b9f5814827446.png

除此之外,TestNG还支持通过testng.xml构造参数:
1.这次我们使用maven来运行TestNG,可以参考http://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html
2.在src/test/java/resources下添加testng.xml文件,其中通过<parameter/>构造需要使用的参数和值

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="testmain" verbose="1" >
    <parameter name="kilo" value="just for test"></parameter>
    <test name="authorizeService" >
        <classes>
            <class name="xxx.yyy.AuthorizedServiceTest" />
        </classes>
    </test>
</suite>

3.在pom.xml中添加maven-surfire-plugin插件配置:

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <suiteXmlFiles>
                        <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
            </plugin>
        </plugins>
    </build>

4.测试方法添加参数引用:

    @Parameters({"kilo"})
    @Test
    public void authorizeServiceTestMethod(String kilo)
    {
        System.out.println(kilo);
    }

5.运行test:

mvn clean test
717de23629d36961.png
717de23629d36961.png

TestNG的参数化测试还有一些高级特性,具体可以参考:http://testng.org/doc/documentation-main.html#parameters

可以看到,TestNG相比Junit,基本Junit参数化测试的缺点都解决了:
1、一个测试类中可以有多个参数构造方法,测试方法和参数构造方法可以通过注解关联起来
2、可以兼容spring的注解注入
3、无需添加构造方法
同时代码量较小

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,014评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,796评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,484评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,830评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,946评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,114评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,182评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,927评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,369评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,678评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,832评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,533评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,166评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,885评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,128评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,659评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,738评论 2 351

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,639评论 18 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,781评论 6 342
  • spring官方文档:http://docs.spring.io/spring/docs/current/spri...
    牛马风情阅读 1,653评论 0 3
  • 感谢原作者的奉献,原作者博客地址:http://blog.csdn.net/zhu_ai_xin_520/arti...
    狼孩阅读 14,030评论 1 35
  • 2014年是我高二那年,还是短发,教室在被全校师生调侃为青楼的那座教学楼。我记不起那年的冬天是怎样,春天又是怎样,...
    仲童阅读 217评论 0 1