Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KTOR-678 Add test for Auth with Jackson #3154

Merged
merged 1 commit into from Sep 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -26,5 +26,11 @@ kotlin {
api(project(":ktor-server:ktor-server-test-host"))
}
}
jvmTest {
dependencies {
api(project(":ktor-server:ktor-server-plugins:ktor-server-content-negotiation"))
api(project(":ktor-shared:ktor-serialization:ktor-serialization-jackson"))
}
}
}
}
@@ -0,0 +1,59 @@
/*
* Copyright 2014-2022 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
*/

package io.ktor.tests.auth

import io.ktor.client.request.*
import io.ktor.http.*
import io.ktor.serialization.jackson.*
import io.ktor.server.application.*
import io.ktor.server.auth.*
import io.ktor.server.plugins.contentnegotiation.*
import io.ktor.server.response.*
import io.ktor.server.routing.*
import io.ktor.server.testing.*
import kotlin.test.*

class AuthWithPlugins {

@Test
fun testFormAuthWithJackson() = testApplication {
install(ContentNegotiation) {
jackson()
}
install(Authentication) {
form {
challenge("/unauthorized")
validate { credentials ->
if (credentials.name == credentials.password) {
UserIdPrincipal(credentials.name)
} else {
null
}
}
}
}

routing {
get("/unauthorized") {
call.respond(HttpStatusCode.Unauthorized, "Unauthorized")
}
authenticate {
post("/test") {
call.respondText("OK")
}
}
}

val response = client.post("/test") {
header(HttpHeaders.ContentType, ContentType.Application.Json)
setBody("{}")
}

assertEquals(HttpStatusCode.Found, response.status)

val location = response.headers[HttpHeaders.Location] ?: fail("Location header is missing")
assertEquals("/unauthorized", location)
}
}