View Javadoc

1   /**
2    * Copyright 2005-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.docsearch;
17  
18  import org.apache.commons.lang.StringUtils;
19  import org.junit.Ignore;
20  import org.kuali.rice.kew.api.document.search.DocumentSearchCriteria;
21  import org.kuali.rice.kew.docsearch.xml.StandardGenericXMLSearchableAttribute;
22  import org.kuali.rice.kew.test.KEWTestCase;
23  
24  /**
25   * This is a base class used for document search unit test classes to consolidate some helper methods
26   *
27   * @author Kuali Rice Team (rice.collab@kuali.org)
28   *
29   */
30  @Ignore("This class is a helper class only with no specific tests within")
31  public class DocumentSearchTestBase extends KEWTestCase {
32  
33      /**
34       * This method is used by tests that use xml attributes
35       *
36       * @param name - name of the attribute to retrieve
37       * @return
38       */
39      protected StandardGenericXMLSearchableAttribute getAttribute(String name) {
40          String attName = name;
41          if (attName == null) {
42              attName = "XMLSearchableAttribute";
43          }
44          StandardGenericXMLSearchableAttribute attribute = new StandardGenericXMLSearchableAttribute();
45          return attribute;
46      }
47  
48      protected void addSearchableAttribute(DocumentSearchCriteria.Builder criteria, String name, String value) {
49          criteria.addDocumentAttributeValue(name, value);
50      }
51  
52      protected void addSearchableAttribute(DocumentSearchCriteria.Builder criteria, String name, String[] values) {
53          for (String value : values) {
54              addSearchableAttribute(criteria, name, value);
55          }
56      }
57  
58      protected String createSearchableAttributeRange(String lowerBound, String upperBound, boolean upperBoundInclusive) {
59          StringBuilder value = new StringBuilder();
60          if (StringUtils.isNotBlank(lowerBound) && StringUtils.isNotBlank(upperBound)) {
61              value.append(lowerBound);
62              if (upperBoundInclusive) {
63                  value.append("..");
64              } else {
65                  value.append("...");
66              }
67              value.append(upperBound);
68          } else if (StringUtils.isBlank(upperBound)) {
69              value.append(">= ").append(lowerBound);
70          } else {
71              value.append("<");
72              if (upperBoundInclusive) {
73                  value.append("=");
74              }
75              value.append(" ").append(upperBound);
76          }
77          return value.toString();
78      }
79  
80  //    protected SearchAttributeCriteriaComponent createSearchAttributeCriteriaComponent(String key,String value,DocumentType docType) {
81  //        return createSearchAttributeCriteriaComponent(key, value, null, docType);
82  //    }
83  //
84  //    protected SearchAttributeCriteriaComponent createSearchAttributeCriteriaComponent(String key,String[] values,DocumentType docType) {
85  //        return createSearchAttributeCriteriaComponent(key, values, null, docType);
86  //    }
87  //
88  //    protected SearchAttributeCriteriaComponent createSearchAttributeCriteriaComponent(String key,String value,Boolean isLowerBoundValue,DocumentType docType) {
89  //        String formKey = (isLowerBoundValue == null) ? key : ((isLowerBoundValue != null && isLowerBoundValue.booleanValue()) ? KewApiConstants.SearchableAttributeConstants.RANGE_LOWER_BOUND_PROPERTY_PREFIX + key : KewApiConstants.SearchableAttributeConstants.RANGE_UPPER_BOUND_PROPERTY_PREFIX + key);
90  //        String savedKey = key;
91  //        SearchAttributeCriteriaComponent sacc = new SearchAttributeCriteriaComponent(formKey,value,savedKey);
92  //        applyAttributeFieldToComponent(sacc, docType, formKey);
93  //        return sacc;
94  //    }
95  //
96  //    protected SearchAttributeCriteriaComponent createSearchAttributeCriteriaComponent(String key,String[] values,Boolean isLowerBoundValue,DocumentType docType) {
97  //        String formKey = (isLowerBoundValue == null) ? key : ((isLowerBoundValue != null && isLowerBoundValue.booleanValue()) ? KewApiConstants.SearchableAttributeConstants.RANGE_LOWER_BOUND_PROPERTY_PREFIX + key : KewApiConstants.SearchableAttributeConstants.RANGE_UPPER_BOUND_PROPERTY_PREFIX + key);
98  //        String savedKey = key;
99  //        SearchAttributeCriteriaComponent sacc = new SearchAttributeCriteriaComponent(formKey,null,savedKey);
100 //        sacc.setValues(Arrays.asList(values));
101 //        applyAttributeFieldToComponent(sacc, docType, formKey);
102 //        return sacc;
103 //    }
104 //
105 //    private void applyAttributeFieldToComponent(SearchAttributeCriteriaComponent sacc, DocumentType docType, String formKey) {
106 //        RemotableAttributeField field = getFieldByFormKey(docType, formKey);
107 //        if (field != null) {
108 //            sacc.setSearchableAttributeValue(DocSearchUtils.getSearchableAttributeValueByDataTypeString(field.getDataType()));
109 //            boolean isRange = field.getAttributeLookupSettings() != null && field.getAttributeLookupSettings().isRanged();
110 //            sacc.setRangeSearch(isRange);
111 //            if (field.getAttributeLookupSettings().isCaseSensitive() != null) {
112 //                sacc.setCaseSensitive(field.getAttributeLookupSettings().isCaseSensitive());
113 //            }
114 //            if (isRange) {
115 //                if (field.getAttributeLookupSettings().getLowerBoundName().equals(formKey)) {
116 //                    sacc.setSearchInclusive(field.getAttributeLookupSettings().isLowerBoundInclusive());
117 //                } else if (field.getAttributeLookupSettings().getUpperBoundName().equals(formKey)) {
118 //                    sacc.setSearchInclusive(field.getAttributeLookupSettings().isUpperBoundInclusive());
119 //                } else {
120 //                    throw new IllegalStateException("Encountered an invalid ranged attribute field definition.");
121 //                }
122 //            }
123 //            boolean canHoldMultipleValues = field.getControl() instanceof Select &&
124 //                    ((Select) field.getControl()).isMultiple();
125 //            sacc.setCanHoldMultipleValues(canHoldMultipleValues);
126 //        }
127 //    }
128 //
129 //    private RemotableAttributeField getFieldByFormKey(DocumentType docType, String formKey) {
130 //        if (docType == null) {
131 //            return null;
132 //        }
133 //        for (DocumentType.ExtensionHolder<SearchableAttribute> holder : docType.loadSearchableAttributes()) {
134 //            for (RemotableAttributeField field : holder.getExtension().getSearchFields(holder.getExtensionDefinition(),
135 //                    docType.getName())) {
136 //                if (field.getName().equals(formKey)) {
137 //                    return field;
138 //                } else if (field.getAttributeLookupSettings() != null) {
139 //                    if (field.getName().equals(field.getAttributeLookupSettings().getLowerBoundName()) ||
140 //                            field.getName().equals(field.getAttributeLookupSettings().getUpperBoundName())) {
141 //                        return field;
142 //                    }
143 //                }
144 //            }
145 //        }
146 //        return null;
147 //    }
148 
149 }