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.lifecycle.initialize;
017
018import static org.junit.Assert.assertFalse;
019import static org.junit.Assert.assertTrue;
020
021import java.io.Serializable;
022
023import org.junit.After;
024import org.junit.AfterClass;
025import org.junit.Before;
026import org.junit.BeforeClass;
027import org.junit.Test;
028import org.kuali.rice.krad.datadictionary.AttributeDefinition;
029import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
030import org.kuali.rice.krad.uif.UifConstants;
031import org.kuali.rice.krad.uif.component.Component;
032import org.kuali.rice.krad.uif.field.DataField;
033import org.kuali.rice.krad.uif.lifecycle.InitializeComponentPhase;
034import org.kuali.rice.krad.uif.lifecycle.LifecyclePhaseFactory;
035import org.kuali.rice.krad.uif.lifecycle.ViewLifecycle;
036import org.kuali.rice.krad.uif.lifecycle.ViewLifecyclePhase;
037import org.kuali.rice.krad.uif.util.ObjectPropertyUtils;
038import org.kuali.rice.krad.uif.util.ProcessLoggingUnitTest;
039import org.kuali.rice.krad.uif.util.UifUnitTestUtils;
040import org.kuali.rice.krad.uif.view.View;
041import org.kuali.rice.krad.web.form.UifFormBase;
042import org.springframework.mock.web.MockHttpServletRequest;
043
044/**
045 * Unit tests for {@link InitializeDataFieldFromDictionaryTask}.
046 * 
047 * @author Kuali Rice Team (rice.collab@kuali.org)
048 */
049public class InitializeDataFieldFromDictionaryTest extends ProcessLoggingUnitTest {
050
051    @BeforeClass
052    public static void setUpClass() throws Throwable {
053        UifUnitTestUtils.establishMockConfig("KRAD-InitializeDataFieldFromDictionaryTest");
054    }
055
056    @Before
057    public void setUp() throws Throwable {
058        UifUnitTestUtils.establishMockUserSession("admin");
059    }
060
061    @After
062    public void tearDown() throws Throwable {
063        UifUnitTestUtils.tearDownMockUserSession();
064    }
065
066    @AfterClass
067    public static void tearDownClass() throws Throwable {
068        UifUnitTestUtils.tearDownMockConfig();
069    }
070
071    public static class Bar implements Serializable {
072        private static final long serialVersionUID = 1275816843240407178L;
073
074        private String text;
075
076        public String getText() {
077            return this.text;
078        }
079
080        public void setText(String text) {
081            this.text = text;
082        }
083    }
084
085    public static class Foo implements Serializable {
086        private static final long serialVersionUID = -8018713299377638909L;
087
088        private Bar descr;
089
090        public Bar getDescr() {
091            return this.descr;
092        }
093
094        public void setDescr(Bar descr) {
095            this.descr = descr;
096        }
097    }
098
099    public static class TestForm extends UifFormBase {
100        private static final long serialVersionUID = 8726078766779752200L;
101
102        private Foo foo;
103        private Bar bar;
104
105        public Foo getFoo() {
106            return this.foo;
107        }
108
109        public void setFoo(Foo foo) {
110            this.foo = foo;
111        }
112
113        public Bar getBar() {
114            return this.bar;
115        }
116
117        public void setBar(Bar bar) {
118            this.bar = bar;
119        }
120    }
121
122    public static class TestAttributeProcess implements Runnable {
123
124        @Override
125        public void run() {
126            View view = ViewLifecycle.getView();
127            
128            String parentPath = "currentPage.items[0]";
129            Component parent = ObjectPropertyUtils.getPropertyValue(view, parentPath);
130            
131            String foopath = "items[0]";
132            DataField foofield = ObjectPropertyUtils.getPropertyValue(parent, foopath);
133            ViewLifecyclePhase foophase = KRADServiceLocatorWeb.getViewLifecyclePhaseBuilder().buildPhase(
134                    UifConstants.ViewPhases.INITIALIZE, foofield, parent, foopath);
135            InitializeDataFieldFromDictionaryTask footask = new InitializeDataFieldFromDictionaryTask();
136            footask.setElementState(foophase);
137
138            String barpath = "items[1]";
139            DataField barfield = ObjectPropertyUtils.getPropertyValue(parent, barpath);
140            ViewLifecyclePhase barphase = KRADServiceLocatorWeb.getViewLifecyclePhaseBuilder().buildPhase(
141                    UifConstants.ViewPhases.INITIALIZE, barfield, parent, barpath);
142            InitializeDataFieldFromDictionaryTask bartask = new InitializeDataFieldFromDictionaryTask();
143            bartask.setElementState(barphase);
144
145            AttributeDefinition fooattribute = footask.findNestedDictionaryAttribute(foofield.getPropertyName());
146            assertTrue(fooattribute.isRequired());
147
148            AttributeDefinition barattribute = bartask.findNestedDictionaryAttribute(barfield.getPropertyName());
149            assertFalse(barattribute.isRequired());
150        }
151    }
152
153    @Test
154    public void testAttribute() throws Throwable {
155        ViewLifecycle
156                .encapsulateLifecycle(KRADServiceLocatorWeb.getViewService().getViewById("TestView"),
157                        new TestForm(), new MockHttpServletRequest(),
158                        new TestAttributeProcess());
159    }
160
161}