[jboss-cvs] JBossAS SVN: r64375 - projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authentication.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jul 31 14:03:56 EDT 2007


Author: anil.saldhana at jboss.com
Date: 2007-07-31 14:03:56 -0400 (Tue, 31 Jul 2007)
New Revision: 64375

Added:
   projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authentication/WebJASPIAuthMgrUnitTestCase.java
Log:
test web jaspi

Added: projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authentication/WebJASPIAuthMgrUnitTestCase.java
===================================================================
--- projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authentication/WebJASPIAuthMgrUnitTestCase.java	                        (rev 0)
+++ projects/security/security-jboss-sx/trunk/src/tests/org/jboss/test/authentication/WebJASPIAuthMgrUnitTestCase.java	2007-07-31 18:03:56 UTC (rev 64375)
@@ -0,0 +1,111 @@
+/*
+  * JBoss, Home of Professional Open Source
+  * Copyright 2007, JBoss Inc., and individual contributors as indicated
+  * by the @authors tag. See the copyright.txt in the distribution for a
+  * full listing of individual contributors.
+  *
+  * This is free software; you can redistribute it and/or modify it
+  * under the terms of the GNU Lesser General Public License as
+  * published by the Free Software Foundation; either version 2.1 of
+  * the License, or (at your option) any later version.
+  *
+  * This software is distributed in the hope that it will be useful,
+  * but WITHOUT ANY WARRANTY; without even the implied warranty of
+  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+  * Lesser General Public License for more details.
+  *
+  * You should have received a copy of the GNU Lesser General Public
+  * License along with this software; if not, write to the Free
+  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+  */
+package org.jboss.test.authentication;
+
+import java.net.URL;
+import java.security.Principal;
+
+import javax.security.auth.login.Configuration;
+import javax.security.auth.message.MessageInfo;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import org.jboss.security.AuthenticationManager;
+import org.jboss.security.SimplePrincipal;
+import org.jboss.security.auth.callback.AppCallbackHandler;
+import org.jboss.security.auth.login.XMLLoginConfigImpl;
+import org.jboss.security.auth.message.GenericMessageInfo;
+import org.jboss.security.plugins.JBossAuthenticationManager;
+import org.jboss.security.plugins.JBossSecurityContext;
+import org.jboss.security.plugins.SecurityContextAssociation;
+import org.jboss.test.util.TestHttpServletRequest;
+
+
+/**
+ *  Unit tests for the JBossAuthenticationManager with JASPI
+ *  @author Anil.Saldhana at redhat.com
+ *  @since  May 10, 2007 
+ *  @version $Revision$
+ */
+public class WebJASPIAuthMgrUnitTestCase 
+extends JBossAuthenticationManagerUnitTestCase
+{ 
+   String securityDomain = "web-jaspi";
+   AppCallbackHandler acbh = new AppCallbackHandler();
+   
+   @Override
+   protected void setUp() throws Exception
+   {
+      super.setUp();
+      JBossSecurityContext jsc = new JBossSecurityContext(securityDomain);
+      SecurityContextAssociation.setSecurityContext(jsc);
+      establishSecurityConfiguration();
+   } 
+   
+   public void testLogin() throws Exception
+   { 
+      HttpServletRequest hsr = getHttpServletRequest("jduke", "theduke");
+      MessageInfo mi = new GenericMessageInfo(hsr, (HttpServletResponse)null);
+      Principal p = new SimplePrincipal("jduke"); 
+      AuthenticationManager am = new JBossAuthenticationManager(securityDomain,acbh);
+      assertTrue(am.isValid(mi, null, "HTTP")); 
+      assertNotNull("Subject is valid",am.getActiveSubject());
+      assertTrue("Principal is present",
+            am.getActiveSubject().getPrincipals().contains(p));
+   }  
+   
+   public void testUnsuccessfulLogin() throws Exception
+   {
+      HttpServletRequest hsr = getHttpServletRequest("jduke", "BAD");
+      MessageInfo mi = new GenericMessageInfo(hsr, (HttpServletResponse)null); 
+      AuthenticationManager am = new JBossAuthenticationManager(securityDomain,acbh);
+      assertFalse(am.isValid(mi, null, "HTTP")); 
+   }
+   
+   public void testSecurityCache() throws Exception
+   {
+       
+   }
+   
+   public void testSecurityCacheInjection() throws Exception
+   { 
+       
+   }
+   
+   private void establishSecurityConfiguration()
+   { 
+      XMLLoginConfigImpl xli = new XMLLoginConfigImpl();
+      Configuration.setConfiguration(xli); 
+      URL configURL = Thread.currentThread().getContextClassLoader().getResource("config/jaspi-config.xml");
+      assertNotNull("Config URL",configURL); 
+      xli.setConfigURL(configURL);
+      xli.loadConfig(); 
+   } 
+   
+   public HttpServletRequest getHttpServletRequest(String username, String pass)
+   {
+      HttpServletRequest hsr = new TestHttpServletRequest(new SimplePrincipal(username), pass, "GET"); 
+      hsr.getParameterMap().put("j_username", username);
+      hsr.getParameterMap().put("j_password", pass);
+      return hsr;
+   }
+}




More information about the jboss-cvs-commits mailing list