1

在本教程之后,我有一个基于 Spring Boot 的独立(非 Web)应用程序: https ://www.mkyong.com/spring-boot/spring-boot-jdbc-mysql-hikaricp-example/

我直接使用 mysql 跳过了 hikaricp 部分。该应用程序运行良好,能够查询、调用 RESTful Web 服务......但是,我无法进行 junit 测试工作,不断收到此错误:

java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
    at org.springframework.util.Assert.state(Assert.java:70)
    at org.springframework.boot.test.context.SpringBootTestContextBootstrapper.getOrFindConfigurationClasses(SpringBootTestContextBootstrapper.java:202)
    at org.springframework.boot.test.context.SpringBootTestContextBootstrapper.processMergedContextConfiguration(SpringBootTestContextBootstrapper.java:137)
    at org.springframework.test.context.support.AbstractTestContextBootstrapper.buildMergedContextConfiguration(AbstractTestContextBootstrapper.java:409)
    at org.springframework.test.context.support.AbstractTestContextBootstrapper.buildDefaultMergedContextConfiguration(AbstractTestContextBootstrapper.java:323)
    at org.springframework.test.context.support.AbstractTestContextBootstrapper.buildMergedContextConfiguration(AbstractTestContextBootstrapper.java:277)
    at org.springframework.test.context.support.AbstractTestContextBootstrapper.buildTestContext(AbstractTestContextBootstrapper.java:112)
    at org.springframework.boot.test.context.SpringBootTestContextBootstrapper.buildTestContext(SpringBootTestContextBootstrapper.java:82)
    at org.springframework.test.context.TestContextManager.<init>(TestContextManager.java:120)
    at org.springframework.test.context.TestContextManager.<init>(TestContextManager.java:105)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTestContextManager(SpringJUnit4ClassRunner.java:152)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.<init>(SpringJUnit4ClassRunner.java:143)
    at org.springframework.test.context.junit4.SpringRunner.<init>(SpringRunner.java:49)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at org.junit.internal.builders.AnnotatedBuilder.buildRunner(AnnotatedBuilder.java:104)
    at org.junit.internal.builders.AnnotatedBuilder.runnerForClass(AnnotatedBuilder.java:86)
    at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:59)
    at org.junit.internal.builders.AllDefaultPossibilitiesBuilder.runnerForClass(AllDefaultPossibilitiesBuilder.java:26)
    at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:59)
    at org.junit.internal.requests.ClassRequest.getRunner(ClassRequest.java:33)
    at org.junit.internal.requests.FilterRequest.getRunner(FilterRequest.java:36)
    at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:275)
    at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:173)
    at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:149)
    at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:128)
    at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:203)
    at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:155)
    at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103)

相关的junit测试代码:

`

@RunWith(SpringRunner.class)
@RestClientTest(ArrivalRestClient.class)
public class ArrivalRestClientTest {
    private static final String MOCK_URL = "http://baseURI/arrival";
    @Autowired
    private ArrivalRestClient clientUnderTest;  
    @Autowired
    private ObjectMapper objectMapper;
    @Autowired
    private MockRestServiceServer mockServer;
    @Autowired
    private RestTemplate restTemplate;
    @Before
    public void setUp() throws Exception {
            mockServer = MockRestServiceServer.createServer(restTemplate);
            clientUnderTest = new ArrivalRestClient(MOCK_URL);
            ReflectionTestUtils.setField(clientUnderTest, "restTemplate", restTemplate);

    }
    @Test
    public void testGetArrivals() throws JsonProcessingException {

        Arrival arrival = new Arrival("JohnTest1", "GLBProduct", 0L);
        String arrivalString = objectMapper.writeValueAsString(arrival);
        this.mockServer.expect(requestTo("/arrival?source=source1&entity=entity1&timestamp=1000")).andRespond(withSuccess(arrivalString, MediaType.APPLICATION_JSON));

        Arrivals actual = clientUnderTest.getArrivals("JohnTest1", "GLBProduct", 0);

        System.out.println("getExpectedtime: " + actual.getNextRunTime());
        System.out.println("getPartitions: " + actual.getPartitions());

        assertEquals((long)2000, actual.getNextRunTime());
        assertEquals(new Long[]{ (long)2,(long)3}, actual.getPartitions());

    }
}`

即使是空的单元测试也会失败。相信这与它是一个 Spring Boot 独立应用程序(非 Web)有关。我找不到有关如何在线组合它的提示,谢谢您的帮助!

编辑---还添加我的主类代码:

@SpringBootApplication
public class DepManagerMain implements CommandLineRunner {

    final static Logger logger = Logger.getLogger(DepManagerMain.class);

    @Autowired
    DataSource dataSource;

    public static void main(String[] args) throws Exception {
        SpringApplication app = new SpringApplication(DepManagerMain.class);
        app.run(args);
    }

    @Override
    public void run(String... args) throws Exception {
        logger.info("DependencyManager starting");
        logger.info("DATASOURCE = " + dataSource);
        ...
    }
}   
4

2 回答 2

0

据我所知,@RestClientTest注释只为您提供有限数量的 bean。

我不认为RestTemplate是这些 bean 之一,所以我认为此时自动装配失败,因此它试图从你的 main 加载它@SpringBootConfiguration

@RestClientTest注释确实为您提供了一个,RestTemplateBuilder因此您可以自动连接它并从中构造一个RestTemplate

于 2017-08-23T15:11:19.540 回答
0

您需要通过 annotation 注释 ArrivalRestClientTest @SpringBootTest。使用CommandLineRunner时,CommandLineRunner由 Springboot 功能(如 AutoScan 等)提供便利。通过拥有@SpringBootTest,单元测试将能够扫描您便利的 springboot 功能。

于 2022-01-22T08:44:34.547 回答