【发布时间】:2016-07-30 16:27:01
【问题描述】:
我希望通过在Config.groovy 中获取一些配置条目来使用@PostConstuct 初始化一个服务。
我还希望检查这些条目是否正确配置,并抛出异常以便我看到应用程序配置错误。
在为此服务编写单元测试时,我在 Spock 中走到了死胡同。
Spock 显然调用了@PostConstruct 方法,但仅在共享服务实例上调用,然后在实际测试实例上执行您测试的任何实例方法。
这有一个反常的副作用:
我的初始化代码要么失败,因为我未能添加 setupSpec 来初始化共享实例,要么在被测方法中失败,因为该实例上实际上没有设置配置。
这是我的服务:
package issue
import org.codehaus.groovy.grails.commons.GrailsApplication
import javax.annotation.PostConstruct
class MyService {
GrailsApplication grailsApplication
String property
@PostConstruct
void init() {
println "Initializing... ${this}"
property = grailsApplication.config.myProperty
//Enabling this business sanity check make the service untestable under Spock, because to be able to run, we need to initialize the configuration
// of the shared instance - PostConstruct is only called on the shared instance for some reason.
// But the execution of the method under test will not have the initialized property, because the service being executed is not the shared instance
if (property == "[:]") {
throw new RuntimeException("This property cannot be empty")
}
}
void doSomething() {
println "Executing... ${this}"
println(property.toLowerCase())
}
}
这是我的第一个测试:
package issue
import grails.test.mixin.TestFor
import spock.lang.Specification
@TestFor(MyService)
class MyServiceSpec extends Specification {
def setup() {
grailsApplication.config.myProperty = 'myValue'
}
void "It fails to initialize the service"() {
expect:
false // this is never executed
}
}
这是第二个测试:
package issue
import grails.test.mixin.TestFor
import spock.lang.Specification
@TestFor(MyService)
class MyServiceWithSharedInstanceInitializationSpec extends Specification {
//Initializing the shared instance grailsApplication lets the @PostConstruct work, but will fail during method test
//because the instance that was initialized is the shared instance
def setupSpec() {
grailsApplication.config.myProperty = 'myValue'
}
void "It fails to execute doSomething"() {
when:
service.doSomething()
then:
def e = thrown(NullPointerException)
e.message == 'Cannot invoke method toLowerCase() on null object'
service.property == null
}
}
有没有办法干净地做到这一点?还是我必须放弃我的单元测试而只做一个(较慢的)集成测试,以避开这种怪异现象?
您可以在此处查看我的完整 grails 应用程序:
https://github.com/LuisMuniz/grails-spock-issue-with-postconstruct
【问题讨论】:
标签: unit-testing grails groovy grails-2.0 spock