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.kitchensink;
017
018import org.junit.Ignore;
019import org.junit.Test;
020import org.openqa.selenium.JavascriptExecutor;
021
022/**
023 * @author Kuali Rice Team (rice.collab@kuali.org)
024 */
025public class LabsLookupsAft extends LabsKitchenSinkBase {
026
027    /**
028     * /kr-krad/uicomponents?viewId=UifCompView&pageId=UifCompView-Page6&lightbox=true
029     */
030    public static final String BOOKMARK_URL = "/kr-krad/uicomponents?viewId=UifCompView&pageId=UifCompView-Page6&lightbox=true";
031
032    @Override
033    protected String getBookmarkUrl() {
034        return BOOKMARK_URL;
035    }
036
037        @Override
038        protected void navigate() throws Exception {
039                navigateToKitchenSink("Lookups, etc");
040        }
041
042    @Test
043    @Ignore //Ignore this test due to the issues found in KULRICE-13108.  They will fail until a solution can be found.
044    public void testAjaxLookupBookmark() throws Exception {
045        testAjaxLookup();
046        passed();
047    }
048
049    @Test
050    @Ignore //Ignore this test due to the issues found in KULRICE-13108.  They will fail until a solution can be found.
051    public void testAjaxLookupNav() throws Exception {
052        testAjaxLookup();
053        passed();
054    }
055
056        @Test
057    public void testLookupsBookmark() throws Exception {
058        testLookups();
059        passed();
060    }
061
062    @Test
063    public void testLookupsNav() throws Exception {
064        testLookups();
065        passed();
066    }
067
068    protected void testAjaxLookup() throws InterruptedException {
069        clearTextByName("field79");
070        waitAndTypeByName("field79", "a3");
071        ((JavascriptExecutor)driver).executeScript("document.getElementsByName('field79')[0].blur();");
072        waitForTextPresent("Travel Account 3");
073    }
074
075    protected void testLookups() throws InterruptedException {
076// a2 link is now gone, bug or feature?
077//        waitAndClickByLinkText("a2");
078//        gotoLightBox();
079//        assertTextPresent(new String[] {"Travel Account Number:", "a2", "Travel Account Name:", "Travel Account 2", "Code And Description:", "EAT - Expense"});
080//        waitAndClickButtonByText("Close");
081
082        clearTextByName("field72");
083        waitAndTypeByName("field72", "a2");
084        fireEvent("field72", "blur");
085        waitAndClickByName("field76"); // force blur on field72
086        waitForTextPresent("Travel Account 2");
087
088        clearTextByName("field76");
089        waitAndTypeByName("field76", "a1");
090        fireEvent("field76", "blur");
091        waitForTextPresent("Travel Account 1");
092
093        waitAndClickByXpath("//button[@class='btn btn-default uif-action icon-search']");
094        gotoLightBoxIframe();
095        waitAndClickSearchByText();
096        waitAndClickReturnValue();
097        waitAndClickByXpath("//div[@data-parent='refreshLookups1']/div/div/button[@class='btn btn-default uif-action icon-search']");
098        gotoLightBoxIframe();
099        waitAndClickSearchByText();
100        waitAndClickReturnValue();
101
102        clearTextByName("field70");
103        waitAndTypeByName("field70", "a1");
104        waitAndClickByXpath("//button[@title='Direct Inquiry']");
105        gotoLightBox();
106        assertTextPresent(new String[] {"Travel Account Number:", "a1", "Travel Account Name:", "Travel Account 1", "Code And Description:", "IAT - Income"});
107        waitAndClickButtonByText("Close");
108    }
109}