我有非常简单的应用程序,它使用Jooby
作为Web框架。它负责 REST 的类看起来像这样
class Sandbox : Kooby ({
path("/sandbox") {
get {
val environment = require(Config::class).getString("application.env")
"Current environment: $environment"
}
get ("/:name") {
val name = param("name")
"Auto response $name"
}
}
})
我想为它编写集成测试。我的测试看起来像这样。我使用spock
和rest-assured
.问题是我没有运行应用程序,并希望使用某种嵌入式服务器或其他东西运行它。 怎么做?
我的简单测试如下所示
class SandboxTest extends Specification {
def "check current environment"() {
given:
def request = given()
when:
def response = request.when().get("/sandbox")
then:
response.then().statusCode(200) // for now 404
}
}
你需要在 Spock 中寻找测试(或类(之前/之后的钩子。在前面的钩子中,你启动Jooby而不阻塞线程:
app.start("server.join=false")
在后钩中:
app.stop();
从未使用过Spock,但这里有一个用于Spek的小扩展方法:
fun SpecBody.jooby(app: Jooby, body: SpecBody.() -> Unit) {
beforeGroup {
app.start("server.join=false")
}
body()
afterGroup {
app.stop()
}
}
最后从你的测试:
@RunWith(JUnitPlatform::class)
object AppTest : Spek({
jooby(App()) {
describe("Get with query parameter") {
given("queryParameter name=Kotlin") {
it("should return Hello Kotlin!") {
val name = "Kotlin"
given()
.queryParam("name", name)
.`when`()
.get("/")
.then()
.assertThat()
.statusCode(Status.OK.value())
.extract()
.asString()
.let {
assertEquals(it, "Hello $name!")
}
}
...
...
...
...
Maven Spek 示例
Gradle Spek 示例