Grails spock单元测试查询

时间:2016-03-04 08:27:42

标签: unit-testing grails mocking spock

我在Spock单元测试中使用grails 2.3.7 ..我正在嘲笑findWhere方法..

  DocumentHeader.metaClass.static.findWhere = {DocumentType type, String workStation, Boolean complete ->
            println "Running mock findWhere .. "
            new DefaultDocument()
        }

我用来模拟服务中的方法调用..

def returnDocument =  DocumentHeader.findWhere(documentType:DocumentType.DEFAULT_TYPE,
                        workStation: requirement.workstation,
                        complete: false)

参数类型是正确的但是在调用测试时我得到了

Cannot query [com.sample.DocumentHeader] on non-existent property: workStation org.springframework.dao.InvalidDataAccessResourceUsageException: Cannot query [com.vantec.DocumentHeader] on non-existent property: workStation
at org.grails.datastore.mapping.simple.query.SimpleMapQuery

所以它似乎在调用真正的方法 - 而不是模拟..任何想法?不要记得先嘲笑findWhere查询,以便有人知道任何问题吗? TIA ..

1 个答案:

答案 0 :(得分:0)

通过此代码,您正在嘲笑(或者更确切地说是添加)方法

DocumentHeader findWhere(DocumentType dt, String w, Boolean c)

但在你的服务中,你正在打电话

DocumentHeader findWhere(Map props)

尝试将metaClass更改为:

DocumentHeader.metaClass.static.findWhere = {Map props ->
    println "Running mock findWhere .. "
    new DefaultDocument()
}