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.krad.workflow;
17  
18  import org.junit.Test;
19  import org.kuali.rice.core.api.uif.RemotableAttributeError;
20  import org.kuali.rice.core.api.uif.RemotableAttributeField;
21  import org.kuali.rice.core.api.util.type.KualiDecimal;
22  import org.kuali.rice.kew.api.document.search.DocumentSearchCriteria;
23  import org.kuali.rice.kew.api.document.search.DocumentSearchResults;
24  import org.kuali.rice.kew.api.exception.WorkflowException;
25  import org.kuali.rice.kew.docsearch.service.DocumentSearchService;
26  import org.kuali.rice.kew.doctype.bo.DocumentType;
27  import org.kuali.rice.kew.framework.document.attribute.SearchableAttribute;
28  import org.kuali.rice.kew.service.KEWServiceLocator;
29  import org.kuali.rice.kim.api.services.KimApiServiceLocator;
30  import org.kuali.rice.krad.UserSession;
31  import org.kuali.rice.krad.service.DocumentService;
32  import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
33  import org.kuali.rice.krad.test.document.AccountWithDDAttributesDocument;
34  import org.kuali.rice.krad.util.GlobalVariables;
35  import org.kuali.rice.krad.workflow.attribute.DataDictionarySearchableAttribute;
36  import org.kuali.rice.test.BaselineTestCase;
37  import org.kuali.test.KRADTestCase;
38  
39  import java.sql.Date;
40  import java.sql.Timestamp;
41  import java.util.ArrayList;
42  import java.util.Calendar;
43  import java.util.Collections;
44  import java.util.HashMap;
45  import java.util.List;
46  import java.util.Map;
47  import java.util.concurrent.Callable;
48  
49  import static org.junit.Assert.*;
50  
51  /**
52   * This class performs various DataDictionarySearchableAttribute-related tests on the doc search, including verification of proper wildcard functionality. 
53   * 
54   * @author Kuali Rice Team (rice.collab@kuali.org)
55   */
56  //@BaselineTestCase.BaselineMode(BaselineTestCase.Mode.NONE)
57  public class DataDictionarySearchableAttributeTest extends KRADTestCase {
58  
59      @Override
60      public void setUp() throws Exception {
61          super.setUp();
62          GlobalVariables.setUserSession(new UserSession("quickstart"));
63      }
64      
65      private final static String ACCOUNT_WITH_DD_ATTRIBUTES_DOCUMENT_NAME = "AccountWithDDAttributes";
66      
67      enum DOCUMENT_FIXTURE {
68      	NORMAL_DOCUMENT("Testing NORMAL_DOCUMENT", new Integer(1234567890), "John Doe", new KualiDecimal(501.77), createDate(2009, Calendar.OCTOBER, 15), createTimestamp(2009, Calendar.NOVEMBER, 1, 0, 0, 0), "SecondState", true),
69      	ZERO_NUMBER_DOCUMENT("Testing ZERO_NUMBER_DOCUMENT", new Integer(0), "Jane Doe", new KualiDecimal(-100), createDate(2009, Calendar.OCTOBER, 16), createTimestamp(2015, Calendar.NOVEMBER, 2, 0, 0, 0), "FirstState", true),
70      	FALSE_AWAKE_DOCUMENT("Testing FALSE_AWAKE_DOCUMENT", new Integer(987654321), "John D'oh", new KualiDecimal(0.0), createDate(2006, Calendar.OCTOBER, 17), createTimestamp(1900, Calendar.NOVEMBER, 3, 0, 0, 0), "FourthState", false),
71      	ODD_NAME_DOCUMENT("Testing ODD_NAME_DOCUMENT", new Integer(88), "_", new KualiDecimal(10000051.0), createDate(2009, Calendar.OCTOBER, 18), createTimestamp(2009, Calendar.NOVEMBER, 4, 0, 0, 0), "FourthState", true),
72      	ODD_TIMESTAMP_DOCUMENT("Testing ODD_TIMESTAMP_DOCUMENT", new Integer(9000), "Shane Kloe", new KualiDecimal(4.54), createDate(2012, Calendar.OCTOBER, 19), createTimestamp(2007, Calendar.NOVEMBER, 5, 12, 4, 38), "ThirdState", false),
73      	ANOTHER_ODD_NAME_DOCUMENT("Testing ANOTHER_ODD_NAME_DOCUMENT", new Integer(1234567889), "---", new KualiDecimal(501), createDate(2009, Calendar.APRIL, 20), createTimestamp(2009, Calendar.NOVEMBER, 6, 12, 59, 59), "ThirdState", true),
74      	INVALID_STATE_DOCUMENT("Testing INVALID_STATE_DOCUMENT", new Integer(99999), "AAAAAAAAA", new KualiDecimal(2.22), createDate(2009, Calendar.OCTOBER, 21), createTimestamp(2009, Calendar.NOVEMBER, 7, 0, 0, 1), "SeventhState", true),
75      	WILDCARD_NAME_DOCUMENT("Testing WILDCARD_NAME_DOCUMENT", new Integer(1), "Sh*ne><K!=e?", new KualiDecimal(771.05), createDate(2054, Calendar.OCTOBER, 22), createTimestamp(2008, Calendar.NOVEMBER, 8, 12, 0, 0), "FirstState", true);
76      	
77      	private String accountDocumentDescription;
78      	private Integer accountNumber;
79      	private String accountOwner;
80      	private KualiDecimal accountBalance;
81      	private Date accountOpenDate;
82      	private Timestamp accountUpdateDateTime;
83      	private String accountState;
84      	private boolean accountAwake;
85      	
86      	private DOCUMENT_FIXTURE(String accountDocumentDescription, Integer accountNumber, String accountOwner, KualiDecimal accountBalance, Date accountOpenDate, Timestamp accountUpdateDateTime, String accountState, boolean accountAwake) {
87      		this.accountDocumentDescription = accountDocumentDescription;
88      		this.accountNumber = accountNumber;
89      		this.accountOwner = accountOwner;
90      		this.accountBalance = accountBalance;
91      		this.accountOpenDate = accountOpenDate;
92      		this.accountUpdateDateTime = accountUpdateDateTime;
93      		this.accountState = accountState;
94      		this.accountAwake = accountAwake;
95      	}
96      	
97      	public AccountWithDDAttributesDocument getDocument(DocumentService docService) throws WorkflowException {
98      		AccountWithDDAttributesDocument acctDoc = (AccountWithDDAttributesDocument) docService.getNewDocument(ACCOUNT_WITH_DD_ATTRIBUTES_DOCUMENT_NAME);
99      		acctDoc.getDocumentHeader().setDocumentDescription(this.accountDocumentDescription);
100     		acctDoc.setAccountNumber(this.accountNumber);
101     		acctDoc.setAccountOwner(this.accountOwner);
102     		acctDoc.setAccountBalance(this.accountBalance);
103     		acctDoc.setAccountOpenDate(this.accountOpenDate);
104     		acctDoc.setAccountUpdateDateTime(this.accountUpdateDateTime);
105     		acctDoc.setAccountState(this.accountState);
106     		acctDoc.setAccountAwake(this.accountAwake);
107     		
108     		return acctDoc;
109     	}
110     }
111 	
112 	/**
113 	 * Tests the use of multi-select and wildcard searches to ensure that they function correctly for DD searchable attributes on the doc search.
114 	 */
115     @Test
116 	public void testWildcardsAndMultiSelectsOnDDSearchableAttributes() throws Exception {
117 		DocumentService docService = KRADServiceLocatorWeb.getDocumentService();
118 		//docSearchService = KEWServiceLocator.getDocumentSearchService();
119 		DocumentType docType = KEWServiceLocator.getDocumentTypeService().findByName("AccountWithDDAttributes");
120         String principalName = "quickstart";
121         String principalId = KimApiServiceLocator.getPersonService().getPersonByPrincipalName(principalName).getPrincipalId();
122 		
123         // Route some test documents.
124 		docService.routeDocument(DOCUMENT_FIXTURE.NORMAL_DOCUMENT.getDocument(docService), "Routing NORMAL_DOCUMENT", null);
125 		docService.routeDocument(DOCUMENT_FIXTURE.ZERO_NUMBER_DOCUMENT.getDocument(docService), "Routing ZERO_NUMBER_DOCUMENT", null);
126 		docService.routeDocument(DOCUMENT_FIXTURE.FALSE_AWAKE_DOCUMENT.getDocument(docService), "Routing FALSE_AWAKE_DOCUMENT", null);
127 		docService.routeDocument(DOCUMENT_FIXTURE.ODD_NAME_DOCUMENT.getDocument(docService), "Routing ODD_NAME_DOCUMENT", null);
128 		docService.routeDocument(DOCUMENT_FIXTURE.ODD_TIMESTAMP_DOCUMENT.getDocument(docService), "Routing ODD_TIMESTAMP_DOCUMENT", null);
129 		docService.routeDocument(DOCUMENT_FIXTURE.ANOTHER_ODD_NAME_DOCUMENT.getDocument(docService), "Routing ANOTHER_ODD_NAME_DOCUMENT", null);
130 		docService.routeDocument(DOCUMENT_FIXTURE.INVALID_STATE_DOCUMENT.getDocument(docService), "Routing INVALID_STATE_DOCUMENT", null);
131 		docService.routeDocument(DOCUMENT_FIXTURE.WILDCARD_NAME_DOCUMENT.getDocument(docService), "Routing WILDCARD_NAME_DOCUMENT", null);
132 
133 		// Ensure that DD searchable attribute integer fields function correctly when searched on.
134 		// Note that negative numbers are disallowed by the NumericValidationPattern that validates this field.
135 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountNumber",
136 				new String[] {"!1234567890", "*567*", "9???9", ">1", "987654321|1234567889", "<100", ">=99999", "<=-42", ">9000|<=1", "<1|>=1234567890",
137 						">1234567889&&<1234567890", ">=88&&<=99999", "0|>10&&<10000", "9000..1000000", "0..100|>1234567889", "1..10000&&>50", "250..50"},
138 				new int[]    {7            , -1     , -1     , 6   , 2                     , 3     , 4        , -1     , 6          , 2,
139 						0                         , 3              , 3              , 2              , 4                   , 2              , 0});
140 		
141 		// Ensure that DD searchable attribute string fields function correctly when searched on.
142 		// Note that DD searchable attributes cannot treat wildcards literally, so the "Sh*ne><K!=e" case below yields very different results.
143 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountOwner",
144 				new String[] {"!John Doe", "!John*", "!John Doe&&!Shane Kloe", "!Jane ???", "!Jane Doe!John Doe", "_", "_|---", "Sh*ne><K!=e",
145 						">Jane Doe", "<Shane Kloe", ">=Johnny", "<=John D'oh", ">John Doe|<---", ">=AAAAAAAAA&&<=Jane Doe", ">---&&!John D'oh",
146 						"<Shane Kloe&&!John*", "*oe", "???? Doe", "Jane Doe..John Doe", "AAAAAAAAA..Shane Kloe&&!John Doe", "John D'oh|---..Jane Doe"},
147 				new int[]    {7          , 6       , 6                       , 7          , 6                   , 1  , 2      , 8,
148 						5          , 6            , 3         , 4            , 3               , 2                        , 6,
149 						4                    , 3    , 2         , 3                   , 5                                 , 4});
150 		
151 		// Ensure that DD searchable attribute float fields function correctly when searched on. Also ensure that the CurrencyFormatter is working.
152 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountBalance",
153 				new String[] {"501.??", "*.54" , "!2.22", "10000051.0|771.05", "<0.0", ">501", "<=4.54", ">=-99.99", ">4.54|<=-1", ">=0&&<501.77", "!",
154 						"<=0|>=10000051", ">501&&<501.77", "-100|>771.05", "2.22..501", "-100..4.54&&<=0", "2.22|501.77..10000051.0", "Zero",
155 						"-$100", "<(501)&&>=($2.22)", "$4.54|<(1)", "($0.00)..$771.05", ">=$(500)", ")501(", "4.54$", "$501..0"},
156 				new int[]    {-1      , -1     , 7      , 2                  , 1     , 3     , 4       , 7         , 5           , 4             , -1,
157 						3               , 0              , 2             , 3          , 2                , 4                        , -1,
158 						1      , 2                  , 3           , 6                 , -1        , -1     , -1     , 0});
159 		
160 		// Ensure that DD searchable attribute date fields function correctly when searched on.
161 		// Note that dates with non-two-digit years outside the range of 1000 to 9999 will now fail validation.
162 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountOpenDate",
163 				new String[] {"!10/15/2009", "Unknown", "10/15/2009|10/21/2009", "10/22/????", "*/*/05", ">10/17/06", "<=12-31-09&&>=10/16/2009",
164 						">101809&&<102012", ">=10/22/2054|<10/16/2009", ">2-29-12|<=10/21/09", "<2009", ">=10/19/2012|04/20/09", ">2/29/09", "2009..2008",
165 						"10/15/2009..10/21/2009", "1/1/2009..10/20/2009|10/22/2054", "<=06/32/03", ">2008&&<2011|10/17/06", 
166 						"<02/26/10500", ">05-07-333", ">=03/26/1001", "<=11-11-9900"},
167 				new int[]    {-1           , -1       , 2                      , -1          , -1      , 7          , 3,
168 						2                 , 4                         , 8                    , 1      , 3                      , -1        , -1,
169 						4                       , 5                                , -1          , 6                      ,
170 						-1            , -1          , 8             , 8});
171 		
172 		// Ensure that DD searchable attribute multi-select fields function correctly when searched on.
173 		// Currently, an exception is *not* thrown if the value given is not among the selectable values.
174 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountStateMultiselect",
175 				new String[][] {{"FirstState"}, {"SecondState"}, {"ThirdState"}, {"FourthState"}, {"FirstState","ThirdState"},
176 						{"SecondState","FourthState"}, {"ThirdState","SecondState"}, {"FourthState","FirstState","SecondState"}, {"SeventhState"},
177 						{"ThirdState","FirstState","SecondState","FourthState"}},
178 				new int[]      {2             , 1              , 2             , 2              , 4,
179 						3                            , 3                           , 5                                         , 1,
180 						7});
181 		
182 		// Ensure that DD searchable attribute boolean fields function correctly when searched on.
183 		// TODO: Add the commented-out boolean search expressions back in once KULRICE-3698 is complete.
184 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountAwake", new String[] {"Y", "N"}, new int[] {6, 2});
185 		/*assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountAwake",
186 				new String[] {"Y", "N", "Z", "Neither", "n", "y", "true", "FALSE", "fAlSe", "TrUe", "NO", "Yes", "f", "F", "T", "t", "2", "0", "1",
187 						"Active", "INACTIVE", "On", "Off", "ON", "off", "EnAbLeD", "enabled", "dIsAbLeD", "DISABLED"},
188 				new int[]    {6  , 2  , -1 , -1       , 2  , 6  , 6     , 2      , 2      , 6     , 2   , 6    , 2  , 2  , 6  , 6  , -1 , 2  , 6  ,
189 						-1      , -1        , 6   , 2    , 6   , 2    , 6        , 6        , 2         , 2});*/
190 		
191 		// Ensure that DD searchable attribute timestamp fields function correctly when searched on.
192 		// Note that timestamps with non-two-digit years outside the range of 1000 to 9999 will now fail validation.
193 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountUpdateDateTime",
194 				new String[] {"!11/01/2009 00:00:00", "11/05/07*", "11/02/2015 00:00:00|11/06/2009 12:59:59", "11/??/2009 ??:??:??", ">110609 12:59:59",
195 						"<=2009 1:2:3", ">=11/06/09 12:59:59", "<11/8/2008 12:00 PM", "Blank",
196 						"11/3/1900 00:00:00|>11-7-09 00:00:01", "02/29/2008 07:00:00..11/04/2009 00:00:00",
197 						"11/1/09 00:00:00..11/06/09 12:59:59|11/03/1900 00:00:00", "2009..2008", "2000..2009&&>=110507 12:4:38",
198 						"<=11/08/2008 12:00 AM", ">=01-01-1000 00:00:00", ">12/31/999 23:59:59", "<01-01-10000 00:00:00", "<=12/31/9999 23:59:59"},
199 				new int[]    {-1                    , -1         , 2                                        , -1                   , 2,
200 						3             , 3                    , 2                    , -1,
201 						2                                     , 3,
202 						4                                                        , -1          , 2,
203 						2                      , 8                      , -1                   , -1                     , 8});
204 	}
205     
206     /**
207      * Creates a date quickly
208      * 
209      * @param year the year of the date
210      * @param month the month of the date
211      * @param day the day of the date
212      * @return a new java.sql.Date initialized to the precise date given
213      */
214     private static Date createDate(int year, int month, int day) {
215     	Calendar date = Calendar.getInstance();
216 		date.set(year, month, day, 0, 0, 0);
217 		return new java.sql.Date(date.getTimeInMillis());
218     }
219     
220     /**
221      * Utility method to create a timestamp quickly
222      * 
223      * @param year the year of the timestamp
224      * @param month the month of the timestamp
225      * @param day the day of the timestamp
226      * @param hour the hour of the timestamp
227      * @param minute the minute of the timestamp
228      * @param second the second of the timestamp
229      * @return a new java.sql.Timestamp initialized to the precise time given
230      */
231     private static Timestamp createTimestamp(int year, int month, int day, int hour, int minute, int second) {
232     	Calendar date = Calendar.getInstance();
233     	date.set(year, month, day, hour, minute, second);
234     	return new java.sql.Timestamp(date.getTimeInMillis());
235     }
236 
237     /**
238      * A convenience method for testing wildcards on data dictionary searchable attributes.
239      *
240      * @param docType The document type containing the attributes.
241      * @param principalId The ID of the user performing the search.
242      * @param fieldName The name of the field on the test document.
243      * @param searchValues The search expressions to test. Has to be a String array (for regular fields) or a String[] array (for multi-select fields).
244      * @param resultSizes The number of expected documents to be returned by the search; use -1 to indicate that an error should have occurred.
245      * @throws Exception
246      */
247     private void assertDDSearchableAttributeWildcardsWork(DocumentType docType, String principalId, String fieldName, Object[] searchValues,
248     		int[] resultSizes) throws Exception {
249     	if (!(searchValues instanceof String[]) && !(searchValues instanceof String[][])) {
250     		throw new IllegalArgumentException("'searchValues' parameter has to be either a String[] or a String[][]");
251     	}
252     	DocumentSearchCriteria.Builder criteria = null;
253         DocumentSearchResults results = null;
254         DocumentSearchService docSearchService = KEWServiceLocator.getDocumentSearchService();
255         for (int i = 0; i < resultSizes.length; i++) {
256         	criteria = DocumentSearchCriteria.Builder.create();
257         	criteria.setDocumentTypeName(docType.getName());
258             if (searchValues instanceof String[][]) {
259                 String[] innerArray = (String[]) searchValues[i];
260                 for (int j=0; j<innerArray.length; j++) {
261                     criteria.addDocumentAttributeValue(fieldName, innerArray[j]);
262                 }
263             } else {
264                 criteria.addDocumentAttributeValue(fieldName, searchValues[i].toString());
265             }
266 
267         	try {
268         		results = docSearchService.lookupDocuments(principalId, criteria.build());
269         		if (resultSizes[i] < 0) {
270         			fail(fieldName + "'s search at loop index " + i + " should have thrown an exception");
271         		}
272         		if(resultSizes[i] != results.getSearchResults().size()){
273         			assertEquals(fieldName + "'s search results at loop index " + i + " returned the wrong number of documents.", resultSizes[i], results.getSearchResults().size());
274         		}
275         	} catch (Exception ex) {
276         		if (resultSizes[i] >= 0) {
277         			fail(fieldName + "'s search at loop index " + i + " should not have thrown an exception");
278         		}
279         	}
280         	GlobalVariables.clear();
281         }
282     }
283     
284     /**
285      * Validates that the search inputs does not cause a class cast exception
286      */
287     @Test
288     public void testValidateUserSearchInputsNoCast() throws Exception {
289     	DataDictionarySearchableAttribute searchableAttribute = new DataDictionarySearchableAttribute();
290     	final DocumentService documentService = KRADServiceLocatorWeb.getDocumentService();
291     	
292     	AccountWithDDAttributesDocument document = DOCUMENT_FIXTURE.NORMAL_DOCUMENT.getDocument(documentService);
293     	documentService.saveDocument(document);
294     	final String documentNumber = document.getDocumentNumber();
295     	    	
296     	Exception caughtException;
297     	List foundErrors;
298     	
299     	caughtException = null;
300     	foundErrors = new ArrayList();
301         DocumentSearchCriteria.Builder criteria = DocumentSearchCriteria.Builder.create();
302         criteria.setDocumentTypeName(ACCOUNT_WITH_DD_ATTRIBUTES_DOCUMENT_NAME);
303     	Map<String, List<String>> simpleParamMap = new HashMap<String, List<String>>();
304     	simpleParamMap.put("accountState", Collections.singletonList("FirstState"));
305         criteria.setDocumentAttributeValues(simpleParamMap);
306     	try {
307     		foundErrors = searchableAttribute.validateDocumentAttributeCriteria(null, criteria.build());
308     	} catch (RuntimeException re) {
309     		caughtException = re;
310     	}
311     	assertNull("Found Exception "+caughtException, caughtException);
312     	assertTrue("There were errors: "+foundErrors, (foundErrors == null || foundErrors.isEmpty()));
313     	
314     	caughtException = null;
315     	foundErrors = new ArrayList();
316     	Map<String, List<String>>  listParamMap = new HashMap<String, List<String>>();
317     	List<String> paramValues = new ArrayList<String>();
318     	paramValues.add("FirstState");
319     	paramValues.add("SecondState");
320     	listParamMap.put("accountState", paramValues);
321         criteria.setDocumentAttributeValues(listParamMap);
322     	try {
323     		foundErrors = searchableAttribute.validateDocumentAttributeCriteria(null, criteria.build());
324     	} catch (RuntimeException re) {
325     		caughtException = re;
326     	}
327     	assertNull("Found Exception "+caughtException, caughtException);
328     	assertTrue("There were errors: "+foundErrors, (foundErrors == null || foundErrors.isEmpty()));
329     }
330 
331     /**
332      * Tests handling resolution of error messages
333      */
334     @Test
335     public void testErrorMessageResolution() throws Exception {
336         final DataDictionarySearchableAttribute searchableAttribute = new DataDictionarySearchableAttribute();
337         final DocumentSearchCriteria.Builder criteria = DocumentSearchCriteria.Builder.create();
338         /*criteria.setDocumentTypeName(ACCOUNT_WITH_DD_ATTRIBUTES_DOCUMENT_NAME);
339         Map<String, List<String>> simpleParamMap = new HashMap<String, List<String>>();
340         simpleParamMap.put("accountState", Collections.singletonList("FirstState"));
341         criteria.setDocumentAttributeValues(simpleParamMap);*/
342         List<RemotableAttributeError> errors = GlobalVariables.doInNewGlobalVariables(new Callable<List<RemotableAttributeError>>() {
343             public List<RemotableAttributeError> call() {
344                 GlobalVariables.getMessageMap().putError("fake.property", "error.custom", "the error message");
345                 return searchableAttribute.validateDocumentAttributeCriteria(null, criteria.build());
346             }
347         });
348         assertEquals(1, errors.size());
349         assertEquals("the error message", errors.get(0).getMessage());
350     }
351     /**
352      * Test multiple value searches in the context of whole document search context
353      */
354     @Test
355     public void testMultiSelectIntegration() throws Exception {
356     	final DocumentService docService = KRADServiceLocatorWeb.getDocumentService();
357 		//docSearchService = KEWServiceLocator.getDocumentSearchService();
358 		DocumentType docType = KEWServiceLocator.getDocumentTypeService().findByName("AccountWithDDAttributes");
359         String principalName = "quickstart";
360         String principalId = KimApiServiceLocator.getPersonService().getPersonByPrincipalName(principalName).getPrincipalId();
361 		
362         // Route some test documents.
363 		docService.routeDocument(DOCUMENT_FIXTURE.NORMAL_DOCUMENT.getDocument(docService), "Routing NORMAL_DOCUMENT", null);
364 		
365 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountStateMultiselect",
366 				new String[][] {{"FirstState"}, {"SecondState"}, {"ThirdState"}, {"FourthState"}, {"FirstState", "SecondState"}, {"FirstState","ThirdState"}, {"FirstState", "FourthState"}, {"SecondState", "ThirdState"}, {"SecondState", "FourthState"}, {"ThirdState", "FourthState"}, {"FirstState", "SecondState", "ThirdState"}, {"FirstState", "ThirdState", "FourthState"}, {"SecondState", "ThirdState", "FourthState"}, {"FirstState","SecondState", "ThirdState", "FourthState"}},
367 				new int[] { 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1 });
368 		
369 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountOpenDate",
370 				new String[][] {{"10/15/2009"}, {"10/15/2009","10/17/2009"}, {"10/14/2009","10/16/2009"}},
371 				new int[] { 1, 1, 0 });
372 		
373 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountBalance",
374 				new String[][] {{"501.77"},{"501.77", "63.54"},{"501.78","501.74"}, {"502.00"}, {"0.00"} },
375 				new int[] { 1, 1, 0, 0, 0 });
376 		
377 		assertDDSearchableAttributeWildcardsWork(docType, principalId, "accountNumber",
378 				new String[][] {{"1234567890"},{"1234567890", "9876543210"},{"9876543210","77774"}, {"88881"}, {"0"} },
379 				new int[] { 1, 1, 0, 0, 0 });
380     }
381 }