jvmTest.okhttp3.SessionReuseTest.kt Maven / Gradle / Ivy
/*
* Copyright (C) 2019 Square, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okhttp3
import mockwebserver3.MockResponse
import mockwebserver3.MockWebServer
import okhttp3.testing.Flaky
import okhttp3.testing.PlatformRule
import okhttp3.testing.PlatformVersion
import okhttp3.tls.internal.TlsUtil
import okio.ByteString.Companion.toByteString
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Assertions.assertNotEquals
import org.junit.jupiter.api.Assumptions.assumeTrue
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.extension.RegisterExtension
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.ValueSource
import javax.net.ssl.SSLSocket
class SessionReuseTest(
val server: MockWebServer
) {
@JvmField @RegisterExtension var platform = PlatformRule()
@JvmField @RegisterExtension val clientTestRule = OkHttpClientTestRule()
private val handshakeCertificates = TlsUtil.localhost()
var client = clientTestRule.newClient()
@BeforeEach
fun setUp() {
// Default after JDK 14, but we are avoiding tests that assume special setup.
// System.setProperty("jdk.tls.client.enableSessionTicketExtension", "true")
// System.setProperty("jdk.tls.server.enableSessionTicketExtension", "true")
}
@ParameterizedTest(name = "{displayName}({arguments})")
@ValueSource(strings = ["TLSv1.2", "TLSv1.3"])
@Flaky
fun testSessionReuse(tlsVersion: String) {
if (tlsVersion == TlsVersion.TLS_1_3.javaName) {
assumeTrue(PlatformVersion.majorVersion != 8)
}
val sessionIds = mutableListOf()
enableTls()
val tlsVersion = TlsVersion.forJavaName(tlsVersion)
val spec = ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS)
.tlsVersions(tlsVersion)
.build()
var reuseSession = false
val sslContext = handshakeCertificates.sslContext()
val systemSslSocketFactory = sslContext.socketFactory
val sslSocketFactory = object : DelegatingSSLSocketFactory(systemSslSocketFactory) {
override fun configureSocket(sslSocket: SSLSocket): SSLSocket {
return sslSocket.apply {
if (reuseSession) {
this.enableSessionCreation = false
}
}
}
}
client = client.newBuilder()
.connectionSpecs(listOf(spec))
.eventListenerFactory(clientTestRule.wrap(object : EventListener() {
override fun connectionAcquired(call: Call, connection: Connection) {
val sslSocket = connection.socket() as SSLSocket
sessionIds.add(sslSocket.session.id.toByteString().hex())
}
}))
.sslSocketFactory(sslSocketFactory, handshakeCertificates.trustManager)
.build()
server.enqueue(MockResponse().setBody("abc1"))
server.enqueue(MockResponse().setBody("abc2"))
val request = Request.Builder().url(server.url("/")).build()
client.newCall(request).execute().use { response ->
assertEquals(200, response.code)
}
client.connectionPool.evictAll()
assertEquals(0, client.connectionPool.connectionCount())
// Force reuse. This appears flaky (30% of the time) even though sessions are reused.
// javax.net.ssl.SSLHandshakeException: No new session is allowed and no existing
// session can be resumed
//
// Report https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8264944
// Sessions improvement https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8245576
if (!platform.isJdk9() && !platform.isOpenJsse() && !platform.isJdk8Alpn()) {
reuseSession = true
}
client.newCall(request).execute().use { response ->
assertEquals(200, response.code)
}
assertEquals(2, sessionIds.size)
val directSessionIds =
sslContext.clientSessionContext.ids.toList().map { it.toByteString().hex() }
if (platform.isConscrypt()) {
if (tlsVersion == TlsVersion.TLS_1_3) {
assertThat(sessionIds[0]).isBlank()
assertThat(sessionIds[1]).isBlank()
// https://github.com/google/conscrypt/issues/985
// assertThat(directSessionIds).containsExactlyInAnyOrder(sessionIds[0], sessionIds[1])
} else {
assertThat(sessionIds[0]).isNotBlank()
assertThat(sessionIds[1]).isNotBlank()
assertThat(directSessionIds).containsExactlyInAnyOrder(sessionIds[1])
}
} else {
if (tlsVersion == TlsVersion.TLS_1_3) {
// We can't rely on the same session id with TLSv1.3 ids.
assertNotEquals(sessionIds[0], sessionIds[1])
} else {
// With TLSv1.2 it is really JDK specific.
// assertEquals(sessionIds[0], sessionIds[1])
// assertThat(directSessionIds).contains(sessionIds[0], sessionIds[1])
}
assertThat(sessionIds[0]).isNotBlank()
}
}
private fun enableTls() {
client = client.newBuilder()
.sslSocketFactory(
handshakeCertificates.sslSocketFactory(), handshakeCertificates.trustManager
)
.build()
server.useHttps(handshakeCertificates.sslSocketFactory(), false)
}
}