Ktor 嵌入式服务器未在测试中启动

时间:2021-04-27 19:46:58

标签: kotlin ktor

在我的 AcceptanceTests 中,我尝试使用以下非常粗鲁的代码来启动 Ktor 嵌入式服务器,以便能够检查服务器是否已启动并且测试是否可以启动:

fun start() {
    val configPath = ClassLoader.getSystemResource("application-acceptanceTest.conf").file
    val appEnvironment = commandLineEnvironment(arrayOf("-config=$configPath"))

    engine = embeddedServer(CIO, appEnvironment)
    engine.addShutdownHook {
        stop()
    }

    engine.start()

    val disposable = engine.environment.monitor.subscribe(ApplicationStarted) {
        started = true
    }

    while (!started) {
        // the start method should not exit until server is started successfully
        Thread.sleep(10)
    }

    disposable.dispose()
}

不幸的是,这在通过 gradle 运行测试时不起作用,但在 IntelliJ 中的单个测试运行期间确实起作用。任何提示表示赞赏。

我已经尝试添加一些日志语句,我确实看到 while 循环没有退出,因此我相信 ApplicationStarted 事件没有正确处理。

编辑:删除while循环时,测试使用gradle运行,但不在IntelliJ中运行:-(

1 个答案:

答案 0 :(得分:0)

所以,这完全取决于正确的顺序。它使用以下代码块:

fun start() {
    val configPath = ClassLoader.getSystemResource("application-acceptanceTest.conf").file
    val appEnvironment = commandLineEnvironment(arrayOf("-config=$configPath"))

    engine = embeddedServer(CIO, appEnvironment)
    engine.addShutdownHook {
        stop()
    }

    val disposable = engine.environment.monitor.subscribe(ApplicationStarted) {
        started = true
    }

    engine.start()

    while (!started) {
        // the start method should not exit until server is started successfully
        Thread.sleep(10)
    }

    disposable.dispose()
}

我在这里学到的教训是在启动服务器之前先注册事件监听器:-)

相关问题