モデル オブジェクトにプロパティを設定するインターセプターがあります。単体テストでは、モデルは null です。
インターセプター
import groovy.transform.CompileStatic
import groovy.util.logging.Commons
@CompileStatic
@Commons
class FooInterceptor {
FooInterceptor() {
matchAll()
}
boolean after() {
model.foo = 'bar'
true
}
}
仕様
import grails.test.mixin.TestFor
import spock.lang.Specification
@TestFor(FooInterceptor)
class FooInterceptorSpec extends Specification {
void "Test Foo interceptor loads var to model"() {
when: "A request matches the interceptor"
withRequest(controller: 'foo', action: 'index')
interceptor.after()
then: "The interceptor loads the model"
interceptor.doesMatch()
interceptor.model.foo == 'bar'
}
}
スタックトレース
Cannot set property 'foo' on null object
java.lang.NullPointerException: Cannot set property 'foo' on null object
at bsb.core.web.FooInterceptor.after(FooInterceptor.groovy:13)
at bsb.core.web.FooInterceptorSpec.Test Foo interceptor loads var to model(FooInterceptorSpec.groovy:9)