0

我正在为此(工作正常)Grails 服务创建单元测试:

class CommonCodeService {

    def gridUtilService

    def getList(def params){
        def ret = null

        try {
            def res = gridUtilService.getDomainList(CommonCode, params)
            def rows = []
            def counter = 0
            res?.rows?.each{ // this is line 15
                rows << [
                        id: counter ++,
                        cell:[

                            it.key,  
                            it.value  
                        ]
                ]
            }

            ret = [rows: rows, totalRecords: res.totalRecords, page: params.page, totalPage: res.totalPage]

        } catch (e) {
            e.printStackTrace()
            throw e
        }

        return ret
    }

}

这是来自合作者的一种方法GridUtilService

import grails.converters.JSON

class GridUtilService {

    def getDomainList(Class domain, def params){
        /* some code */
        return [rows: rows, totalRecords: totalRecords, page: params.page, totalPage: totalPage]
    }
}

这是我的(不工作)单元测试:

import grails.test.mixin.TestFor
import grails.test.mixin.Mock
import com.emerio.baseapp.utils.GridUtilService

@TestFor(CommonCodeService)
@Mock([CommonCode,GridUtilService])
class CommonCodeServiceTests {

    void testGetList() {
        def rowList = [new CommonCode(key: 'value', value: 'value')]
        def serviceStub = mockFor(GridUtilService)
        serviceStub.demand.getDomainList {Map p -> [rows: rowList, totalRecords: rowList.size(), page:1, totalPage: 1]}
        service.gridUtilService = serviceStub.createMock()
        service.getList() // this is line 16
    }

}

当我运行测试时,它显示异常:

No such property: rows for class: com.emerio.baseapp.CommonCodeServiceTests
groovy.lang.MissingPropertyException: No such property: rows for class: com.emerio.baseapp.CommonCodeServiceTests
    at com.emerio.baseapp.CommonCodeService.getList(CommonCodeService.groovy:15)
    at com.emerio.baseapp.CommonCodeServiceTests.testGetList(CommonCodeServiceTests.groovy:16)

似乎模拟GridUtilService返回CommonCodeServiceTests实例而不是Map. 我的单元测试有什么问题?

4

1 回答 1

1

看起来您需要为模拟getDomainList()调用修复方法参数。你有它Map m,但它可能需要Class c, Map m

文档

闭包参数必须与模拟方法的数量和类型匹配,否则您可以在主体中随意添加任何内容。

为什么在论点上的失误会表现得如此糟糕。我可以使用我自己的精简类来复制您的问题。我还发现,当参数丢失时,方法调用的返回类型是测试类的闭包,至少对于我的简单情况,然后可以.call()'ed 以获得所需的(模拟)结果。我不确定这种行为是否支持某种功能或者是一个错误。这当然令人困惑。

于 2012-12-04T18:14:02.820 回答