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; 017 018import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils; 019import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase; 020import org.kuali.rice.testtools.selenium.WebDriverUtils; 021import org.junit.Test; 022 023/** 024 * Tests whether the ENABLE_FIELD_LEVEL_HELP_IND parameter is being considered and loaded on each request. 025 * 026 * @author Kuali Rice Team (rice.collab@kuali.org) 027 */ 028public class DetailedDocSearchAft extends WebDriverLegacyITBase { 029 /* 030 * AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Document%20Search&channelUrl=" + WebDriverUtils 031 * .getBaseUrlString() + "/kew/DocumentSearch.do?docFormKey=88888888&returnLocation=" + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK; 032 */ 033 034 public static String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Document%20Search&channelUrl=" + WebDriverUtils 035 .getBaseUrlString() + "/kew/DocumentSearch.do?docFormKey=88888888&returnLocation=" + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK; 036 037 @Override 038 protected String getBookmarkUrl() { 039 return BOOKMARK_URL; 040 } 041 042 @Override 043 protected void navigate() throws Exception { 044 waitAndClickByXpath("//img[@alt='doc search']"); 045 } 046 047 @Test 048 public void testAdvancedDocSearchNav() throws Exception { 049 advancedDocSearchAll(); 050 } 051 052 @Test 053 public void testAdvancedDocSearchBookmark() throws Exception { 054 advancedDocSearchAll(); 055 } 056 057 private void advancedDocSearchAll() throws Exception{ 058 selectFrameIframePortlet(); 059 waitAndClickByName("toggleAdvancedSearch"); 060 searchByDocumentType(); 061 searchByInitiator(); 062 searchByApprover(); 063 searchByViewer(); 064 searchByGroupViewer(); 065 searchByDocumentId(); 066 searchByApplicationDocumentId(); 067 searchByDocumentStatus(); 068 searchByDateCreatedFrom(); 069 searchByDateCreatedTo(); 070 searchByDateApprovedFrom(); 071 searchByDateApprovedTo(); 072 searchByDateLastModifiedFrom(); 073 searchByDateLastModifiedTo(); 074 searchByDateLastFinalizedFrom(); 075 searchByDateLastFinalizedTo(); 076 searchByTitle(); 077 } 078 079 private void searchByDocumentType() throws Exception { 080 selectFrameIframePortlet(); 081 waitAndTypeByName("documentTypeName","ParameterMaintenanceDocument"); 082 waitAndTypeByName("rangeLowerBoundKeyPrefix_dateCreated","03/24/2000"); 083 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 084 waitForTextPresent("Parameter Maintenance Document"); 085 waitAndClickByName("methodToCall.clearValues"); 086 } 087 088 private void searchByInitiator() throws Exception { 089 selectFrameIframePortlet(); 090 waitAndTypeByName("initiatorPrincipalName","admin"); 091 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 092 waitForTextPresent("items retrieved"); 093 waitForElementPresentByXpath("//a[contains(text(),'admin, admin')]"); 094 waitAndClickByName("methodToCall.clearValues"); 095 } 096 097 private void searchByApprover() throws Exception { 098 selectFrameIframePortlet(); 099 waitAndTypeByName("approverPrincipalName","admin"); 100 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 101 waitForTextPresent("items retrieved"); 102 waitForElementPresentByXpath("//a[contains(text(),'admin, admin')]"); 103 waitAndClickByName("methodToCall.clearValues"); 104 } 105 106 private void searchByViewer() throws Exception { 107 waitAndTypeByName("viewerPrincipalName","admin"); 108 waitAndTypeByName("rangeLowerBoundKeyPrefix_dateCreated","03/24/2000"); 109 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 110 waitForTextPresent("items retrieved"); 111 waitForElementPresentByXpath("//a[contains(text(),'admin, admin')]"); 112 waitAndClickByName("methodToCall.clearValues"); 113 } 114 115 private void searchByGroupViewer() throws Exception { 116 waitAndClickByXpath("//input[@type='image' and @alt='Search Group Viewer Id']"); 117 selectFrameIframePortlet(); 118 waitAndTypeByName("id","2009"); 119 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 120 waitAndClickLinkContainingText("return value"); 121 selectFrameIframePortlet(); 122 waitAndTypeByName("rangeLowerBoundKeyPrefix_dateCreated","03/24/2000"); 123 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 124 waitForTextPresent("Component Maintenance Document"); 125 waitForElementPresentByXpath("//a[contains(text(),'admin, admin')]"); 126 waitAndClickByName("methodToCall.clearValues"); 127 } 128 129 private void searchByDocumentId() throws Exception { 130 waitAndTypeByName("documentId","2700"); 131 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 132 waitForElementPresentByXpath("//a[contains(text(),'2700')]"); 133 waitAndClickByName("methodToCall.clearValues"); 134 } 135 136 private void searchByApplicationDocumentId() throws Exception { 137 waitAndTypeByName("applicationDocumentId","7777777"); 138 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 139 waitForElementPresentByXpath("//a[contains(text(),'3221')]"); 140 waitAndClickByName("methodToCall.clearValues"); 141 } 142 143 private void searchByDocumentStatus() throws Exception { 144 selectByName("statusCode","Successful Statuses"); 145 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 146 waitForTextPresent("FINAL"); 147 waitAndClickByName("methodToCall.clearValues"); 148 } 149 150 private void searchByDateCreatedFrom() throws Exception { 151 waitAndTypeByName("rangeLowerBoundKeyPrefix_dateCreated","04/17/2005"); 152 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 153 waitForTextPresent("items retrieved"); 154 waitAndClickByName("methodToCall.clearValues"); 155 } 156 157 private void searchByDateCreatedTo() throws Exception { 158 waitAndTypeByName("dateCreated","04/17/2014"); 159 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 160 waitForTextPresent("items retrieved"); 161 waitAndClickByName("methodToCall.clearValues"); 162 } 163 164 private void searchByDateApprovedFrom() throws Exception { 165 waitAndTypeByName("rangeLowerBoundKeyPrefix_dateApproved","04/17/2005"); 166 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 167 waitForTextPresent("items retrieved"); 168 waitAndClickByName("methodToCall.clearValues"); 169 } 170 171 private void searchByDateApprovedTo() throws Exception { 172 waitAndTypeByName("dateApproved","04/17/2014"); 173 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 174 waitForTextPresent("items retrieved"); 175 waitAndClickByName("methodToCall.clearValues"); 176 } 177 178 private void searchByDateLastModifiedFrom() throws Exception { 179 waitAndTypeByName("rangeLowerBoundKeyPrefix_dateLastModified","04/17/2005"); 180 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 181 waitForTextPresent("items retrieved"); 182 waitAndClickByName("methodToCall.clearValues"); 183 } 184 185 private void searchByDateLastModifiedTo() throws Exception { 186 waitAndTypeByName("dateLastModified","04/17/2014"); 187 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 188 waitForTextPresent("items retrieved"); 189 waitAndClickByName("methodToCall.clearValues"); 190 } 191 192 private void searchByDateLastFinalizedFrom() throws Exception { 193 waitAndTypeByName("rangeLowerBoundKeyPrefix_dateFinalized","04/17/2005"); 194 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 195 waitForTextPresent("items retrieved"); 196 waitAndClickByName("methodToCall.clearValues"); 197 } 198 199 private void searchByDateLastFinalizedTo() throws Exception { 200 waitAndTypeByName("dateFinalized","04/17/2014"); 201 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 202 waitForTextPresent("items retrieved"); 203 waitAndClickByName("methodToCall.clearValues"); 204 } 205 206 private void searchByTitle() throws Exception { 207 waitAndTypeByName("title","Travel Doc 2 - dfads"); 208 waitAndTypeByName("rangeLowerBoundKeyPrefix_dateCreated","03/24/2000"); 209 waitAndClickByXpath("//td/input[@type='image' and @name='methodToCall.search']"); 210 waitForTextPresent("Travel Doc 2 - dfads"); 211 waitAndClickByName("methodToCall.clearValues"); 212 } 213}