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.krad.uif.component; 017 018/** 019 * various tests for {@link org.kuali.rice.krad.uif.component.ComponentBase} 020 * 021 @author Kuali Rice Team (rice.collab@kuali.org) 022 */ 023 024import static org.junit.Assert.assertEquals; 025import static org.junit.Assert.assertNotNull; 026import static org.mockito.Mockito.mock; 027import static org.mockito.Mockito.when; 028 029import java.util.TreeMap; 030 031import org.junit.Before; 032import org.junit.Test; 033import org.kuali.rice.krad.uif.element.Action; 034import org.kuali.rice.krad.uif.lifecycle.ViewLifecycle; 035import org.kuali.rice.krad.uif.service.ViewHelperService; 036import org.kuali.rice.krad.uif.util.CopyUtils; 037import org.kuali.rice.krad.uif.view.View; 038 039/** 040 * @author Kuali Rice Team (rice.collab@kuali.org) 041 */ 042public class ComponentBaseTest { 043 private Component component; 044 private TreeMap<String, String> dataAttributes; 045 046 @Before 047 public void setUp() throws Exception { 048 // use an action field, since ComponentBase is abstract 049 component = new Action(); 050 component.setId("action1"); 051 // used a TreeMap since it makes specific guarantees as to the order of entries 052 dataAttributes = new TreeMap<String, String>(); 053 // set data attributes - for testing purposes only - they do not have any functional significance 054 dataAttributes.put("iconTemplateName", "cool-icon-%s.png"); 055 dataAttributes.put("transitions", "3"); 056 component.setDataAttributes(dataAttributes); 057 } 058 059 @Test 060 /** 061 * test that simple data attributes are converted into inline attributes ok 062 */ 063 public void testGetSimpleDataAttributes() throws Exception { 064 assertNotNull(component.getSimpleDataAttributes()); 065 String expected = " data-iconTemplateName=\"cool-icon-%s.png\" data-transitions=\"3\""; 066 assertEquals("simple attributes did not match", expected, component.getSimpleDataAttributes()); 067 } 068 069 @Test 070 /** 071 * test that simple data attributes are converted into inline attributes ok when data attributes are null 072 */ 073 public void testGetSimpleDataAttributesWhenNull() throws Exception { 074 View view = mock(View.class); 075 ViewHelperService helper = mock(ViewHelperService.class); 076 when(view.getViewHelperService()).thenReturn(helper); 077 ViewLifecycle.encapsulateLifecycle(view, null, null, new Runnable(){ 078 @Override 079 public void run() { 080 Component copy = CopyUtils.copy(component); 081 copy.setDataAttributes(null); 082 assertEquals("simple attributes did not match", "", copy.getSimpleDataAttributes()); 083 }}); 084 } 085}