[java-idp-integration-tests] branch main updated: Automatically use non-secure port when using Safari on iOS
Tom Zeller
tzeller at dragonacea.biz
Thu Jun 17 17:06:49 UTC 2021
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=c9eadaf4ebc077b547f22aecb20eb0b1fa71e6e2
The following commit(s) were added to refs/heads/main by this push:
new c9eadaf Automatically use non-secure port when using Safari on iOS
c9eadaf is described below
commit c9eadaf4ebc077b547f22aecb20eb0b1fa71e6e2
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Thu Jun 17 12:06:18 2021 -0500
Automatically use non-secure port when using Safari on iOS
---
src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
index 637ae50..2982b9d 100644
--- a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
+++ b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
@@ -1556,7 +1556,9 @@ public abstract class BaseIntegrationTest
desiredCapabilities.merge(overrideCapabilities);
}
- if (browserData != null && browserData.getBrowser().equalsIgnoreCase("safari")) {
+ if (browserData != null && (browserData.getBrowser().equalsIgnoreCase("safari")
+ || browserData.getBrowser().equalsIgnoreCase("ipad")
+ || browserData.getBrowser().equalsIgnoreCase("iphone"))) {
log.warn("Safari does not support accepting insecure certs");
try {
setUpNonSecurePort();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list