001/** 002 * Copyright 2005-2014 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 edu.sampleu.admin.workflow; 017 018import org.junit.Test; 019import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils; 020import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase; 021import org.kuali.rice.testtools.selenium.WebDriverUtils; 022 023/** 024 * @author Kuali Rice Team (rice.collab@kuali.org) 025 */ 026public class DocumentOperationAft extends WebDriverLegacyITBase { 027 028 /** 029 * AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Document%20Operation&channelUrl="+ WebDriverUtils 030 * .getBaseUrlString()+"/kew/DocumentOperation.do"; 031 */ 032 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Document%20Operation&channelUrl="+ WebDriverUtils 033 .getBaseUrlString()+"/kew/DocumentOperation.do"; 034 035 @Override 036 protected String getBookmarkUrl() { 037 return BOOKMARK_URL; 038 } 039 040 @Override 041 protected void navigate() throws InterruptedException { 042 waitAndClickAdministration(); 043 waitAndClickByLinkText("Document Operation"); 044 } 045 046 protected void testDocumentOperation() throws Exception { 047 selectFrameIframePortlet(); 048 049 DocumentTypeAft test = new DocumentTypeAft(); 050 test.setTestMethodName("DocumentOperationAft." + testMethodName); 051 test.setUpSetUp(); 052 test.setDriver(getDriver()); // Use this tests WebDriver as the tests own has not been setup 053 open(getBaseUrlString() + test.getBookmarkUrl()); 054 String docId=test.testDocumentType(); 055 056 open(getBaseUrlString() + getBookmarkUrl()); 057 selectFrameIframePortlet(); 058 059 if(docId !=null || docId.length()!=0){ 060 waitAndTypeByName("documentId", docId); 061 waitAndClickByName("methodToCall.getDocument"); 062 waitForElementPresentByXpath("//input[@src='images/buttonsmall_save.gif']"); 063 assertTextPresent(new String[] {"Document Actions", "Queue Document", "Queue Action Invocation", "Document ID:"}); 064 } 065 } 066 067 @Test 068 public void testDocumentOperationBookmark() throws Exception { 069 testDocumentOperation(); 070 passed(); 071 } 072 073 @Test 074 public void testDocumentOperationNav() throws Exception { 075 testDocumentOperation(); 076 passed(); 077 } 078}