我正在尝试为使用AnnotatorImageClient
库中的google-cloud-vision
使用Google视觉API的类编写单元测试。
问题是由于某种原因,我嘲笑的AnnotatorImageClient
仍然调用了真正的batchAnnotateImages
方法,然后抛出了NPE,这破坏了我的测试。
我以前从未在模拟游戏中看到过这种行为,并且想知道我是在做错什么,spock / groovy中是否有错误,或者是否与该Google lib有关?
我已经检查了类中使用的对象是否真的是模拟对象。我已经尝试过Spock 1.2-groovy-2.5和1.3-groovy.2.5
所测试的类:
public class VisionClient {
private final ImageAnnotatorClient client;
@Autowired
public VisionClient(final ImageAnnotatorClient client) {
this.client = client;
}
public Optional<BatchAnnotateImagesResponse> getLabelsForImage(final Image image) {
var feature = Feature.newBuilder().setType(LABEL_DETECTION).build();
var request = AnnotateImageRequest.newBuilder()
.addFeatures(feature)
.setImage(image)
.build();
return Optional.ofNullable(client.batchAnnotateImages(singletonList(request)));
}
测试:
class VisionClientSpec extends Specification {
def "The client should use Google's client to call Vision API"() {
given:
def googleClientMock = Mock(ImageAnnotatorClient)
def visionClient = new VisionClient(googleClientMock)
def imageMock = Image.newBuilder().build()
when:
def resultOpt = visionClient.getLabelsForImage(imageMock)
then:
1 * googleClientMock.batchAnnotateImages(_ as List) >> null
!resultOpt.isPresent()
}
}
我希望该模拟仅返回null
(我知道此测试没有多大意义)。而是调用com.google.cloud.vision.v1.ImageAnnotatorClient.batchAnnotateImages
并引发NPE。