|
1 | 1 | /*
|
2 |
| - * Copyright 2014-2019 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license. |
| 2 | + * Copyright 2014-2025 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license. |
3 | 3 | */
|
4 | 4 |
|
5 | 5 | package io.ktor.client.plugins.auth
|
6 | 6 |
|
7 | 7 | import io.ktor.client.plugins.auth.providers.*
|
| 8 | +import io.ktor.client.request.* |
| 9 | +import io.ktor.http.* |
8 | 10 | import io.ktor.http.auth.*
|
9 |
| -import kotlin.test.* |
| 11 | +import io.ktor.utils.io.* |
| 12 | +import kotlinx.coroutines.test.runTest |
| 13 | +import kotlin.test.Test |
| 14 | +import kotlin.test.assertEquals |
| 15 | +import kotlin.test.assertNotNull |
| 16 | +import kotlin.test.assertTrue |
10 | 17 |
|
11 | 18 | class BasicProviderTest {
|
12 | 19 | @Test
|
@@ -44,6 +51,25 @@ class BasicProviderTest {
|
44 | 51 | assertTrue(provider.isApplicable(header), "Provider with capitalized scheme should be applicable")
|
45 | 52 | }
|
46 | 53 |
|
| 54 | + @OptIn(InternalAPI::class) |
| 55 | + @Test |
| 56 | + fun `update credentials after clearToken`() = runTest { |
| 57 | + var credentials = BasicAuthCredentials("admin", "admin") |
| 58 | + val provider = BasicAuthProvider(credentials = { credentials }) |
| 59 | + |
| 60 | + val requestBuilder = HttpRequestBuilder() |
| 61 | + suspend fun assertAuthorizationHeader(expected: String) { |
| 62 | + provider.addRequestHeaders(requestBuilder, authHeader = null) |
| 63 | + assertEquals(expected, requestBuilder.headers[HttpHeaders.Authorization]) |
| 64 | + } |
| 65 | + |
| 66 | + assertAuthorizationHeader("Basic YWRtaW46YWRtaW4=") |
| 67 | + credentials = BasicAuthCredentials("user", "qwerty") |
| 68 | + assertAuthorizationHeader("Basic YWRtaW46YWRtaW4=") |
| 69 | + provider.clearToken() |
| 70 | + assertAuthorizationHeader("Basic dXNlcjpxd2VydHk=") |
| 71 | + } |
| 72 | + |
47 | 73 | private fun buildAuthString(username: String, password: String): String =
|
48 | 74 | constructBasicAuthValue(BasicAuthCredentials(username, password))
|
49 | 75 | }
|
0 commit comments