spring - 如何使用 Spring Boot 1.4.0 + 为 JUNIT 测试用例使用随机端口

标签 spring spring-boot junit4 spring-test spring-test-mvc

我正在使用 spring boot 1.3.6 并且我的 JUNIT 测试用例运行良好,在升级到 spring boot 1.4.0 并尝试删除已弃用的类后抛出错误

我的 JUNITCLASS 与 1.3.x

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)
@WebAppConfiguration
@IntegrationTest({"server.port=0"})
public class CustomerControllerIT {

    @Value("${local.server.port}")
    private int port;
    private URL base;
    private RestTemplate template;

    @Autowired
    private DataBuilder dataBuilder;

    @Autowired
    private CustomerRepository customerRepository;

    private static final String JSON_CONTENT_TYPE = "application/json;charset=UTF-8"; 


    @Before
    public void setUp() throws Exception {
        this.base = new URL("http://localhost:" + port + "/rest/customers");
        template = new TestRestTemplate();      

        /* remove and reload test data */
        customerRepository.deleteAll();     
        dataBuilder.createCustomers().forEach(customer -> customerRepository.save(customer));       
    }

    @Test
    public void getAllCustomers() throws Exception {
        ResponseEntity<String> response = template.getForEntity(base.toString(), String.class);     
        assertThat(response.getStatusCode(), equalTo(HttpStatus.OK));

        List<Customer> customers = convertJsonToCustomers(response.getBody());      
        assertThat(customers.size(), equalTo(3));       
    }

private List<Customer> convertJsonToCustomers(String json) throws Exception        {        
    ObjectMapper mapper = new ObjectMapper();
    return mapper.readValue(json, TypeFactory.defaultInstance().constructCollectionType(List.class, Customer.class));
}
}

MyClass 与 1.4.0

更新完成
  • 删除了不推荐使用的 TestRestTemplate 和 spring 建议的一个
  • 使用 SpringRunner 而不是 SpringJUnit4ClassRunner 运行
  • 将 @SpringApplicationConfiguration(classes = Application.class) 替换为 @SpringBootTest(classes = Application.class , webEnvironment=WebEnvironment.RANDOM_PORT)

  • 更改后
    @RunWith(SpringRunner.class)
    @SpringBootTest(classes = Application.class , webEnvironment=WebEnvironment.RANDOM_PORT)
    @WebAppConfiguration
    public class CustomerControllerIT {
    
        @Value("${local.server.port}")
        private int port;
        private URL base;
        private TestRestTemplate template;
    
        @Autowired
        private DataBuilder dataBuilder;
    
        @Autowired
        private CustomerRepository customerRepository;
    
        private static final String JSON_CONTENT_TYPE = "application/json;charset=UTF-8"; 
    
    
        @Before
        public void setUp() throws Exception {
            this.base = new URL("http://localhost:" + port + "/rest/customers");
            template = new TestRestTemplate();      
    
            /* remove and reload test data */
            customerRepository.deleteAll();     
            dataBuilder.createCustomers().forEach(customer -> customerRepository.save(customer));       
        }
    }
    

    现在我在尝试运行 JUNIT 测试用例时收到 NPE,如何设置随机端口以使我的 JUNIT 测试用例在 Spring Boot 1.4.0 + 中运行?

    更新:

    这是问题的堆栈跟踪
    java.lang.IllegalStateException: Failed to load ApplicationContext
        at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:124)
        at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:83)
        at org.springframework.test.context.web.ServletTestExecutionListener.setUpRequestContextIfNecessary(ServletTestExecutionListener.java:189)
        at org.springframework.test.context.web.ServletTestExecutionListener.prepareTestInstance(ServletTestExecutionListener.java:131)
        at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:230)
        at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:228)
        at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:287)
        at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
        at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:289)
        at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:247)
        at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94)
        at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
        at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
        at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
        at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
        at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
        at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
        at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
        at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
        at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191)
        at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
        at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
    Caused by: java.lang.NullPointerException
        at org.springframework.test.context.web.socket.MockServerContainerContextCustomizer.customizeContext(MockServerContainerContextCustomizer.java:38)
        at org.springframework.boot.test.context.SpringBootContextLoader$ContextCustomizerAdapter.initialize(SpringBootContextLoader.java:270)
        at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:633)
        at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:347)
        at org.springframework.boot.SpringApplication.run(SpringApplication.java:311)
        at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:111)
        at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:98)
        at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:116)
        ... 25 more
    

    最佳答案

    来自 Spring Blog我已经更新了你的最新样本。

    @RunWith(SpringRunner.class)
    @SpringBootTest(classes = Application.class, webEnvironment=WebEnvironment.RANDOM_PORT)
    public class CustomerControllerIT {
        @Autowired
        private TestRestTemplate template;
    
        @Autowired
        private DataBuilder dataBuilder;
    
        @Autowired
        private CustomerRepository customerRepository;
    
        private static final String JSON_CONTENT_TYPE = "application/json;charset=UTF-8"; 
    
    
        @Before
        public void setUp() throws Exception {
            /* remove and reload test data */
            customerRepository.deleteAll();     
            dataBuilder.createCustomers().forEach(customer -> customerRepository.save(customer));       
        }
    
        @Test
        public void getAllCustomers() throws Exception {
            ResponseEntity<String> response = template.getForEntity("/rest/customers", String.class);     
            assertThat(response.getStatusCode(), equalTo(HttpStatus.OK));
    
            List<Customer> customers = convertJsonToCustomers(response.getBody());      
            assertThat(customers.size(), equalTo(3));       
        }
    }
    

    关于spring - 如何使用 Spring Boot 1.4.0 + 为 JUNIT 测试用例使用随机端口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38858932/

    相关文章:

    java - 如何使用 Spring 为 JUnit 测试注入(inject) ServletContext?

    java - 当配置影响方法结果时进行适当的测试?

    Java-JUnit怎么办?

    java - 我怎样才能将这个使用 SpringJUnit4ClassRunner 的面向 'spring 3.1' 的 junit4 测试转换为基于 spring 的基于 junit3.8 的测试?

    java - 指定字段对于 MongoDB 是 transient 的,但对于 RestController 不是

    java - spring 、 java servlet 和 tomcat 在将 url 映射到资源方面的确切关系是什么?

    java - 在 Spring Data cassandra 中查询两列

    java - 如何重启 kubernetes 服务的多个 spring boot 应用程序实例

    java - restTemplate.getForEntity() 获取连接超时

    java - 如何解密@ConfigurationProperties bean 中使用的属性?