Spock单元测试框架使用详解「建议收藏」

Spock单元测试框架使用详解「建议收藏」Spock(Spock官网:http://spockframework.org/)作为java和Groovy测试一种表达的规范语言,其参考了Junit、Groovy、jMock、Scala等众多语言的优点,并采用Groovy作为其语法,目前能够在绝大多数的集成开发环境(如eclipse,Intellij Ieda),构建工具(如Maven,gradle)等场景运行。Spock单元测试相对于传统的junit、JMockito、EsayMock、Mockito、PowerMock,由于使用了Groovy作为语法

大家好,又见面了,我是你们的朋友全栈君。

Spock(Spock官网:http://spockframework.org/)作为java和Groovy测试一种表达的规范语言,其参考了Junit、Groovy、jMock、Scala等众多语言的优点,并采用Groovy作为其语法,目前能够在绝大多数的集成开发环境(如eclipse,Intellij Ieda),构建工具(如Maven,gradle)等场景运行。Spock单元测试相对于传统的junit、JMockito、EsayMock、Mockito、PowerMock,由于使用了Groovy作为语法规则,代码量少,容易上手,提高了单元测试开发的效率,因此号称是下一代单元测试框架。

     本文以实战的方式详解怎样使用Spock进行单元测试,以便更好地理解Spock单元测试,至少能够让读者能够在选择java单元测试面前多了一种选择。

    

    1. 实战

            1.1 Spock的Maven依赖:                

 <!-- Mandatory dependencies for using Spock -->
    <dependency>
      <groupId>org.spockframework</groupId>
      <artifactId>spock-core</artifactId>
      <version>1.1-groovy-2.4-rc-3</version>
      <scope>test</scope>
    </dependency>
    <!-- Optional dependencies for using Spock -->
    <dependency> <!-- use a specific Groovy version rather than the one specified by spock-core -->
      <groupId>org.codehaus.groovy</groupId>
      <artifactId>groovy-all</artifactId>
      <version>2.4.7</version>
    </dependency>
    <dependency> <!-- enables mocking of classes (in addition to interfaces) -->
      <groupId>cglib</groupId>
      <artifactId>cglib-nodep</artifactId>
      <version>3.2.4</version>
      <scope>test</scope>
    </dependency>
    <dependency> <!-- enables mocking of classes without default constructor (together with CGLIB) -->
      <groupId>org.objenesis</groupId>
      <artifactId>objenesis</artifactId>
      <version>2.5.1</version>
      <scope>test</scope>
    </dependency>

     1.2 构造项目基本代码

           BizService.java(接口)、BizServiceImpl.java(接口实现类)、Dao.java(dao层代码)、PersonEntity.java(bean对象)

             1.2.1 接口类 BizService.java     

/**
 * Created by zhangzh on 2017/2/25.
 */

package com.lance.spock.demo.api;

public interface BizService {

    String insert(String id, String name, int age);

    String remove(String id);

    String update(String name, int age);

    String finds(String name);

    boolean isAdult(int age) throws Exception;
}

         1.2.2 接口实现类 BizServiceImpl.java              

package com.lance.spock.demo.service.impl;

import com.lance.spock.demo.api.BizService;
import com.lance.spock.demo.dao.Dao;
import com.lance.spock.demo.entity.PersonEntity;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * Created by zhangzh on 2016/9/6.
 */

@Service
public class BizServiceImpl implements BizService {


    @Autowired
   private Dao dao;

    public String insert(String id, String name, int age) {

        if (StringUtils.isAnyBlank(id, name)) {
            return "";
        }

        PersonEntity bean = new PersonEntity();
        bean.setAge(age);
        bean.setPersonId(id);
        bean.setPersonName(name);
        dao.insert(bean);

        return name;
    }

    public String remove(String id) {
        if (StringUtils.isBlank(id)) {
            return "";
        }
        dao.remove(id);

        return id;
    }


    public String update(String name, int age) {
        if (StringUtils.isAnyBlank(name)) {
            return "";
        }
        dao.update(name, age);
        return name;
    }


    public String finds(String name) {
        if (StringUtils.isBlank(name)) {
            return null;
        }
        List<PersonEntity> beans = dao.finds(name);

        StringBuilder sb = new StringBuilder();
        sb.append("#");
        for (PersonEntity bean : beans) {
            sb.append(bean.getAge()).append("#");
        }

        return sb.toString();
    }


    public boolean isAdult(int age) throws Exception {

        if(age < 0) {
            throw new Exception("age is less than zero.");
        }

        return age >= 18;
    }


    public Dao getDao() {
        return dao;
    }

    public void setDao(Dao dao) {
        this.dao = dao;
    }

}

       1.2.3 Dao层类 Dao.java      
     
package com.lance.spock.demo.dao;

import com.lance.spock.demo.entity.PersonEntity;
import org.springframework.stereotype.Repository;

import java.util.Arrays;
import java.util.List;

/**
 * Created by zhangzh on 2016/9/6.
 */

@Repository
public class Dao {

    public void insert(PersonEntity bean) {
        System.out.println("Dao insert person");
    }

    public void remove(String id) {
        System.out.println("Dao remove");
    }

    public void update(String name, int age) {
        System.out.println("Dao update");
    }

    public List<PersonEntity> finds(String name) {
        System.out.println("Dao finds");
        PersonEntity bean = new PersonEntity();
        bean.setPersonId("24336461423");
        bean.setPersonName("张三");
        bean.setAge(28);
        return Arrays.asList(bean);
    }

}

       1.2.4 Bean数据类 PersonEntity.java
 

/**
 * Created by zhangzh on 2016/9/6.
 */
package com.lance.spock.demo.entity;
public class PersonEntity {

    private String personId;
    private String personName;
    private int age;



    public String getPersonId() {
        return personId;
    }

    public void setPersonId(String personId) {
        this.personId = personId;
    }

    public String getPersonName() {
        return personName;
    }

    public void setPersonName(String personName) {
        this.personName = personName;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public String toString() {
        return "PersonEntity{" +
                "personId='" + personId + '\'' +
                ", personName='" + personName + '\'' +
                ", age=" + age +
                '}';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        PersonEntity that = (PersonEntity) o;

        if (age != that.age) return false;
        if (personId != null ? !personId.equals(that.personId) : that.personId != null) return false;
        return personName != null ? personName.equals(that.personName) : that.personName == null;

    }

    @Override
    public int hashCode() {
        int result = personId != null ? personId.hashCode() : 0;
        result = 31 * result + (personName != null ? personName.hashCode() : 0);
        result = 31 * result + age;
        return result;
    }
}

1.2.5 上下文配置 applicationContext.xml

          
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns="http://www.springframework.org/schema/beans"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="com.lance.spock.demo"/>

</beans>

    1.3. Test类 BizServiceTest.groovy

package com.lance.spock.demo.service.impl.groovy

import com.lance.spock.demo.api.BizService
import com.lance.spock.demo.dao.Dao
import com.lance.spock.demo.entity.PersonEntity
import com.lance.spock.demo.service.impl.BizServiceImpl
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.context.ApplicationContext
import org.springframework.context.support.FileSystemXmlApplicationContext
import spock.lang.Specification
import spock.lang.Unroll
/**
 * Created by zhangzh on 2017/2/25.
 */
public class BizServiceTest extends Specification {

    @Autowired
    private BizServiceImpl bizService;

     Dao dao = Mock(Dao)  // 生成dao的Mock对象

    /**
     * Spock和Junit类似也将单元测试划分成了多个阶段
     * 如 setup()  类似于Junit的@Before,在这个方法中的代码块会在测试用例执行之前执行,一般用于初始化程序以及Mock定义
     *
     *    when:和then:  表示当...的时候,结果怎样.
     *
     *
     *
     * @return
     */

    def setup() {
        println(" ============= test start =============")
        // 关联Mock对象,由于本测试是基于接口的测试,没有相应的setDao()方法,故采用此方法设置dao
//

        ApplicationContext ac = new FileSystemXmlApplicationContext("classpath:applicationContext.xml");
        bizService = ac.getBean(BizService.class)
//        bizService.h.advised.targetSource.target.dao = dao;
        bizService.setDao(dao)

    }


    def "test isAdult"() {

        setup:  //setup: 代码块主要针对自己所在方法的初始化参数操作
        int age = 20

        when:
        bizService.isAdult(age)  // 当执行isAdult方法时


        then:

        true  // 判断when执行bizService.isAdult(age)结果为true
        notThrown()   // 表示没有异常抛出
        println("age = " + age)
    }

    def "test isAdult except"() {
        expect:         // expect简化了when...then的操作
        bizService.isAdult(20) == true
    }


    def "age less than zero"() {
        setup:
        int age = -100

        when:
        bizService.isAdult(age)

        then:

        def e = thrown(Exception)  //thrown() 捕获异常,通常在then:中判断
        e.message == "age is less than zero."
        println(e.message)

        cleanup:
        println("test clean up")  // 单元测试执行结束后的清理工作,如清理内存,销毁对象等
    }


    @Unroll
    // 表示根君where的参数生成多个test方法,如本例生成了2个方法,方法名称分别为:
    // 1."where blocks test 20 isadult() is true"
    // 2."where blocks test 17 isadult() is false"
    def "where blocks test #age isadult() is #result"() {

        expect:
        bizService.isAdult(age) == result

        where:      // 其实实质是执行了两次"where blocks test"方法,但是参数不一样
        age || result
        20  || true
        17  || false
    }

    def "insert test"() {

        setup:
        PersonEntity person = new PersonEntity();
        person.setAge(28)
        person.setPersonId("id_1")
        person.setPersonName("zhangsan")

        when:
        bizService.insert("id_1", "zhangsan", 28)



        then:
        PersonEntity

        1 * dao.insert(person)  //判断dao执行了一次insert,且插入的对象是否equals


    }

}



参考资料:

       1.
使用Spock框架进行单元测试

        2.
Spock官网.
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/149582.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • sql server2019安装步骤 不支持此版本win10_浏览sql server2019安装介质

    sql server2019安装步骤 不支持此版本win10_浏览sql server2019安装介质SQLServer2019安装步骤文章分为四部分sqlserver安装失败指南(首看,本人下载中遇到的)下载安装sqlserver安装图形化界面ssms创建数据库安装失败以及解决措施下载安装SQLServer进行到第五步时,我这里进行了报错。错误是:thereisaproblemwiththiswindowsinstallerpackage.Aprogramrunaspartofthesetupdidnotfinshasexpectd.

  • BaseDao.util(虎大将军)

    BaseDao.util(虎大将军)

  • sublime text 3下载与安装详细教程「建议收藏」

    sublime text 3下载与安装详细教程「建议收藏」一、下载:打开官网下载链接http://www.sublimetext.com/3,下载SublimeText3portableversion”下载下来为“SublimeTextBuild3083x64.zip”编辑器的包,解压后无需安装就能运行,直接创建桌面快捷键就好二、双击桌面“SublimeText3”快捷图标,打开程序,就可…

  • 什么是差分数组?「建议收藏」

    什么是差分数组?「建议收藏」问题背景如果给你一个包含5000万个元素的数组,然后会有频繁区间修改操作,那什么是频繁的区间修改操作呢?比如让第1个数到第1000万个数每个数都加上1,而且这种操作时频繁的。此时你应该怎么做?很容易想到的是,从第1个数开始遍历,一直遍历到第1000万个数,然后每个数都加上1,如果这种操作很频繁的话,那这种暴力的方法在一些实时的系统中可能就拉跨了。因此,今天的主角就出现了——差分数组。…

  • mybatiscodehelperpro官网_iphone更新现在安装

    mybatiscodehelperpro官网_iphone更新现在安装mybatis的插件

  • webpack版本问题「建议收藏」

    webpack版本问题「建议收藏」由于webpack版本较多,而且配置写法,每个版本都大大小小有差异,因版本问题造成的错误很多1下载指定版本我常用的版本3.3.0,2不同版本中的坑2.1在3.0之后版本配置entry和output路劲不再支持相对路径只能使用__dirname拼接成的绝对路径)varpath=require(‘path’);path.join(__dirname,”)2.2在版本4之后…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号