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单元测试,至少能够让读者能够在选择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 lance 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 lance 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 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 lance 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 lance 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 lance 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框架进行单元测试(http://www.open-open.com/lib/view/open1439793373083.html);

  2. Spock官网(http://spockframework.org/).

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

推荐阅读更多精彩内容