View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.admin;
17  
18  import org.kuali.rice.testtools.common.JiraAwareFailable;
19  import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
20  import org.kuali.rice.testtools.selenium.WebDriverUtils;
21  
22  /**
23   * @author Kuali Rice Team (rice.collab@kuali.org)
24   */
25  public abstract class ClearIndividualCashesAftBase extends AdminTmplMthdAftNavBase {
26  
27      /**
28       * ITUtil.PORTAL+"?channelTitle=Cache%20Admin&channelUrl="+WebDriverUtils.getBaseUrlString()+
29       * "/kr-krad/core/admin/cache?viewId=CacheAdmin-view1&methodToCall=start"+    
30       */
31      public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Cache%20Admin&channelUrl="+ WebDriverUtils
32              .getBaseUrlString()+"/kr-krad/core/admin/cache?viewId=CacheAdmin-view1&methodToCall=start";
33  
34      @Override
35      protected String getBookmarkUrl() {
36          return BOOKMARK_URL;
37      }
38  
39      /**
40       * {@inheritDoc}
41       * Cache Admin
42       * @return
43       */
44      @Override
45      protected String getLinkLocator() {
46          return "Cache Admin";
47      }
48  
49      public void testClearIndividualCashesBookmark(JiraAwareFailable failable) throws Exception {
50          testClearIndividualCashes();
51          passed();
52      }
53  
54      public void testClearIndividualCashesNav(JiraAwareFailable failable) throws Exception {
55          testClearIndividualCashes();
56          passed();
57      }    
58      
59      public void testClearIndividualCashes() throws Exception
60      {
61          selectFrameIframePortlet();
62          waitAndClickByXpath("//ul[@class='jstree-no-icons']/li[4]/ins");
63          waitAndClickByXpath("//ul[@class='jstree-no-icons']/li[4]/ul/li[15]/a/ins");
64          waitAndClickButtonByText("Flush");
65          Thread.sleep(10000);
66          assertTextPresent("Cache: http://rice.kuali.org/krms/v2_0/TermSpecificationType was flushed for the CacheManager: krmsDistributedCacheManager.");
67          assertTextPresent("Cache Management");
68      }
69  }