Skip to content

Commit

Permalink
Merge pull request #6 from project-husky/qf_disable_ppqtests
Browse files Browse the repository at this point in the history
Qf disable ppqtests
  • Loading branch information
ralych committed Dec 8, 2023
2 parents a18eb88 + 35662a1 commit efd262f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<husky.version>2.0.1-SNAPSHOT</husky.version>
<husky.version>2.1.2-SNAPSHOT</husky.version>
<spring.boot.version>2.7.11</spring.boot.version>
<camel.version>3.20.3</camel.version>
<junit.version>5.8.2</junit.version>
<maven-surefire-plugin.version>3.0.0-M6</maven-surefire-plugin.version>
</properties>
<repositories>
<!--
<repository>
<id>husky-releases</id>
<name>husky-releases</name>
Expand All @@ -26,6 +27,7 @@
<enabled>false</enabled>
</snapshots>
</repository>
-->
<repository>
<id>husky-snapshots</id>
<name>husky-snapshots</name>
Expand All @@ -34,18 +36,21 @@
<enabled>true</enabled>
</snapshots>
</repository>

</repositories>
<distributionManagement>
<snapshotRepository>
<id>husky-snapshots</id>
<name>husky-snapshots</name>
<url>https://archiva.et-innovations.org/repository/snapshots/</url>
</snapshotRepository>
<!--
<repository>
<id>husky-releases</id>
<name>husky-releases</name>
<url>https://archiva.et-innovations.org/repository/internal/</url>
</repository>
-->
</distributionManagement>
<dependencyManagement>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
import org.projecthusky.xua.saml2.Assertion;
import org.projecthusky.xua.saml2.impl.AssertionBuilderImpl;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.openehealth.ipf.commons.audit.AuditContext;
Expand Down Expand Up @@ -82,6 +83,7 @@
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE, classes = { TestApplication.class })
@EnableAutoConfiguration
@ActiveProfiles("atna")
@Disabled
class SimplePpfClientAtnaAuditTest {

private static final Logger LOGGER = LoggerFactory.getLogger(SimplePpfClientAtnaAuditTest.class.getName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
import org.projecthusky.xua.serialization.impl.AssertionSerializerImpl;
import org.slf4j.LoggerFactory;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
Expand Down Expand Up @@ -87,6 +88,7 @@
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE, classes = { TestApplication.class })
@EnableAutoConfiguration
@TestMethodOrder(OrderAnnotation.class)
@Disabled
public class SimplePpfClientTest {

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import org.projecthusky.xua.hl7v3.InstanceIdentifier;
import org.projecthusky.xua.hl7v3.impl.InstanceIdentifierBuilder;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.openehealth.ipf.commons.audit.AuditContext;
Expand All @@ -46,6 +47,7 @@
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE, classes = { TestApplication.class })
@EnableAutoConfiguration
@ActiveProfiles("atna")
@Disabled
class SimplePpqClientAtnaAuditTest {

private static final Logger LOGGER = LoggerFactory.getLogger(SimplePpqClientAtnaAuditTest.class.getName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.projecthusky.xua.hl7v3.InstanceIdentifier;
import org.projecthusky.xua.hl7v3.impl.InstanceIdentifierBuilder;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.openehealth.ipf.commons.audit.AuditContext;
Expand All @@ -35,6 +36,7 @@
@ExtendWith(value = SpringExtension.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE, classes = { TestApplication.class })
@EnableAutoConfiguration
@Disabled
class SimplePpqClientTest {

@Autowired
Expand Down
1 change: 1 addition & 0 deletions src/test/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

<logger name="org.openehealth.ipf.commons.audit.protocol" level="trace" additivity="false">
<appender-ref ref="RollingFile" />
<appender-ref ref="Console" />
</logger>

<!-- LOG everything at ERROR level -->
Expand Down

0 comments on commit efd262f

Please sign in to comment.