You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authc/saml/SamlAuthenticatorTests.java
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -107,8 +107,8 @@ public class SamlAuthenticatorTests extends SamlResponseHandlerTests {
107
107
+ "Change your IdP configuration to use a different attribute *"
108
108
+ " that will not clash with any of [*]";
109
109
privatestaticfinalStringSIGNATURE_VALIDATION_FAILED_LOG_MESSAGE = "The XML Signature of this SAML message cannot be validated. "
110
-
+ "Please verify that the saml realm uses the correct SAML metadata file/URL for this Identity Provider "
111
-
+ "[https://idp.saml.elastic.test/]";
110
+
+ "Please verify that the saml realm uses the correct SAML metadata file/URL for this Identity Provider. "
111
+
+ "The issuer included in the SAML message was [https://idp.saml.elastic.test/]";
112
112
113
113
privateSamlAuthenticatorauthenticator;
114
114
@@ -1356,7 +1356,8 @@ public void testFailureWhenIdPCredentialsAreNull() throws Exception {
1356
1356
"Null credentials",
1357
1357
authenticator.getClass().getName(),
1358
1358
Level.WARN,
1359
-
"Exception while attempting to validate SAML Signature [https://idp.saml.elastic.test/]"
1359
+
"Exception while attempting to validate SAML Signature. " +
1360
+
"The issuer included in the SAML message was [https://idp.saml.elastic.test/]"
0 commit comments