1 package org.kuali.rice.krad.uif;
2
3 import org.junit.Test;
4 import org.kuali.rice.krad.uif.field.DataField;
5 import org.kuali.rice.krad.uif.field.InputField;
6 import org.kuali.rice.krad.uif.view.InquiryView;
7 import org.kuali.test.KRADTestCase;
8 import org.kuali.test.TestDictionaryConfig;
9
10 import java.util.List;
11 import java.util.Map;
12
13 import static org.junit.Assert.*;
14
15
16
17
18
19
20 @TestDictionaryConfig(
21 dataDictionaryFiles = "classpath:org/kuali/rice/krad/uif/UifBeanFactoryPostProcessorTestBeans.xml")
22 public class UifBeanFactoryPostProcessorTest extends KRADTestCase {
23
24
25
26
27
28
29
30
31
32
33
34
35
36 @Test
37 public void testOverrideOfNestedBeanExpression() throws Exception {
38
39 InputField inputField = (InputField) getTestDictionaryObject("testNestedExpressionOverride2");
40 assertNotNull("No bean exists with id: testNestedExpressionOverride2", inputField);
41
42 assertNotNull("Expression not in graph", inputField.getExpressionGraph().get("inquiry.render"));
43
44
45 inputField = (InputField) getTestDictionaryObject("testNestedExpressionOverride");
46 assertNotNull("No bean exists with id: testNestedExpressionOverride", inputField);
47
48 assertFalse("Child property did not override", inputField.getInquiry().isRender());
49 assertNull("Parent nested bean expression still in expression graph", inputField.getExpressionGraph().get(
50 "inquiry.render"));
51
52
53 inputField = (InputField) getTestDictionaryObject("testNestedExpressionOverride3");
54 assertNotNull("No bean exists with id: testNestedExpressionOverride3", inputField);
55
56 assertTrue("Child property did not override", inputField.getInquiry().isRender());
57 assertNull("Parent nested bean expression still in expression graph", inputField.getExpressionGraph().get(
58 "inquiry.render"));
59
60
61 UifTestBeanObject testBean = (UifTestBeanObject) getTestDictionaryObject("testNestedExpressionOverride5");
62 assertNotNull("No bean exists with id: testNestedExpressionOverride5", testBean);
63
64 assertEquals("Child property did not override", "old school",
65 testBean.getReference1().getReference1().getProperty1());
66 assertNull("Parent nested bean expression still in expression graph", inputField.getExpressionGraph().get(
67 "reference1.reference1.property1"));
68 }
69
70
71
72
73
74
75 @Test
76 public void testMergingOfMapExpressions() throws Exception {
77 UifTestBeanObject testBean = (UifTestBeanObject) getTestDictionaryObject("testExpressionMapMerging2");
78 assertNotNull("No bean exists with id: testExpressionMapMerging2", testBean);
79
80 assertTrue("Merged map is not correct size (2)", testBean.getMap1().size() == 2);
81 assertTrue("Merged map does not contain key2", testBean.getMap1().containsKey("key2"));
82 assertTrue("Merged map does not contain key3)", testBean.getMap1().containsKey("key3"));
83
84 assertTrue("Expression count not correct for merged map", testBean.getExpressionGraph().size() == 2);
85 assertEquals("Bean does not contain expression for property key1", "@{expr1}",
86 testBean.getExpressionGraph().get("map1['key1']"));
87 assertEquals("Bean does not contain expression for property key4", "@{expr4}",
88 testBean.getExpressionGraph().get("map1['key4']"));
89 }
90
91
92
93
94
95
96 @Test
97 public void testNonMergingOfMapExpressions() throws Exception {
98 UifTestBeanObject testBean = (UifTestBeanObject) getTestDictionaryObject("testExpressionMapNonMerging");
99 assertNotNull("No bean exists with id: testExpressionMapNonMerging", testBean);
100
101 assertTrue("Non-Merged map is not correct size (1)", testBean.getMap1().size() == 1);
102 assertTrue("Non-Merged map does not contain key3)", testBean.getMap1().containsKey("key3"));
103
104 assertTrue("Expression count not correct for non-merged map", testBean.getExpressionGraph().size() == 1);
105 assertEquals("Bean does not contain expression for property key4", "@{expr4}",
106 testBean.getExpressionGraph().get("map1['key4']"));
107 }
108
109
110
111
112
113
114
115 public void testNestedListExpressions() throws Exception {
116 UifTestBeanObject testBean = (UifTestBeanObject) getTestDictionaryObject("testListBeanExpressionMerging");
117 assertNotNull("No bean exists with id: testListBeanExpressionMerging", testBean);
118
119 Map<String, String> mergedMap = testBean.getListReference1().get(0).getReference1().getMap1();
120
121 assertTrue("Merged map is not correct size (2)", mergedMap.size() == 2);
122 assertTrue("Merged map does not contain key2", mergedMap.containsKey("key2"));
123 assertTrue("Merged map does not contain key3)", mergedMap.containsKey("key3"));
124
125 UifTestBeanObject rootListBean = testBean.getListReference1().get(0);
126
127 assertTrue("Expression count not correct for merged map", rootListBean.getExpressionGraph().size() == 2);
128 assertEquals("Bean does not contain expression for property key1", "@{expr1}",
129 rootListBean.getExpressionGraph().get("reference1.map1['key1']"));
130 assertEquals("Bean does not contain expression for property key1", "@{expr4}",
131 rootListBean.getExpressionGraph().get("reference1.map1['key4']"));
132 }
133
134
135
136
137
138
139
140
141 public void testListExpressions() throws Exception {
142
143 UifTestBeanObject testBean = (UifTestBeanObject) getTestDictionaryObject("testListExpressions");
144 assertNotNull("No bean exists with id: testListExpressions", testBean);
145
146 List<String> list1 = testBean.getList1();
147 assertTrue("List with expressions is not correct size", list1.size() == 1);
148 assertTrue("Expression graph for non-inheritance list not correct size",
149 testBean.getExpressionGraph().size() == 2);
150 assertEquals("First expression in expression graph not correct", "${expr2} before val",
151 testBean.getExpressionGraph().get("list1[0]"));
152 assertEquals("Second expression in expression graph not correct", "${expr3}", testBean.getExpressionGraph().get(
153 "list1[2]"));
154 }
155
156
157
158
159
160
161 @Test
162 public void testPostProcessBeanFactoryWithSimpleInheritanceSucceeds() throws Exception {
163 UifTestBeanObject simpleBean1 = (UifTestBeanObject) getTestDictionaryObject("testSimpleBean1");
164 UifTestBeanObject simpleBean2 = (UifTestBeanObject) getTestDictionaryObject("testSimpleBean2");
165
166 assertEquals("Bean does not have the correct property3 value", simpleBean1.getExpressionGraph().get("property3"), "@{1 eq 1}");
167 assertNull("Bean should not have a property3 value", simpleBean2.getExpressionGraph().get("property3"));
168 }
169
170
171
172
173
174
175 @Test
176 public void testPostProcessBeanFactoryWithSimpleNestingSucceeds() throws Exception {
177 UifTestBeanObject simpleBean1 = (UifTestBeanObject) getTestDictionaryObject("testSimpleBean1");
178 UifTestBeanObject simpleBean4 = (UifTestBeanObject) getTestDictionaryObject("testSimpleBean4");
179
180 assertEquals("Bean does not have the correct property3 value", simpleBean1.getExpressionGraph().get("property3"), "@{1 eq 1}");
181 assertNull("Bean should not have a property3 value", simpleBean4.getExpressionGraph().get("property3"));
182 }
183
184
185
186
187
188
189 @Test
190 public void testPostProcessBeanFactoryWithPeopleFlowSucceeds() throws Exception {
191 InquiryView inquiryView = (InquiryView) getTestDictionaryObject("testPeopleFlow-InquiryView");
192
193 assertNotNull("Bean should have an inquiry property value", ((DataField)inquiryView.getItems().get(0).getItems().get(0)).getInquiry());
194 assertFalse("Bean should have an inquiry render value of false", ((DataField)inquiryView.getItems().get(0).getItems().get(0)).getInquiry().isRender());
195 }
196
197 }