Skip to content

Commit

Permalink
Move async VertxHttpClientConduit tests to quarkus-cxf-integration-te…
Browse files Browse the repository at this point in the history
…st-client-server
  • Loading branch information
ppalaga committed Dec 22, 2024
1 parent fb8125a commit 6b557e8
Show file tree
Hide file tree
Showing 25 changed files with 41 additions and 135 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
testModule: ['async-vertx-client', 'client', 'client-server', 'fastinfoset', 'hc5', 'metrics', 'mtls', 'mtls -Djks', 'mtom-awt', 'opentelemetry', 'saaj', 'santuario-xmlsec', 'server', 'ws-rm-client', 'ws-security', 'ws-security -Djks', 'ws-security-policy', 'ws-security-policy -Djks', 'ws-trust', 'wsdl2java', 'wsdl2java-no-config']
testModule: ['client', 'client-server', 'fastinfoset', 'hc5', 'metrics', 'mtls', 'mtls -Djks', 'mtom-awt', 'opentelemetry', 'saaj', 'santuario-xmlsec', 'server', 'ws-rm-client', 'ws-security', 'ws-security -Djks', 'ws-security-policy', 'ws-security-policy -Djks', 'ws-trust', 'wsdl2java', 'wsdl2java-no-config']
name: ${{matrix.testModule}} native tests
needs: build-and-run-jvm-tests
runs-on: ubuntu-latest
Expand Down
20 changes: 20 additions & 0 deletions docs/modules/ROOT/examples/client-server/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -171,5 +171,25 @@ quarkus.cxf.endpoint."/soap12".implementor = io.quarkiverse.cxf.it.soap12.Soap12
quarkus.cxf.endpoint."/soap12".soap-binding = http://www.w3.org/2003/05/soap/bindings/HTTP/
quarkus.cxf.endpoint."/soap12".logging.enabled = true

# Async tests
quarkus.cxf.client.helloWithWsdl.wsdl = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdl?wsdl
quarkus.cxf.client.helloWithWsdl.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdl
quarkus.cxf.client.helloWithWsdl.service-interface = io.quarkiverse.cxf.deployment.test.HelloService

quarkus.cxf.client.helloWithWsdlWithBlocking.wsdl = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdlWithBlocking?wsdl
quarkus.cxf.client.helloWithWsdlWithBlocking.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdlWithBlocking
quarkus.cxf.client.helloWithWsdlWithBlocking.service-interface = io.quarkiverse.cxf.deployment.test.HelloService

quarkus.cxf.client.helloWithWsdlWithEagerInit.wsdl = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdlWithEagerInit?wsdl
quarkus.cxf.client.helloWithWsdlWithEagerInit.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdlWithEagerInit
quarkus.cxf.client.helloWithWsdlWithEagerInit.service-interface = io.quarkiverse.cxf.deployment.test.HelloService

quarkus.cxf.client.helloWithoutWsdl.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithoutWsdl
quarkus.cxf.client.helloWithoutWsdl.service-interface = io.quarkiverse.cxf.deployment.test.HelloService

quarkus.cxf.client.helloWithoutWsdlWithBlocking.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithoutWsdlWithBlocking
quarkus.cxf.client.helloWithoutWsdlWithBlocking.service-interface = io.quarkiverse.cxf.deployment.test.HelloService


quarkus.default-locale = en_US
quarkus.log.category."io.quarkiverse.cxf.vertx.http.client.VertxHttpClientHTTPConduit".level=DEBUG
116 changes: 0 additions & 116 deletions integration-tests/async-vertx-client/pom.xml

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -171,5 +171,25 @@ quarkus.cxf.endpoint."/soap12".implementor = io.quarkiverse.cxf.it.soap12.Soap12
quarkus.cxf.endpoint."/soap12".soap-binding = http://www.w3.org/2003/05/soap/bindings/HTTP/
quarkus.cxf.endpoint."/soap12".logging.enabled = true

# Async tests
quarkus.cxf.client.helloWithWsdl.wsdl = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdl?wsdl
quarkus.cxf.client.helloWithWsdl.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdl
quarkus.cxf.client.helloWithWsdl.service-interface = io.quarkiverse.cxf.deployment.test.HelloService

quarkus.cxf.client.helloWithWsdlWithBlocking.wsdl = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdlWithBlocking?wsdl
quarkus.cxf.client.helloWithWsdlWithBlocking.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdlWithBlocking
quarkus.cxf.client.helloWithWsdlWithBlocking.service-interface = io.quarkiverse.cxf.deployment.test.HelloService

quarkus.cxf.client.helloWithWsdlWithEagerInit.wsdl = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdlWithEagerInit?wsdl
quarkus.cxf.client.helloWithWsdlWithEagerInit.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithWsdlWithEagerInit
quarkus.cxf.client.helloWithWsdlWithEagerInit.service-interface = io.quarkiverse.cxf.deployment.test.HelloService

quarkus.cxf.client.helloWithoutWsdl.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithoutWsdl
quarkus.cxf.client.helloWithoutWsdl.service-interface = io.quarkiverse.cxf.deployment.test.HelloService

quarkus.cxf.client.helloWithoutWsdlWithBlocking.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloWithoutWsdlWithBlocking
quarkus.cxf.client.helloWithoutWsdlWithBlocking.service-interface = io.quarkiverse.cxf.deployment.test.HelloService


quarkus.default-locale = en_US
quarkus.log.category."io.quarkiverse.cxf.vertx.http.client.VertxHttpClientHTTPConduit".level=DEBUG
1 change: 0 additions & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<name>Quarkus CXF - Integration Tests</name>

<modules>
<module>async-vertx-client</module>
<module>client</module>
<module>client-server</module>
<module>fastinfoset</module>
Expand Down

0 comments on commit 6b557e8

Please sign in to comment.