繁体   English   中英

NullPointerException 而 mocking s3Service + junit

[英]NullPointerException while mocking s3Service + junit

我正在使用 amazon s3 进行文档存储。 我需要为使用 s3 的服务 class 编写测试用例。

如何模拟 s3 object?

我试过下面的方法,但得到了 NPE。

示例测试用例:

@ExtendWith(MockitoExtension.class)
class MyServiceTest {

    @InjectMocks
    private MyService myService;

    @InjectMocks
    private S3Service s3Service;
    @Mock
    private S3Configuration.S3Storage s3Storage;
    @Mock
    private AmazonS3 amazonS3;

    @BeforeEach
    public void setup() {
        ReflectionTestUtils.setField(myService, "s3Service", s3Service);
        ReflectionTestUtils.setField(s3Service, "s3Storage", s3Storage);
    }

 @Test
    void getDetailTest() {

        given(s3Storage.getClient()).willReturn(amazonS3);
        given(s3Service.getBucket()).willReturn("BUCKET1");
        given(s3Service.readFromS3(s3Service.getBucket(),"myfile1.txt")).willReturn("hello from s3 file"); //Null pointer exception
}
}

下面是 s3 服务 class 抛出 NPE 的示例。

public String readFromS3(String bucketName, String key) {
        var s3object = s3Storage.getClient().getObject(new GetObjectRequest(bucketName, key));
//s3Object is getting null when run the test case.
    //more logic

}

如何从MyService class 模拟s3Service.readFromS3()

您不需要在测试中模拟每个 object,使用模拟构建您的服务非常好......

@ExtendWith(MockitoExtension.class)
class MyServiceTest {

    private MyService myService;

    @Mock
    private AmazonS3 amazonS3;

    @BeforeEach
    public void setup() {
        this.myService = new MyService(amazonS3);
    }

    @Test
    void getDetailTest() {
        given(this.amazonS3.getXXX()).willReturn(new Yyyyy());
        assertEqual("ok", this.myService.doSmth());
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM