View Javadoc

1   /*
2    * Copyright 2006-2011 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.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       * This will test some rule attributes with routing and searching config.
41       */
42  	@Test public void testExport() throws Exception {
43          loadXmlFile("RuleAttributeExportConfig.xml");
44          assertExport();
45      }
46          
47      protected void assertExport() throws Exception {
48          // export all existing rule attributes
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          // import the exported xml
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          // ids should be the same because we don't version rule attributes, but thier version number should be different
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 }