001/**
002 * Copyright 2005-2015 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.labs.lookups;
017
018import org.junit.Test;
019
020/**
021 * @author Kuali Rice Team (rice.collab@kuali.org)
022 */
023public class LabsLookupValidateSearchParamsAft extends LabsLookupBase {
024
025    /**
026     * /kr-krad/lookup?methodToCall=search&dataObjectClassName=edu.sampleu.travel.dataobject.TravelPerDiemExpense&viewId=LabsLookup-PerDiemExpenseDisabledWildcardsView
027     */
028    public static final String BOOKMARK_URL = "/kr-krad/lookup?methodToCall=search&dataObjectClassName=edu.sampleu.travel.dataobject.TravelPerDiemExpense&viewId=LabsLookup-PerDiemExpenseDisabledWildcardsView";
029
030    /**
031     *  are treated literally
032     */
033    private static final String WILDCARD_WARNING_MSG="are treated literally";
034
035    /**
036     * Negative values are not allowed on this Breakfast Value field.
037     */
038    private static final String NEGATIVE_WARNING_MSG="Negative values are not allowed";
039    
040    /**
041     * _)(*
042     */
043    private static final String WILDCARD_INPUT="_)(*"; 
044    
045    /**
046     * -9_)(*
047     */
048    private static final String NEGATIVE_WILDCARD_INPUT="-9_)(*"; 
049    
050   
051    @Override
052    protected String getBookmarkUrl() {
053        return BOOKMARK_URL;
054    }
055
056    @Override
057    protected void navigate() throws Exception {
058        navigateToLookup("Lookup Validate Search Parms");
059    }
060
061    @Test
062    public void testLabsValidateSearchParamsBookmark() throws Exception {
063        testLabsValidateSearchParams();
064        passed();
065    }
066
067    @Test
068    public void testLabsValidateSearchParamsNav() throws Exception {
069        testLabsValidateSearchParams();
070        passed();
071    }
072
073    protected void testLabsValidateSearchParams()throws Exception {
074        waitAndTypeByName("lookupCriteria[travelPerDiemExpenseId]",WILDCARD_INPUT);
075        assertWarningPresent(Boolean.TRUE,Boolean.FALSE);
076        waitAndTypeByName("lookupCriteria[travelAuthorizationDocumentId]",WILDCARD_INPUT);
077        assertWarningPresent(Boolean.TRUE,Boolean.FALSE);
078        waitAndTypeByName("lookupCriteria[breakfastValue]",NEGATIVE_WILDCARD_INPUT);
079        assertWarningPresent(Boolean.TRUE,Boolean.TRUE);
080        waitAndTypeByName("lookupCriteria[lunchValue]",NEGATIVE_WILDCARD_INPUT);
081        assertWarningPresent(Boolean.TRUE,Boolean.TRUE);
082        waitAndTypeByName("lookupCriteria[dinnerValue]",NEGATIVE_WILDCARD_INPUT);
083        assertWarningPresent(Boolean.TRUE,Boolean.TRUE);
084        waitAndTypeByName("lookupCriteria[incidentalsValue]",NEGATIVE_WILDCARD_INPUT);
085        assertWarningPresent(Boolean.TRUE,Boolean.TRUE);
086        waitAndTypeByName("lookupCriteria[estimatedMileage]",NEGATIVE_WILDCARD_INPUT);
087    }
088    
089    private void assertWarningPresent(Boolean isWildCardWarningPresent , Boolean isNegativeWarningPresent) throws Exception {
090        waitAndClickSearch3();
091        if(isWildCardWarningPresent){
092                waitForTextPresent(WILDCARD_WARNING_MSG);
093        }
094        if(isNegativeWarningPresent){
095                waitForTextPresent(NEGATIVE_WARNING_MSG);
096        }
097    }
098}