View Javadoc

1   /*
2    * Copyright 2007-2008 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.kim.test.service;
17  
18  import org.junit.Test;
19  import org.kuali.rice.kim.bo.entity.KimEntity;
20  import org.kuali.rice.kim.bo.entity.KimEntityEntityType;
21  import org.kuali.rice.kim.bo.entity.KimPrincipal;
22  import org.kuali.rice.kim.service.IdentityService;
23  import org.kuali.rice.kim.service.KIMServiceLocator;
24  import org.kuali.rice.kim.test.KIMTestCase;
25  
26  /**
27   * 
28   * @author Kuali Rice Team (rice.collab@kuali.org)
29   */
30  public class IdentityServiceImplTest extends KIMTestCase {
31  
32  	private IdentityService identityService;
33  
34  	public void setUp() throws Exception {
35  		super.setUp();
36  		identityService = (IdentityService) KIMServiceLocator.getBean("kimIdentityDelegateService");
37  	}
38  
39  	@Test
40  	public void testGetPrincipal() {
41  		KimPrincipal principal = identityService.getPrincipal("KULUSER");
42  		assertNotNull("principal must not be null", principal);
43  		assertEquals("Principal name did not match expected result","kuluser", principal.getPrincipalName());
44  	}
45  
46  	@Test
47  	public void testGetPrincipalByPrincipalName() {
48  		KimPrincipal principal = identityService.getPrincipalByPrincipalName("kuluser");
49  		assertNotNull("principal must not be null", principal);
50  		assertEquals("Principal ID did not match expected result","KULUSER", principal.getPrincipalId());
51  	}
52  	
53  	@Test
54  	public void testGetContainedAttributes() {
55  		KimPrincipal principal = identityService.getPrincipal("p1");
56  		
57  		KimEntity entity = identityService.getEntityInfo( principal.getEntityId() );
58  		assertNotNull( "Entity Must not be null", entity );
59  		KimEntityEntityType eet = entity.getEntityType( "PERSON" );
60  		assertNotNull( "PERSON EntityEntityType Must not be null", eet );
61  		assertEquals( "there should be 1 email address", 1, eet.getEmailAddresses().size() );
62  		assertEquals( "email address does not match", "p1@kuali.org", eet.getDefaultEmailAddress().getEmailAddressUnmasked() );
63  	}
64  
65  }