001 /** 002 * Copyright 2005-2011 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 */ 016 package org.kuali.rice.krad.service; 017 018 import org.junit.Test; 019 import org.kuali.rice.core.api.CoreApiServiceLocator; 020 import org.kuali.rice.krad.bo.Note; 021 import org.kuali.rice.krad.util.NoteType; 022 import org.kuali.test.KRADTestCase; 023 024 import static org.junit.Assert.fail; 025 026 /** 027 * NoteServiceTest is used to test the {@link NoteService} implementation 028 * 029 * @author Kuali Rice Team (rice.collab@kuali.org) 030 * 031 */ 032 public class NoteServiceTest extends KRADTestCase { 033 034 /** 035 * tests saving notes 036 * 037 * @throws Exception 038 */ 039 @Test public void testNoteSave_LargePersonId() throws Exception { 040 Note note = new Note(); 041 note.setAuthorUniversalIdentifier("superLongNameUsersFromWorkflow"); 042 note.setNotePostedTimestamp(CoreApiServiceLocator.getDateTimeService().getCurrentTimestamp()); 043 note.setNoteText("i like notes"); 044 note.setRemoteObjectIdentifier("1209348109834u"); 045 note.setNoteTypeCode(NoteType.BUSINESS_OBJECT.getCode()); 046 try { 047 KRADServiceLocator.getNoteService().save(note); 048 } catch (Exception e) { 049 fail("Saving a note should not fail"); 050 } 051 } 052 053 } 054