1 /**
2 * Copyright 2005-2014 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.krad.service;
17
18 import org.junit.Test;
19 import org.kuali.rice.core.api.CoreApiServiceLocator;
20 import org.kuali.rice.krad.bo.Note;
21 import org.kuali.rice.krad.util.NoteType;
22 import org.kuali.rice.krad.test.KRADTestCase;
23
24 import static org.junit.Assert.fail;
25
26 /**
27 * NoteServiceTest is used to test the {@link NoteService} implementation
28 *
29 * @author Kuali Rice Team (rice.collab@kuali.org)
30 *
31 */
32 public class NoteServiceTest extends KRADTestCase {
33
34 /**
35 * tests saving notes
36 *
37 * @throws Exception
38 */
39 @Test public void testNoteSave_LargePersonId() throws Exception {
40 Note note = new Note();
41 note.setAuthorUniversalIdentifier("superLongNameUsersFromWorkflow");
42 note.setNotePostedTimestamp(CoreApiServiceLocator.getDateTimeService().getCurrentTimestamp());
43 note.setNoteText("i like notes");
44 note.setRemoteObjectIdentifier("1209348109834u");
45 note.setNoteTypeCode(NoteType.BUSINESS_OBJECT.getCode());
46 try {
47 KRADServiceLocator.getNoteService().save(note);
48 } catch (Exception e) {
49 fail("Saving a note should not fail");
50 }
51 }
52
53 }
54