[java-plugin-shibd-oidc] branch main updated: Try fix for sealed package issue.

Codeberg noreply at shibboleth.net
Wed May 20 17:50:27 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch main
in repository java-plugin-shibd-oidc.

View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd-oidc/commit/652848ffbd17cd99547220b704d3b5715f4cf992

The following commit(s) were added to refs/heads/main by this push:
     new 652848f  Try fix for sealed package issue.
652848f is described below

commit 652848ffbd17cd99547220b704d3b5715f4cf992
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Wed May 20 13:50:04 2026 -0400

    Try fix for sealed package issue.
---
 .../sp/oidc/profile/impl/PrepareAgentResponseTest.java           | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/sp-oidc-impl/src/test/java/net/shibboleth/sp/oidc/profile/impl/PrepareAgentResponseTest.java b/sp-oidc-impl/src/test/java/net/shibboleth/sp/oidc/profile/impl/PrepareAgentResponseTest.java
index e6b6e95..abac2f4 100644
--- a/sp-oidc-impl/src/test/java/net/shibboleth/sp/oidc/profile/impl/PrepareAgentResponseTest.java
+++ b/sp-oidc-impl/src/test/java/net/shibboleth/sp/oidc/profile/impl/PrepareAgentResponseTest.java
@@ -43,7 +43,6 @@ import net.shibboleth.sp.ddf.DDF;
 import net.shibboleth.sp.messaging.RemotedHttpServletResponse;
 import net.shibboleth.sp.profile.ConsumerConstants;
 import net.shibboleth.sp.profile.impl.BaseApplicationActionTest;
-import net.shibboleth.sp.profile.impl.CreateOutputMessage;
 
 /**
  * Tests for {@link PrepareAgentResponse}.
@@ -73,10 +72,10 @@ public class PrepareAgentResponseTest extends BaseApplicationActionTest{
         partyContext.setProfileConfig(rpConfig);
         prc.addSubcontext(partyContext);
         
-        final CreateOutputMessage createAction = new CreateOutputMessage();
-        createAction.setCreateServletResponse(true);
-        createAction.initialize();
-        ActionTestingSupport.assertProceedEvent(createAction.execute(src));
+        final DDF output = new DDF().structure();
+        output.addmember(RemotedHttpServletResponse.STRUCTURE_NAME).structure();
+        arc.setOutput(output);
+        arc.setRemotedHttpServletResponse(new RemotedHttpServletResponse(output.getmember(RemotedHttpServletResponse.STRUCTURE_NAME)));
     }
     
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list