[java-idp-testbed COMMIT] /trunk/src/test/java/idp/saml1/SAML1UnsolicitedFlowTest.java
noreply at shibboleth.net
noreply at shibboleth.net
Tue Feb 18 14:06:48 EST 2014
Author: scantor
Date: Tue Feb 18 14:06:47 2014
New Revision: 148
URL: http://svn.shibboleth.net/view/java-idp-testbed?rev=148&view=rev
Log:
Integrate endpoint resolver action into SAML 1 flow, remove redundant code.
Modified:
trunk/src/test/java/idp/saml1/SAML1UnsolicitedFlowTest.java
Modified: trunk/src/test/java/idp/saml1/SAML1UnsolicitedFlowTest.java
URL: http://svn.shibboleth.net/view/java-idp-testbed/trunk/src/test/java/idp/saml1/SAML1UnsolicitedFlowTest.java?rev=148&r1=147&r2=148&view=diff
==============================================================================
--- trunk/src/test/java/idp/saml1/SAML1UnsolicitedFlowTest.java (original)
+++ trunk/src/test/java/idp/saml1/SAML1UnsolicitedFlowTest.java Tue Feb 18 14:06:47 2014
@@ -55,9 +55,9 @@
/** Flow id. */
@Nonnull public final static String FLOW_ID = "Shibboleth/SSO";
- private String entityId = "http://sp.example.org";
+ private String entityId = "https://sp.example.org";
- private String acsUrl = "https://sp.example.org/ACSURL";
+ private String acsUrl = "https://sp.example.org/SAML1/POST/ACS";
private String relayState = "myRelayState";
@@ -72,7 +72,7 @@
final FlowExecutionOutcome outcome = result.getOutcome();
log.debug("flow outcome {}", outcome);
- Assert.assertNotNull(outcome);
+ Assert.assertNotNull(outcome, "Flow ended with an error");
Assert.assertEquals(outcome.getId(), "end");
Assert.assertTrue(result.isEnded());
More information about the commits
mailing list