gpt4 book ai didi

grails - 当 PostConstruct 调用注入(inject)服务时 Spock 失败

转载 作者:行者123 更新时间:2023-12-02 14:29:20 25 4
gpt4 key购买 nike

谁能告诉我如何解决在模拟之前调用 PostConstruct 的问题:

服务:

class MyService {
SecondService secondService // injected

@PostConstruct
void init() {
myFunction()
}

void myFunction() {
secondService.doSomething()
}

}

测试:
@TestFor(MyService)
class MyServiceSpec extends Specification {
void "testing my service"() {
given:
MyService service = GroovySpy(MyService) {
myFunction() >> null
}
then:
true
}
}

给出以下错误:
Invocation of init method failed; nested exception is java.lang.NullPointerException: Cannot invoke method doSomething() on null object

最佳答案

如果您有 @TestFor(MyService) - MyService 实例将自动创建,您可以将其用作“服务”。而且您不需要手动创建 MyService。

所以你只能删除 @TestFor(MyService) 或者使用它并删除 MyService 服务。

但是您还需要正确模拟“secondService”

@FreshRuntime
@TestFor(MyService)
class MyServiceSpec extends Specification {

def secondService = GroovyMock(SecondService)

def doWithSpring = {
secondService(InstanceFactoryBean, secondService, SecondService)
}

void "testing my service"() {
when:
service.myFunction()
then:
1 * secondService.doSomething()
}
}

关于grails - 当 PostConstruct 调用注入(inject)服务时 Spock 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44949921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com