Skip to content

Commit

Permalink
Move client tests to a separate module, test against a container
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Aug 15, 2022
1 parent 7b4c2f1 commit 85bece2
Show file tree
Hide file tree
Showing 22 changed files with 745 additions and 742 deletions.
44 changes: 0 additions & 44 deletions integration-tests/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,6 @@
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-netty-server</artifactId>
<version>${cxf.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- provides CXF logging feature -->
<dependency>
Expand All @@ -74,30 +54,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<goals>
<goal>wsdl2java</goal>
</goals>
<configuration>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/wsdl/calculator.wsdl</wsdl>
<wsdlLocation>classpath:wsdl/calculator.wsdl</wsdlLocation>
</wsdlOption>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/wsdl/alt_calculator.wsdl</wsdl>
<wsdlLocation>classpath:wsdl/alt_calculator.wsdl</wsdlLocation>
</wsdlOption>
</wsdlOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

This file was deleted.

18 changes: 0 additions & 18 deletions integration-tests/basic/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,3 @@ quarkus.cxf.client."greeting-with-log".features=org.apache.cxf.ext.logging.Loggi
quarkus.cxf.client."greetingclient".client-endpoint-url=http://localhost:8081/soap/greeting
quarkus.cxf.client."greetingclient".service-interface=io.quarkiverse.it.cxf.GreetingClientWebService

# A "featured" client to service "/soap/greeting" (see above), use it like
#
# @Inject @CXFClient(config="featured-foo") GreetingClientWebService myclient;
#
quarkus.cxf.client."greetingclient-fault".client-endpoint-url=http://localhost:8081/soap/greeting
quarkus.cxf.client."greetingclient-fault".out-interceptors=io.quarkiverse.it.cxf.SOAPExceptionInterceptor

quarkus.cxf.client."mockCalculator".wsdl=http://localhost:9000/mockCalculator?wsdl
quarkus.cxf.client."mockCalculator".client-endpoint-url=http://localhost:9000/mockCalculator
quarkus.cxf.client."mockCalculator".service-interface=org.tempuri.CalculatorSoap
quarkus.cxf.client."mockCalculator".endpoint-namespace=http://tempuri.org/
quarkus.cxf.client."mockCalculator".endpoint-name=CalculatorSoap

quarkus.cxf.client."mockAltCalculator".wsdl=http://localhost:9000/mockAltCalculator?wsdl
quarkus.cxf.client."mockAltCalculator".client-endpoint-url=http://localhost:9000/mockAltCalculator
quarkus.cxf.client."mockAltCalculator".service-interface=org.tempuri.alt.AltCalculatorSoap
quarkus.cxf.client."mockAltCalculator".endpoint-namespace=http://alt.tempuri.org/
quarkus.cxf.client."mockAltCalculator".endpoint-name=CalculatorSoap
197 changes: 0 additions & 197 deletions integration-tests/basic/src/main/resources/wsdl/alt_calculator.wsdl

This file was deleted.

0 comments on commit 85bece2

Please sign in to comment.