View Javadoc
1   /**
2    * Copyright 2005-2016 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 ClearAllCashesAftBase 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 testClearAllCashesBookmark(JiraAwareFailable failable) throws Exception {
50          testClearAllCashes();
51          passed();
52      }
53  
54      public void testClearAllCashesNav(JiraAwareFailable failable) throws Exception {
55          testClearAllCashes();
56          passed();
57      }    
58      
59      public void testClearAllCashes() throws Exception
60      {
61          selectFrameIframePortlet();
62          assertTextPresent(new String[] {"coreServiceDistributedCacheManager", "kewDistributedCacheManager",
63              "kimDistributedCacheManager", "krmsDistributedCacheManager", "locationDistributedCacheManager"});
64          waitAndClickButtonByText("Flush");
65  //        assertTextPresent("All caches were flushed for the CacheManager: coreServiceDistributedCacheManager."); // displays to fast to assert
66          waitForTextPresent("Cache Management");
67      }
68  }