mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
INFRA-570: Disable new SSL tests when running on JDK11 (#6560)
This commit is contained in:
parent
b3a98763ea
commit
9fd8107922
@ -3,6 +3,7 @@ package net.corda.node.amqp
|
|||||||
import com.nhaarman.mockito_kotlin.doReturn
|
import com.nhaarman.mockito_kotlin.doReturn
|
||||||
import com.nhaarman.mockito_kotlin.mock
|
import com.nhaarman.mockito_kotlin.mock
|
||||||
import com.nhaarman.mockito_kotlin.whenever
|
import com.nhaarman.mockito_kotlin.whenever
|
||||||
|
import net.corda.core.internal.JavaVersion
|
||||||
import net.corda.core.internal.div
|
import net.corda.core.internal.div
|
||||||
import net.corda.core.toFuture
|
import net.corda.core.toFuture
|
||||||
import net.corda.core.utilities.NetworkHostAndPort
|
import net.corda.core.utilities.NetworkHostAndPort
|
||||||
@ -19,6 +20,7 @@ import net.corda.nodeapi.internal.protonwrapper.netty.toRevocationConfig
|
|||||||
import net.corda.testing.core.ALICE_NAME
|
import net.corda.testing.core.ALICE_NAME
|
||||||
import net.corda.testing.core.BOB_NAME
|
import net.corda.testing.core.BOB_NAME
|
||||||
import net.corda.testing.driver.internal.incrementalPortAllocation
|
import net.corda.testing.driver.internal.incrementalPortAllocation
|
||||||
|
import org.junit.Assume.assumeFalse
|
||||||
import org.junit.Before
|
import org.junit.Before
|
||||||
import org.junit.Rule
|
import org.junit.Rule
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
@ -133,6 +135,9 @@ class AMQPClientSslErrorsTest(@Suppress("unused") private val iteration: Int) {
|
|||||||
|
|
||||||
@Test(timeout = 300_000)
|
@Test(timeout = 300_000)
|
||||||
fun trivialClientServerExchange() {
|
fun trivialClientServerExchange() {
|
||||||
|
// SSL works quite differently in JDK 11 and re-work is needed
|
||||||
|
assumeFalse(JavaVersion.isVersionAtLeast(JavaVersion.Java_11))
|
||||||
|
|
||||||
val serverPort = portAllocation.nextPort()
|
val serverPort = portAllocation.nextPort()
|
||||||
val serverThread = ServerThread(serverKeyManagerFactory, serverTrustManagerFactory, serverPort).also { it.start() }
|
val serverThread = ServerThread(serverKeyManagerFactory, serverTrustManagerFactory, serverPort).also { it.start() }
|
||||||
|
|
||||||
@ -168,6 +173,9 @@ class AMQPClientSslErrorsTest(@Suppress("unused") private val iteration: Int) {
|
|||||||
|
|
||||||
@Test(timeout = 300_000)
|
@Test(timeout = 300_000)
|
||||||
fun amqpClientServerConnect() {
|
fun amqpClientServerConnect() {
|
||||||
|
// SSL works quite differently in JDK 11 and re-work is needed
|
||||||
|
assumeFalse(JavaVersion.isVersionAtLeast(JavaVersion.Java_11))
|
||||||
|
|
||||||
val serverPort = portAllocation.nextPort()
|
val serverPort = portAllocation.nextPort()
|
||||||
val serverThread = ServerThread(serverKeyManagerFactory, serverTrustManagerFactory, serverPort)
|
val serverThread = ServerThread(serverKeyManagerFactory, serverTrustManagerFactory, serverPort)
|
||||||
.also { it.start() }
|
.also { it.start() }
|
||||||
@ -188,6 +196,9 @@ class AMQPClientSslErrorsTest(@Suppress("unused") private val iteration: Int) {
|
|||||||
|
|
||||||
@Test(timeout = 300_000)
|
@Test(timeout = 300_000)
|
||||||
fun amqpClientServerHandshakeTimeout() {
|
fun amqpClientServerHandshakeTimeout() {
|
||||||
|
// SSL works quite differently in JDK 11 and re-work is needed
|
||||||
|
assumeFalse(JavaVersion.isVersionAtLeast(JavaVersion.Java_11))
|
||||||
|
|
||||||
val serverPort = portAllocation.nextPort()
|
val serverPort = portAllocation.nextPort()
|
||||||
val serverThread = ServerThread(serverKeyManagerFactory, serverTrustManagerFactory, serverPort, 5.seconds)
|
val serverThread = ServerThread(serverKeyManagerFactory, serverTrustManagerFactory, serverPort, 5.seconds)
|
||||||
.also { it.start() }
|
.also { it.start() }
|
||||||
|
Loading…
Reference in New Issue
Block a user