diff --git a/network-management/src/integration-test/kotlin/com/r3/corda/networkmanage/doorman/DoormanIntegrationTest.kt b/network-management/src/integration-test/kotlin/com/r3/corda/networkmanage/doorman/DoormanIntegrationTest.kt index 4f670c8e80..16faed8f6e 100644 --- a/network-management/src/integration-test/kotlin/com/r3/corda/networkmanage/doorman/DoormanIntegrationTest.kt +++ b/network-management/src/integration-test/kotlin/com/r3/corda/networkmanage/doorman/DoormanIntegrationTest.kt @@ -44,6 +44,7 @@ class DoormanIntegrationTest { @JvmField val testSerialization = SerializationEnvironmentRule(true) + // TODO: fix me (see commented out code in this test) @Ignore @Test fun `initial registration`() { @@ -61,7 +62,6 @@ class DoormanIntegrationTest { whenever(it.compatibilityZoneURL).thenReturn(URL("http://${doormanHostAndPort.host}:${doormanHostAndPort.port}")) whenever(it.emailAddress).thenReturn("iTest@R3.com") } - // TODO: fix me // config.rootCaCertFile.parent.createDirectories() // X509Utilities.saveCertificateAsPEMFile(rootCertAndKey.certificate.toX509Certificate(), config.rootCaCertFile) @@ -95,6 +95,7 @@ class DoormanIntegrationTest { doorman.close() } + // TODO: fix me (see commented out code in this test) @Ignore @Test fun `nodeInfo is published to the network map`() { @@ -113,7 +114,6 @@ class DoormanIntegrationTest { whenever(it.compatibilityZoneURL).thenReturn(URL("http://${doormanHostAndPort.host}:${doormanHostAndPort.port}")) whenever(it.emailAddress).thenReturn("iTest@R3.com") } - // TODO: fix me // config.rootCaCertFile.parent.createDirectories() // X509Utilities.saveCertificateAsPEMFile(rootCertAndKey.certificate.toX509Certificate(), config.rootCaCertFile) diff --git a/network-management/src/integration-test/kotlin/com/r3/corda/networkmanage/hsm/SigningServiceIntegrationTest.kt b/network-management/src/integration-test/kotlin/com/r3/corda/networkmanage/hsm/SigningServiceIntegrationTest.kt index bc7e4a12a4..78c470288d 100644 --- a/network-management/src/integration-test/kotlin/com/r3/corda/networkmanage/hsm/SigningServiceIntegrationTest.kt +++ b/network-management/src/integration-test/kotlin/com/r3/corda/networkmanage/hsm/SigningServiceIntegrationTest.kt @@ -89,6 +89,7 @@ class SigningServiceIntegrationTest { } } + // TODO: fix me (see commented out code in this test) @Ignore @Test fun `Signing service signs approved CSRs`() { @@ -127,7 +128,6 @@ class SigningServiceIntegrationTest { // [org.hibernate.tool.schema.spi.SchemaManagementException] being thrown as the schema is missing. } } - // TODO: fix me: // config.rootCaCertFile.parent.createDirectories() // X509Utilities.saveCertificateAsPEMFile(rootCACert, config.rootCaCertFile) NetworkRegistrationHelper(config, HTTPNetworkRegistrationService(config.compatibilityZoneURL!!)).buildKeystore()