该文档讨论了依赖注入,但并未真正展示它是如何完成的。
文档也没有完成并且有一堆占位符:http: //ktor.io/getting-started.html
我尝试以接受参数(这是我的依赖项)的方式创建我的 main 函数,但是当我调用withTestApplication
. 我查看了应用程序代码,发现应用程序接受了一个配置对象,但我不知道如何更改该配置对象以在其中注入一些依赖项。
package org.jetbrains.ktor.application
/**
* Represents configured and running web application, capable of handling requests
*/
class Application(val environment: ApplicationEnvironment) : ApplicationCallPipeline() {
/**
* Called by host when [Application] is terminated
*/
fun dispose() {
uninstallAllFeatures()
}
}
/**
* Convenience property to access log from application
*/
val Application.log get() = environment.log
在使用我的测试代码中,withTestApplication
我有类似下面的内容:
@Test
internal fun myTest() = withTestApplication (Application::myMain)
如果我使用参数(我需要模拟和注入的参数)调用,上述操作withTestApplication
将失败。myMain
更新:
问题是在我的请求处理中,我正在使用一个连接到外部其他 Web 服务并执行一些请求的依赖类,我需要一种能够注入它的方法,因此在我的测试中我可以存根/模拟它并更改它基于我的测试用例的行为。