1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.lifecycle;
17
18 import static org.junit.Assert.assertEquals;
19 import static org.junit.Assert.assertTrue;
20 import static org.junit.Assume.assumeNoException;
21 import static org.mockito.Mockito.mock;
22
23 import java.io.FileNotFoundException;
24
25 import org.junit.AfterClass;
26 import org.junit.BeforeClass;
27 import org.junit.Test;
28 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
29 import org.kuali.rice.krad.uif.UifConstants;
30 import org.kuali.rice.krad.uif.element.Message;
31 import org.kuali.rice.krad.uif.util.ComponentFactory;
32 import org.kuali.rice.krad.uif.util.CopyUtils;
33 import org.kuali.rice.krad.uif.util.ProcessLoggingUnitTest;
34 import org.kuali.rice.krad.uif.util.UifUnitTestUtils;
35 import org.kuali.rice.krad.uif.view.View;
36 import org.springframework.mock.web.MockHttpServletRequest;
37
38 public class ComponentFreemarkerTest extends ProcessLoggingUnitTest {
39
40 @BeforeClass
41 public static void setUpClass() throws Throwable {
42 UifUnitTestUtils.establishMockConfig("KRAD-ComponentFreemarkerTest");
43 }
44
45 @AfterClass
46 public static void tearDownClass() throws Throwable {
47 UifUnitTestUtils.tearDownMockConfig();
48 }
49
50 @Test
51 public void testHtmlOutput() throws Throwable {
52 MockHttpServletRequest request = new MockHttpServletRequest();
53 View view = mock(View.class);
54 ViewLifecycle.encapsulateLifecycle(view, new Object(), request, new Runnable() {
55 @Override
56 public void run() {
57 Message msg = CopyUtils.copy(ComponentFactory.getMessage());
58 msg.setMessageText("foobar");
59 msg.setId("_naps");
60 msg.setWrapperTag("pans");
61
62 msg.setViewStatus(UifConstants.ViewStatus.FINAL);
63
64 RenderComponentPhase renderPhase = (RenderComponentPhase) KRADServiceLocatorWeb
65 .getViewLifecyclePhaseBuilder().buildPhase(UifConstants.ViewPhases.RENDER, msg, null, "", null);
66
67 try {
68 ViewLifecycle.getProcessor().performPhase(renderPhase);
69 } catch (IllegalStateException e) {
70 if (e.getCause() instanceof FileNotFoundException) {
71 assumeNoException(e.getCause());
72 } else {
73 throw e;
74 }
75 }
76
77 assertTrue(msg.isSelfRendered());
78 assertEquals("<pans id=\"_naps\" class=\"uif-message\" >\r\n" +
79 "foobar </pans>", msg.getRenderedHtmlOutput().trim());
80 }
81 });
82 }
83
84 }