草庐IT

groovy语言单元测试(spock)

linsa_pursuer 2023-11-27 原文

一、spock-groovy单元测试的五种情况


/**
 * 单元测试
 * given: mock单测中指定mock数据,模拟入参
 * when: 触发行为,比如调用指定方法或函数
 * then: 做出断言表达式
 * expect: 期望的行为,when-then的精简版
 * @since 2022-07-13
 */
@CodeBootTest
class Test extends Specification {
    @Autowired
    private TestService testService

    // 对于Impl私有的方法,无法通过Service调用的,需要单独new一个,并设置其属性
    def testServiceImpl = new TestServiceImpl();

    def lovAdapter = Mock(LovAdapter)

    // 运行前的启动方法
    void setup() {
        testServiceImpl.lovAdapter = lovAdapter
    }

    // 情况一:expect


    def "test-1"(){
        given:
        PageRequest pageRequest = new PageRequest(0, 10)
        QueryDto queryDto = new QueryDto()
        queryDto.setTenantId(0L)
        expect:
        testService.selectList(pageRequest, queryDto).getContent().size() == 3
    }

    // 情况二:when-then


    def "test-2"(){
        given:
        when:
        Header result = testService.detail(33L, 0L)
        then:
        result.recNo == "20220707100001"
        result.recHeaderId == 33L
    }

    // 情况三:thrown(Exception)


    def "test-3"(){
        given:
        List<Header> list = new ArrayList<Header>();
        Header vo = new Header();
        vo.setRecHeaderId(33L)
        vo.setRecNo("20220707100001")
        vo.setRecStatus("2")
        list.add(vo)
        when:
        testService.checkSuccess(list)
        then:
        thrown(IllegalArgumentException)
    }

    // 情况四:noExceptionThrown,mock模拟入参


    def "test-4" () {
        given:
        Header vo = new Header();
        vo.setTenantId(0L)
        vo.setRecHeaderId(33L)
        vo.setRecNo("20220707100001")
        vo.setRecStatus("2")
        vo.setIsIncludeTax("Y")
        def list = Arrays.asList(vo)
        //构造值集查询出参
        lovAdapter.queryLovValue("YES_NO", vo.tenantId) >> Arrays.asList(new LovValueDTO(value: "Y", meaning: "是"))
        when:
        testServiceImpl.processData(list, vo.tenantId, null, null)
        then:
        noExceptionThrown()
    }

    // 情况五:expect,and-with验证结果


    def "test-5" () {
        given:
        expect:
        Header result = testService.detail(33L, 0L)
        // 对于数据转换无返回值的,可以比较数据处理前后的值
        and: "验证结果是否正确"
        with(result) {
            (result.recNo == "20220707100001")
            (result.recHeaderId == 33L)
        }
    }


    // 情况六:where 表格方式验证用户信息的合法性


    def "test-6"() {
        expect:
        Math.max(a,b) == result

        // 这样一个单元测试会验证两组数据
        // 第一组 a = 1 , b = 2, result = 2
        // 第二组 a = 3 , b = 0, result = 3
        where:
        a    |b    |result
        1    |2    |2
        3    |0    |3
    }
}

二、配置文件及SQL注意点


1.application-test.yml在mybatisplus下面加上


liquibase:
    change-log: classpath:db/changelog/db.mysql-master.xml


2.db.mysql-master.xml里加上对应单元测试脚本路径

3.mapper文件注意点:要用单引号,不能用双引号


4.测试脚本注意点


创建库(CREATE SCHEMA IF NOT EXISTS TEST;)
若需要设置库(SET SCHEMA TEST;)
建表语句(库名.表名,普通索引删除,COLLATE utf8_unicode_ci 以及CHARACTER SET utf8mb4 COLLATE utf8mb4_bin 这种删除,表编码设置ENGINE=InnoDB DEFAULT CHARSET=utf8 ;)

5.单元测试启动就是整个类启动,不支持单个方法启动

三、spock单元测试jar包


官网:http://spockframework.org/

<!--H2-->
<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
    <version>1.4.199</version>
    <scope>test</scope>
</dependency>

<!--spock-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
    <exclusions>
        <exclusion>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-to-slf4j</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>org.spockframework</groupId>
    <artifactId>spock-core</artifactId>
    <scope>test</scope></dependency>
<dependency>
    <groupId>org.spockframework</groupId>
    <artifactId>spock-spring</artifactId>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>cglib</groupId>
    <artifactId>cglib-nodep</artifactId>
    <version>3.1</version>
    <scope>test</scope>
</dependency>
        
<!--liquibase -->
<dependency>
    <groupId>org.liquibase</groupId>
    <artifactId>liquibase-core</artifactId>
    <scope>test</scope>
</dependency>

