001/** 002 * Copyright 2005-2014 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.rice.ken.services.impl; 017 018import org.junit.Ignore; 019import org.junit.Test; 020import org.kuali.rice.ken.service.impl.NotificationRecipientServiceKimImpl; 021import org.kuali.rice.ken.test.KENTestCase; 022import org.kuali.rice.ken.test.TestConstants; 023import org.kuali.rice.kew.util.Utilities; 024import org.kuali.rice.kim.api.KimConstants.KimGroupMemberTypes; 025import org.kuali.rice.kim.api.group.Group; 026import org.kuali.rice.kim.api.services.KimApiServiceLocator; 027 028import static org.junit.Assert.*; 029 030/** 031 * This is a description of what this class does - chb don't forget to fill this in. 032 * 033 * @author Kuali Rice Team (rice.collab@kuali.org) 034 * 035 */ 036public class NotificationRecipientServiceKimImplTest extends KENTestCase { 037 038 NotificationRecipientServiceKimImpl nrski = new NotificationRecipientServiceKimImpl(); 039 040 /** 041 * Test method for {@link org.kuali.rice.ken.service.impl.NotificationRecipientServiceKimImpl#getGroupMembers(java.lang.String)}. 042 */ 043 @Test 044 public void testGetGroupMembersValid() { 045 Group group = KimApiServiceLocator.getGroupService().getGroupByNamespaceCodeAndName( 046 Utilities.parseGroupNamespaceCode(TestConstants.VALID_KIM_GROUP_NAME_1), Utilities.parseGroupName( 047 TestConstants.VALID_KIM_GROUP_NAME_1)); 048 assertTrue(nrski.getGroupMembers(group.getId()).length == TestConstants.KIM_GROUP_1_MEMBERS); 049 } 050 051 /** 052 * Test method for {@link org.kuali.rice.ken.service.impl.NotificationRecipientServiceKimImpl#getUserDisplayName(java.lang.String)}. 053 */ 054 @Test 055 @Ignore // empty testGetUserDisplayName 056 public final void testGetUserDisplayName() { 057 //hoping gary will take care of this when he does KEW user conversion 058 fail("Not yet implemented"); // TODO 059 } 060 061 /** 062 * Test method for {@link org.kuali.rice.ken.service.impl.NotificationRecipientServiceKimImpl#isGroupRecipientValid(java.lang.String)}. 063 */ 064 @Test 065 public final void testIsGroupRecipientValid() { 066 Group group = KimApiServiceLocator.getGroupService().getGroupByNamespaceCodeAndName( 067 Utilities.parseGroupNamespaceCode(TestConstants.VALID_KIM_GROUP_NAME_1), Utilities.parseGroupName( 068 TestConstants.VALID_KIM_GROUP_NAME_1)); 069 assertTrue(nrski.isGroupRecipientValid(group.getId())); 070 } 071 072 /** 073 * Test method for {@link org.kuali.rice.ken.service.impl.NotificationRecipientServiceKimImpl#isRecipientValid(java.lang.String, java.lang.String)}. 074 */ 075 @Test 076 public final void testIsRecipientValid() { 077 assertTrue( nrski.isRecipientValid( TestConstants.VALID_KIM_PRINCIPAL_NAME, KimGroupMemberTypes.PRINCIPAL_MEMBER_TYPE.getCode())); 078 assertFalse( nrski.isRecipientValid( "BoogalooShrimp44", KimGroupMemberTypes.PRINCIPAL_MEMBER_TYPE.getCode())); 079 080 Group group = KimApiServiceLocator.getGroupService().getGroupByNamespaceCodeAndName( 081 Utilities.parseGroupNamespaceCode(TestConstants.VALID_KIM_GROUP_NAME_1), Utilities.parseGroupName( 082 TestConstants.VALID_KIM_GROUP_NAME_1)); 083 assertTrue( nrski.isRecipientValid( group.getId(), KimGroupMemberTypes.GROUP_MEMBER_TYPE.getCode())); 084 assertFalse( nrski.isRecipientValid( "FooSchnickens99", KimGroupMemberTypes.GROUP_MEMBER_TYPE.getCode())); 085 } 086 087 /** 088 * Test method for {@link org.kuali.rice.ken.service.impl.NotificationRecipientServiceKimImpl#isUserRecipientValid(java.lang.String)}. 089 */ 090 @Test 091 public final void testIsUserRecipientValid() { 092 assertTrue( nrski.isUserRecipientValid( TestConstants.VALID_KIM_PRINCIPAL_NAME )); 093 } 094}