[java-idp-integration-tests] 01/03: Add system properties to skip creation and deletion of DNS records
Tom Zeller
tzeller at dragonacea.biz
Tue Jul 16 22:39:03 UTC 2024
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-idp-integration-tests.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=19350aed9f5d6d699605644f0a5f3b94e1d6db20
commit 19350aed9f5d6d699605644f0a5f3b94e1d6db20
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Tue Jul 16 17:32:22 2024 -0500
Add system properties to skip creation and deletion of DNS records
---
.../net/shibboleth/idp/integration/tests/BaseIntegrationTest.java | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/test/java/net/shibboleth/idp/integration/tests/BaseIntegrationTest.java b/src/test/java/net/shibboleth/idp/integration/tests/BaseIntegrationTest.java
index cf13c74..1e59d78 100644
--- a/src/test/java/net/shibboleth/idp/integration/tests/BaseIntegrationTest.java
+++ b/src/test/java/net/shibboleth/idp/integration/tests/BaseIntegrationTest.java
@@ -2807,6 +2807,9 @@ public abstract class BaseIntegrationTest {
if (!Boolean.getBoolean("DNS")) {
return;
}
+ if (Boolean.getBoolean("skipDNS")) {
+ return;
+ }
log.debug("Setting up DNS");
if (route53 == null) {
route53 = new Route53Helper();
@@ -2827,6 +2830,9 @@ public abstract class BaseIntegrationTest {
if (!Boolean.getBoolean("DNS")) {
return;
}
+ if(Boolean.getBoolean("keepDNS")) {
+ return;
+ }
log.debug("Tearing down DNS");
Assert.assertNotNull(route53, "Route 53 helper should not be null");
route53.delete();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list