如何从junit测试中调用SpringBoot应用程序的main方法并使其停止

时间:2018-08-02 02:26:46

标签: java spring-boot junit

我有一个非常简单的SpringBoot应用程序,该应用程序在localhost:8085公开了一个其他终结点。

@SpringBootApplication
public class App 
{
    public static void main(String[] args)
    {
        SpringApplication.run(App.class, args);
        System.out.println("The gOaT");
    }
}

@RestController
public class Enpoints {

    @RequestMapping("/goat")
    public String home() {
        return "Goat";
    }
}

我想在junit测试中启动我的应用程序。这样成功完成了:

public class SomeTest extends TestCase {

    @Test
    public void testOne() {
        String[] args = new String[0];
        App.main(args);
        assertTrue(true);
    }

}

问题在于,一旦单元测试初始化​​了应用程序,它也会立即将其关闭(我认为这是因为单元测试本身终止了):

2018-08-01 21:20:43.422  INFO 4821 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8085 (http) with context path ''
2018-08-01 21:20:43.428  INFO 4821 --- [           main] com.boot.BootTraining.App                : Started App in 3.168 seconds (JVM running for 3.803)
The gOaT
2018-08-01 21:20:43.468  INFO 4821 --- [       Thread-3] ConfigServletWebServerApplicationContext : Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@56dc1551: startup date [Wed Aug 01 21:20:40 CDT 2018]; root of context hierarchy
2018-08-01 21:20:43.470  INFO 4821 --- [       Thread-3] o.s.j.e.a.AnnotationMBeanExporter        : Unregistering JMX-exposed beans on shutdown

如何运行此测试,启动应用程序,然后阻止应用程序关闭?

2 个答案:

答案 0 :(得分:1)

使用以下注释注释您的课程:

@RunWith(SpringRunner.class)
@SpringBootTest(classes = App.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)

它将把应用程序加载到上下文中并保持您的应用程序运行。

答案 1 :(得分:0)

要测试其余的api,您要么需要嘲笑mvcvc,要么需要类似的框架。 用

注释您的班级
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)

我有一个示例项目,可能对您入门很有帮助: https://github.com/dhananjay12/test-frameworks-tools/tree/master/test-rest-assured