1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.xml.export;
17
18 import static org.junit.Assert.assertEquals;
19 import static org.junit.Assert.assertFalse;
20 import static org.junit.Assert.assertTrue;
21
22 import java.io.BufferedInputStream;
23 import java.io.ByteArrayInputStream;
24 import java.util.Iterator;
25 import java.util.List;
26
27 import org.apache.commons.lang.StringUtils;
28 import org.junit.Test;
29 import org.kuali.rice.core.api.CoreApiServiceLocator;
30 import org.kuali.rice.kew.export.KewExportDataSet;
31 import org.kuali.rice.kew.rule.bo.RuleAttribute;
32 import org.kuali.rice.kew.rule.bo.RuleTemplateAttribute;
33 import org.kuali.rice.kew.service.KEWServiceLocator;
34 import org.kuali.rice.test.BaselineTestCase;
35
36 @BaselineTestCase.BaselineMode(BaselineTestCase.Mode.NONE)
37 public class RuleAttributeXmlExporterTest extends XmlExporterTestCase {
38
39
40
41
42 @Test public void testExport() throws Exception {
43 loadXmlFile("RuleAttributeExportConfig.xml");
44 assertExport();
45 }
46
47 protected void assertExport() throws Exception {
48
49 List oldRuleAttributes = KEWServiceLocator.getRuleAttributeService().findAll();
50 KewExportDataSet dataSet = new KewExportDataSet();
51 dataSet.getRuleAttributes().addAll(oldRuleAttributes);
52 byte[] xmlBytes = CoreApiServiceLocator.getXmlExporterService().export(dataSet.createExportDataSet());
53 assertTrue("XML should be non empty.", xmlBytes != null && xmlBytes.length > 0);
54
55
56 loadXmlStream(new BufferedInputStream(new ByteArrayInputStream(xmlBytes)));
57
58 List newRuleAttributes = KEWServiceLocator.getRuleAttributeService().findAll();
59 assertEquals("Should have same number of old and new RuleAttributes.", oldRuleAttributes.size(), newRuleAttributes.size());
60 for (Iterator iterator = oldRuleAttributes.iterator(); iterator.hasNext();) {
61 RuleAttribute oldRuleAttribute = (RuleAttribute) iterator.next();
62 boolean foundAttribute = false;
63 for (Iterator iterator2 = newRuleAttributes.iterator(); iterator2.hasNext();) {
64 RuleAttribute newRuleAttribute = (RuleAttribute) iterator2.next();
65 if (oldRuleAttribute.getName().equals(newRuleAttribute.getName())) {
66 assertRuleAttributeExport(oldRuleAttribute, newRuleAttribute);
67 foundAttribute = true;
68 }
69 }
70 assertTrue("Could not locate the new rule attribute for name " + oldRuleAttribute.getName(), foundAttribute);
71 }
72 }
73
74 private void assertRuleAttributeExport(RuleAttribute oldRuleAttribute, RuleAttribute newRuleAttribute) {
75
76 assertEquals("Ids should be the same.", oldRuleAttribute.getRuleAttributeId(), newRuleAttribute.getRuleAttributeId());
77 assertFalse("Version numbers should be different.", oldRuleAttribute.getVersionNumber().equals(newRuleAttribute.getVersionNumber()));
78 assertEquals(oldRuleAttribute.getDescription(), newRuleAttribute.getDescription());
79 assertEquals(oldRuleAttribute.getName(), newRuleAttribute.getName());
80 assertEquals(oldRuleAttribute.getLabel(), newRuleAttribute.getLabel());
81 assertEquals(oldRuleAttribute.getType(), newRuleAttribute.getType());
82 assertEquals(StringUtils.deleteWhitespace(oldRuleAttribute.getXmlConfigData()), StringUtils.deleteWhitespace(newRuleAttribute.getXmlConfigData()));
83 assertRuleTemplateAttributes(oldRuleAttribute.getRuleTemplateAttributes(), newRuleAttribute.getRuleTemplateAttributes());
84 }
85
86 private void assertRuleTemplateAttributes(List oldRuleTemplateAttributes, List newRuleTemplateAttributes) {
87 assertEquals(oldRuleTemplateAttributes.size(), newRuleTemplateAttributes.size());
88 for (Iterator iterator = oldRuleTemplateAttributes.iterator(); iterator.hasNext();) {
89 RuleTemplateAttribute oldAttribute = (RuleTemplateAttribute) iterator.next();
90 boolean foundAttribute = false;
91 for (Iterator iterator2 = oldRuleTemplateAttributes.iterator(); iterator2.hasNext();) {
92 RuleTemplateAttribute newAttribute = (RuleTemplateAttribute) iterator2.next();
93 if (oldAttribute.getRuleAttribute().getName().equals(newAttribute.getRuleAttribute().getName())) {
94 assertEquals(oldAttribute.getRequired(), newAttribute.getRequired());
95 foundAttribute = true;
96 }
97 }
98 assertTrue("Could not locate new attribute.", foundAttribute);
99 }
100 }
101
102 }