edu.sampleu.main.ContextLookUpAftBase.java Source code

Java tutorial

Introduction

Here is the source code for edu.sampleu.main.ContextLookUpAftBase.java

Source

/**
 * Copyright 2005-2015 The Kuali Foundation
 *
 * Licensed under the Educational Community License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.opensource.org/licenses/ecl2.php
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package edu.sampleu.main;

import org.apache.commons.lang.RandomStringUtils;
import org.kuali.rice.testtools.common.JiraAwareFailable;
import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
import org.kuali.rice.testtools.selenium.WebDriverUtils;

/**
 * @author Kuali Rice Team (rice.collab@kuali.org)
 */
public class ContextLookUpAftBase extends MainTmplMthdSTNavBase {

    /**
     * ITUtil.PORTAL + "?channelTitle=Context%20Lookup&channelUrl="
     *   + WebDriverUtils.getBaseUrlString() + ITUtil.KRAD_LOOKUP_METHOD
     *   + "org.kuali.rice.krms.impl.repository.ContextBo"
     *   + ITUtil.SHOW_MAINTENANCE_LINKS
     *   + "&returnLocation=" + ITUtil.PORTAL_URL + ITUtil.HIDE_RETURN_LINK;
     */
    public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL
            + "?channelTitle=Context%20Lookup&channelUrl=" + WebDriverUtils.getBaseUrlString()
            + AutomatedFunctionalTestUtils.KRAD_LOOKUP_METHOD + "org.kuali.rice.krms.impl.repository.ContextBo"
            + AutomatedFunctionalTestUtils.SHOW_MAINTENANCE_LINKS + "&returnLocation="
            + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK;

    @Override
    protected String getBookmarkUrl() {
        return BOOKMARK_URL;
    }

    /**
     * {@inheritDoc}
     * Context Lookup
     * @return
     */
    @Override
    protected String getLinkLocator() {
        return "Context Lookup";
    }

    public void testContextLookUpBookmark(JiraAwareFailable failable) throws Exception {
        contextLookupAssertions();
        passed();
    }

    public void testContextLookUpNav(JiraAwareFailable failable) throws Exception {
        contextLookupAssertions();
        passed();
    }

    public void testContextCopy(JiraAwareFailable failable) throws Exception {
        waitAndClickSearchByText();
        waitAndClickLinkContainingText("copy");
        String randomNumber = RandomStringUtils.randomAlphabetic(4);
        waitAndTypeByName("document.newMaintainableObject.dataObject.id", "Context " + randomNumber);
        clearTextByName("document.newMaintainableObject.dataObject.name");
        waitAndTypeByName("document.newMaintainableObject.dataObject.name", "Context name" + randomNumber);
        clearTextByName("document.newMaintainableObject.dataObject.description");
        waitAndTypeByName("document.newMaintainableObject.dataObject.description", "Context desc" + randomNumber);
        waitAndClickButtonByText("Submit");
        waitAndClickConfirmSubmitOk();
        waitForProgressLoading(WebDriverUtils.configuredImplicityWait() * 10);
        waitForTextPresent("Document was successfully submitted.");
        passed();
    }
}