Skip to content

Commit

Permalink
cxf-soap SSL tests fail with Quarkus CXF 3.13.0 fix #6294
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Jul 30, 2024
1 parent f1e885a commit 9305683
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
package org.apache.camel.quarkus.component.cxf.soap.ssl.it;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;

@Disabled("https://github.com/apache/camel-quarkus/issues/6294")
@QuarkusIntegrationTest
class CxfSoapGlobalTrustedSslIT extends CxfSoapGlobalTrustedSslTest {
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@
import io.quarkus.test.junit.QuarkusTestProfile;
import io.quarkus.test.junit.TestProfile;
import io.restassured.RestAssured;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.hamcrest.Matchers.equalTo;

@Disabled("https://github.com/apache/camel-quarkus/issues/6294")
@QuarkusTest
@TestProfile(CxfSoapGlobalTrustedSslTest.class)
public class CxfSoapGlobalTrustedSslTest implements QuarkusTestProfile {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
package org.apache.camel.quarkus.component.cxf.soap.ssl.it;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;

@Disabled("https://github.com/apache/camel-quarkus/issues/6294")
@QuarkusIntegrationTest
class CxfSoapGlobalUntrustedSslIT extends CxfSoapGlobalUntrustedSslTest {
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@
import io.quarkus.test.junit.QuarkusTestProfile;
import io.quarkus.test.junit.TestProfile;
import io.restassured.RestAssured;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.hamcrest.Matchers.containsString;

@Disabled("https://github.com/apache/camel-quarkus/issues/6294")
@QuarkusTest
@TestProfile(CxfSoapGlobalUntrustedSslTest.class)
public class CxfSoapGlobalUntrustedSslTest implements QuarkusTestProfile {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
package org.apache.camel.quarkus.component.cxf.soap.ssl.it;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;

@Disabled("https://github.com/apache/camel-quarkus/issues/6294")
@QuarkusIntegrationTest
class CxfSoapSslIT extends CxfSoapSslTest {
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@
import io.quarkus.test.junit.QuarkusTestProfile;
import io.quarkus.test.junit.TestProfile;
import io.restassured.RestAssured;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.equalTo;

// Tests require restart of Quarkus to avoid persisting of global ssl context.
@Disabled("https://github.com/apache/camel-quarkus/issues/6294")
@QuarkusTest
@TestProfile(CxfSoapSslTest.class)
public class CxfSoapSslTest implements QuarkusTestProfile {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import io.restassured.RestAssured;
import jakarta.xml.ws.BindingProvider;
import jakarta.xml.ws.Service;
import jakarta.xml.ws.WebServiceException;
import jakarta.xml.ws.soap.SOAPFaultException;
import org.apache.camel.quarkus.components.cxf.soap.wss.client.helloworld.SayHelloService;
import org.apache.camel.quarkus.components.cxf.soap.wss.client.helloworld.SayHelloWrongWS;
import org.apache.cxf.ws.security.SecurityConstants;
Expand Down Expand Up @@ -114,15 +114,8 @@ public void testWrongClientNotHanging() {
try {
//always fails because there is no server implementation
createSayHelloWrongClient().sayHelloWrong("Sheldon");
} catch (WebServiceException e) {
Throwable cause = e.getCause();
if (cause != null) {
Throwable parentCause = cause.getCause();
if (parentCause != null) {
return parentCause.getMessage() != null
&& parentCause.getMessage().toLowerCase().contains("connection refused");
}
}
} catch (SOAPFaultException e) {
return e.getMessage() != null && e.getMessage().toLowerCase().contains("connection refused");
}
//can not happen (client does not work)
return false;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<optaplanner.version>9.37.0.Final</optaplanner.version><!-- This should be in sync with quarkus-platform https://repo1.maven.org/maven2/org/optaplanner/optaplanner-quarkus/ -->
<quarkiverse-amazonservices.version>2.16.0</quarkiverse-amazonservices.version><!-- This should be in sync with quarkus-platform https://repo1.maven.org/maven2/io/quarkiverse/amazonservices/quarkus-amazon-services-parent/ -->
<quarkiverse-artemis.version>3.3.0</quarkiverse-artemis.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/artemis/quarkus-artemis-parent/ -->
<quarkiverse-cxf.version>3.13.0</quarkiverse-cxf.version><!-- This should be in sync with quarkus-platform https://repo1.maven.org/maven2/io/quarkiverse/cxf/quarkus-cxf-parent/ -->
<quarkiverse-cxf.version>3.13.1</quarkiverse-cxf.version><!-- This should be in sync with quarkus-platform https://repo1.maven.org/maven2/io/quarkiverse/cxf/quarkus-cxf-parent/ -->
<quarkiverse-freemarker.version>1.0.0</quarkiverse-freemarker.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/freemarker/quarkus-freemarker-parent/ -->
<quarkiverse-groovy.version>3.12.1</quarkiverse-groovy.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/groovy/quarkus-groovy-parent/ -->
<quarkiverse-jackson-jq.version>2.0.2</quarkiverse-jackson-jq.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/jackson-jq/quarkus-jackson-jq-parent/ -->
Expand Down

0 comments on commit 9305683

Please sign in to comment.