有关groovy语言单元测试(spock)的更多相关文章

  1. ruby-on-rails - 使用 Ruby on Rails 进行自动化测试 - 最佳实践 - 2

    很好奇,就使用ruby​​onrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提

  2. ruby - 如何将脚本文件的末尾读取为数据文件(Perl 或任何其他语言) - 2

    我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚

  3. ruby - 使用 C 扩展开发 ruby​​gem 时,如何使用 Rspec 在本地进行测试? - 2

    我正在编写一个包含C扩展的gem。通常当我写一个gem时,我会遵循TDD的过程,我会写一个失败的规范,然后处理代码直到它通过,等等......在“ext/mygem/mygem.c”中我的C扩展和在gemspec的“扩展”中配置的有效extconf.rb,如何运行我的规范并仍然加载我的C扩展?当我更改C代码时,我需要采取哪些步骤来重新编译代码?这可能是个愚蠢的问题,但是从我的gem的开发源代码树中输入“bundleinstall”不会构建任何native扩展。当我手动运行rubyext/mygem/extconf.rb时,我确实得到了一个Makefile(在整个项目的根目录中),然后当

  4. ruby - Ruby 的 Hash 在比较键时使用哪种相等性测试? - 2

    我有一个围绕一些对象的包装类,我想将这些对象用作散列中的键。包装对象和解包装对象应映射到相同的键。一个简单的例子是这样的:classAattr_reader:xdefinitialize(inner)@inner=innerenddefx;@inner.x;enddef==(other)@inner.x==other.xendenda=A.new(o)#oisjustanyobjectthatallowso.xb=A.new(o)h={a=>5}ph[a]#5ph[b]#nil,shouldbe5ph[o]#nil,shouldbe5我试过==、===、eq?并散列所有无济于事。

  5. ruby - RSpec - 使用测试替身作为 block 参数 - 2

    我有一些Ruby代码,如下所示:Something.createdo|x|x.foo=barend我想编写一个测试,它使用double代替block参数x,这样我就可以调用:x_double.should_receive(:foo).with("whatever").这可能吗? 最佳答案 specify'something'dox=doublex.should_receive(:foo=).with("whatever")Something.should_receive(:create).and_yield(x)#callthere

  6. ruby - Sinatra:运行 rspec 测试时记录噪音 - 2

    Sinatra新手;我正在运行一些rspec测试,但在日志中收到了一堆不需要的噪音。如何消除日志中过多的噪音?我仔细检查了环境是否设置为:test,这意味着记录器级别应设置为WARN而不是DEBUG。spec_helper:require"./app"require"sinatra"require"rspec"require"rack/test"require"database_cleaner"require"factory_girl"set:environment,:testFactoryGirl.definition_file_paths=%w{./factories./test/

  7. ruby-on-rails - 迷你测试错误 : "NameError: uninitialized constant" - 2

    我遵循MichaelHartl的“RubyonRails教程:学习Web开发”,并创建了检查用户名和电子邮件长度有效性的测试(名称最多50个字符,电子邮件最多255个字符)。test/helpers/application_helper_test.rb的内容是:require'test_helper'classApplicationHelperTest在运行bundleexecraketest时,所有测试都通过了,但我看到以下消息在最后被标记为错误:ERROR["test_full_title_helper",ApplicationHelperTest,1.820016791]test

  8. ruby - 即使失败也继续进行多主机测试 - 2

    我已经构建了一些serverspec代码来在多个主机上运行一组测试。问题是当任何测试失败时,测试会在当前主机停止。即使测试失败,我也希望它继续在所有主机上运行。Rakefile:namespace:specdotask:all=>hosts.map{|h|'spec:'+h.split('.')[0]}hosts.eachdo|host|begindesc"Runserverspecto#{host}"RSpec::Core::RakeTask.new(host)do|t|ENV['TARGET_HOST']=hostt.pattern="spec/cfengine3/*_spec.r

  9. ruby-on-rails - 如何使辅助方法在 Rails 集成测试中可用? - 2

    我在app/helpers/sessions_helper.rb中有一个帮助程序文件,其中包含一个方法my_preference,它返回当前登录用户的首选项。我想在集成测试中访问该方法。例如,这样我就可以在测试中使用getuser_path(my_preference)。在其他帖子中,我读到这可以通过在测试文件中包含requiresessions_helper来实现,但我仍然收到错误NameError:undefinedlocalvariableormethod'my_preference'.我做错了什么?require'test_helper'require'sessions_hel

  10. ruby - 寻找通过阅读代码确定编程语言的ruby gem? - 2

    几个月前,我读了一篇关于ruby​​gem的博客文章,它可以通过阅读代码本身来确定编程语言。对于我的生活,我不记得博客或gem的名称。谷歌搜索“ruby编程语言猜测”及其变体也无济于事。有人碰巧知道相关gem的名称吗? 最佳答案 是这个吗:http://github.com/chrislo/sourceclassifier/tree/master 关于ruby-寻找通过阅读代码确定编程语言的rubygem?,我们在StackOverflow上找到一个类似的问题:

随机推荐