View Javadoc
1   /**
2    * Copyright 2005-2015 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.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  }