我正在为此(工作正常)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
。我的单元测试出了什么问题?
答案 0 :(得分:1)
看起来您需要为模拟getDomainList()
调用修复方法参数。您将其设为Map m
,但可能需要Class c, Map m
。
来自docs,
闭包参数必须与模拟方法的数量和类型相匹配,否则您可以自由地在正文中添加任何内容。
为什么错过参数的行为方式就像是一个难题。我可以使用我自己的精简课程来复制你的问题。我还发现,当存在param miss时,对方法进行调用的返回类型是测试类的闭包,对于我的简单情况,至少可以.call()
来获得所需的(嘲笑)结果。我不确定这种行为是否支持某种功能或是一个bug。这当然令人困惑。