Source Code Cross Referenced for AuthenticationRepositoryParserTest.java in  » Security » acegi-security » org » acegisecurity » config » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Security » acegi security » org.acegisecurity.config 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * 
003:         */package org.acegisecurity.config;
004:
005:        import junit.framework.TestCase;
006:
007:        import org.acegisecurity.providers.AuthenticationProvider;
008:        import org.acegisecurity.providers.dao.DaoAuthenticationProvider;
009:        import org.acegisecurity.providers.dao.SaltSource;
010:        import org.acegisecurity.providers.encoding.Md5PasswordEncoder;
011:        import org.acegisecurity.providers.encoding.PasswordEncoder;
012:        import org.acegisecurity.providers.encoding.PlaintextPasswordEncoder;
013:        import org.acegisecurity.userdetails.jdbc.JdbcDaoImpl;
014:        import org.springframework.beans.PropertyValue;
015:        import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
016:        import org.springframework.beans.factory.config.RuntimeBeanReference;
017:        import org.springframework.beans.factory.support.RootBeanDefinition;
018:        import org.springframework.context.ApplicationContext;
019:        import org.springframework.context.support.ClassPathXmlApplicationContext;
020:        import org.springframework.util.Assert;
021:
022:        /**
023:         * @author vpuri
024:         * 
025:         */
026:        public class AuthenticationRepositoryParserTest extends TestCase {
027:
028:            public void testAuthenticationRepositoryDefaultWithAutoUserdetails() {
029:                ApplicationContext context = new ClassPathXmlApplicationContext(
030:                        "org/acegisecurity/config/authentication-dao-defaults.xml");
031:                ConfigurableListableBeanFactory clbf = (ConfigurableListableBeanFactory) context
032:                        .getAutowireCapableBeanFactory();
033:
034:                String[] names = clbf
035:                        .getBeanNamesForType(AuthenticationProvider.class);
036:                assertEquals(1, names.length);
037:
038:                // check bean class
039:                RootBeanDefinition definition = (RootBeanDefinition) clbf
040:                        .getBeanDefinition(names[0]);
041:                assertEquals(DaoAuthenticationProvider.class, definition
042:                        .getBeanClass());
043:
044:                DaoAuthenticationProvider provider = (DaoAuthenticationProvider) context
045:                        .getBean("authenticationRepository");
046:                Assert.isAssignable(JdbcDaoImpl.class, provider
047:                        .getUserDetailsService().getClass());
048:
049:            }
050:
051:            public void testCollaboratorsAsInnerBeans() {
052:                ApplicationContext context = new ClassPathXmlApplicationContext(
053:                        "org/acegisecurity/config/authentication-innerbeans.xml");
054:                ConfigurableListableBeanFactory clbf = (ConfigurableListableBeanFactory) context
055:                        .getAutowireCapableBeanFactory();
056:                // get the main bean definition, there should be only one
057:                String[] names = clbf
058:                        .getBeanNamesForType(AuthenticationProvider.class);
059:                assertEquals(1, names.length);
060:                RootBeanDefinition definition = (RootBeanDefinition) clbf
061:                        .getBeanDefinition(names[0]);
062:                assertEquals(DaoAuthenticationProvider.class, definition
063:                        .getBeanClass());
064:
065:                // get the 2 inner beans
066:                PropertyValue saltSourceBean = definition.getPropertyValues()
067:                        .getPropertyValue("saltSource");
068:                assertEquals("saltSource", saltSourceBean.getName());
069:
070:                // get the BeanDefinition
071:                RootBeanDefinition saltsourceDef = (RootBeanDefinition) saltSourceBean
072:                        .getValue();
073:                Assert.isAssignable(SaltSource.class, saltsourceDef
074:                        .getBeanClass());
075:
076:                PropertyValue encoder = definition.getPropertyValues()
077:                        .getPropertyValue("passwordEncoder");
078:                assertEquals("passwordEncoder", encoder.getName());
079:
080:                // get the BeanDefinition
081:                RootBeanDefinition encoderDef = (RootBeanDefinition) encoder
082:                        .getValue();
083:                Assert.isAssignable(PasswordEncoder.class, encoderDef
084:                        .getBeanClass());
085:
086:                assertEquals("incorrect bean class name", encoderDef
087:                        .getBeanClassName(), Md5PasswordEncoder.class.getName());
088:            }
089:
090:            public void testCollaboratorsAsBeanRef() {
091:                ApplicationContext context = new ClassPathXmlApplicationContext(
092:                        "org/acegisecurity/config/authentication-beanRef-attributes.xml");
093:                ConfigurableListableBeanFactory clbf = (ConfigurableListableBeanFactory) context
094:                        .getAutowireCapableBeanFactory();
095:                // get the main bean definition, there should be only one
096:                String[] names = clbf
097:                        .getBeanNamesForType(AuthenticationProvider.class);
098:                assertEquals(1, names.length);
099:                RootBeanDefinition definition = (RootBeanDefinition) clbf
100:                        .getBeanDefinition(names[0]);
101:                assertEquals(DaoAuthenticationProvider.class, definition
102:                        .getBeanClass());
103:
104:                // get the referred collaborators
105:
106:                PropertyValue userDetailsBean = definition.getPropertyValues()
107:                        .getPropertyValue("userDetailsService");
108:                assertEquals("userDetailsService", userDetailsBean.getName());
109:
110:                PropertyValue saltSourceBean = definition.getPropertyValues()
111:                        .getPropertyValue("saltSource");
112:                assertEquals("saltSource", saltSourceBean.getName());
113:
114:                // get the BeanDefinition
115:                RuntimeBeanReference saltsourceDef = (RuntimeBeanReference) saltSourceBean
116:                        .getValue();
117:                assertEquals("refToSaltSource", saltsourceDef.getBeanName());
118:
119:                PropertyValue encoder = definition.getPropertyValues()
120:                        .getPropertyValue("passwordEncoder");
121:                assertEquals("passwordEncoder", encoder.getName());
122:
123:                // get the BeanDefinition
124:                RuntimeBeanReference encoderDef = (RuntimeBeanReference) encoder
125:                        .getValue();
126:                assertEquals("refToPasswordEncoder", encoderDef.getBeanName());
127:
128:                DaoAuthenticationProvider provider = (DaoAuthenticationProvider) context
129:                        .getBean("authenticationRepository");
130:                assertTrue(provider.getPasswordEncoder() instanceof  PasswordEncoder);
131:                assertEquals(Md5PasswordEncoder.class, provider
132:                        .getPasswordEncoder().getClass());
133:            }
134:
135:            public void testAutodetectionOfUserDetailsService() {
136:                ApplicationContext context = new ClassPathXmlApplicationContext(
137:                        "org/acegisecurity/config/authentication-defaults.xml");
138:                DaoAuthenticationProvider provider = (DaoAuthenticationProvider) context
139:                        .getBean("authenticationRepository");
140:                assertNotNull(provider.getUserDetailsService());
141:                assertNull(provider.getSaltSource());
142:                assertEquals(PlaintextPasswordEncoder.class, provider
143:                        .getPasswordEncoder().getClass());
144:
145:            }
146:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.