groovy spock嘲笑春天autowired豆

时间:2015-05-18 12:50:47

标签: spring unit-testing groovy autowired spock

我有豆:

@Service
public class EQueueBookingService {

    @Autowired
    public EQueueBookingClient eQueueBookingClient;

我尝试使用Spock为这个bean EQueueBookingService编写一些测试。 https://code.google.com/p/spock/wiki/SpockBasics

我的模拟是

class EQueueBookingServiceTest extends Specification {

@Autowired
EQueueBookingService testedService;

EQueueBookingClient eQueueBookingClient = Mock(EQueueBookingClient);

def setup() {
    testedService.eQueueBookingClient = eQueueBookingClient;
}

和测试方法:

...
setup:
CancelBookingResponse response = new CancelBookingResponse();
...
eQueueBookingClient.cancelBooking(_, _) >> response;
when:

def result = testedService.cancelBooking(request);

then:
result != null && result.bookId == bookId

为什么eQueueBookingClient不会模拟?

当我调试它时:在测试中 - 我看到Mock实例,当我去方法时 - 我看到真正的bean实例。

非常感谢!

1 个答案:

答案 0 :(得分:0)

我找到了解决方案!

需要为此客户端实现setter并在以下设置中使用它:

private EQueueBookingClient eQueueBookingClient = Mock(EQueueBookingClient);

    def setup() {
            testedService.setBookingClient(eQueueBookingClient);
        }

如果将服务中的客户端定义为public并使用=它不起作用; 例如:

testedService.eQueueBookingClient = eQueueBookingClient;//mocked instance doesn't work