使用模拟服务/组件进行弹簧启动集成测试
2022-09-03 04:41:18
情况和问题:在Spring Boot中,如何将一个或多个模拟类/Bean注入到应用程序中以进行集成测试?StackOverflow上有一些答案,但它们专注于Spring Boot 1.4之前的情况,或者只是不适合我。
背景是,在下面的代码中,设置的实现依赖于第三方服务器和其他外部系统。设置的功能已经在单元测试中进行了测试,因此对于完全集成测试,我想模拟对这些服务器或系统的依赖关系,只提供虚拟值。
MockBean 将忽略所有现有的 Bean 定义并提供一个虚拟对象,但此对象不会在注入此类的其他类中提供方法行为。使用@Before方法在测试之前设置行为不会影响注入的对象,也不会注入其他应用程序服务(如身份验证服务)。因此无法执行此操作。
我的问题:如何将我的Bean注入应用程序上下文?我的测试:
package ch.swaechter.testapp;
import ch.swaechter.testapp.utils.settings.Settings;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Primary;
import org.springframework.test.context.junit4.SpringRunner;
@TestConfiguration
@RunWith(SpringRunner.class)
@SpringBootTest(classes = {MyApplication.class})
public class MyApplicationTests {
@MockBean
private Settings settings;
@Before
public void before() {
Mockito.when(settings.getApplicationSecret()).thenReturn("Application Secret");
}
@Test
public void contextLoads() {
String applicationsecret = settings.getApplicationSecret();
System.out.println("Application secret: " + applicationsecret);
}
}
并且下面一个服务应该使用模拟类,但不会收到这个模拟类:
package ch.swaechter.testapp;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class AuthenticationServiceImpl implements AuthenticationService {
private final Settings settings;
@Autowired
public AuthenticationServiceImpl(Settings settings) {
this.settings = settings;
}
@Override
public boolean loginUser(String token) {
// Use the application secret to check the token signature
// But here settings.getApplicationSecret() will return null (Instead of Application Secret as specified in the mock)!
return false;
}
}