View Javadoc

1   /**
2    * Copyright 2005-2013 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 edu.sampleu.common.FreemarkerAftBase;
19  import org.junit.Rule;
20  import org.junit.rules.TemporaryFolder;
21  import org.kuali.rice.testtools.common.JiraAwareFailable;
22  import org.kuali.rice.testtools.common.PropertiesUtils;
23  import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
24  import org.kuali.rice.testtools.selenium.WebDriverUtils;
25  import org.openqa.selenium.By;
26  
27  import java.io.File;
28  import java.io.IOException;
29  import java.util.ArrayList;
30  import java.util.List;
31  import java.util.Properties;
32  
33  /**
34   * Tests uploads of new users and group.
35   *
36   * @author Kuali Rice Team (rice.collab@kuali.org)
37   */
38  
39  public abstract class XmlIngesterAftBase extends FreemarkerAftBase {
40  
41      /**
42       * http://env12.rice.kuali.org/portal.do?channelTitle=XML%20Ingester&channelUrl=http://env12.rice.kuali.org/kew/../core/Ingester.do
43       */
44      public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=XML%20Ingester&channelUrl="
45              + WebDriverUtils.getBaseUrlString() + "/kew/../core/Ingester.do";
46  
47      // File generation
48      private String PROPS_LOCATION = System.getProperty("xmlingester.props.location", null);
49      private static final String DEFAULT_PROPS_LOCATION = "XML/xmlingester.properties";
50  
51      // Templates for File Generation
52      private static final String DIR_TMPL = "/XML/";
53      private static final String TMPL_USER_CONTENT = "SimpleUserContent.ftl";
54      private static final String TMPL_GROUP_CONTENT = "SimpleGroupContent.ftl";
55  
56      @Rule
57      public TemporaryFolder folder= new TemporaryFolder();
58  
59      protected File newTempFile(String name) throws IOException {
60          return folder.newFile(name);
61      }
62  
63      /**
64       * {@inheritDoc}
65       * {@link #DIR_TMPL}
66       * @return
67       */
68      @Override
69      protected String getTemplateDir() {
70          return DIR_TMPL;
71      }
72  
73      @Override
74      protected String getBookmarkUrl() {
75          return BOOKMARK_URL;
76      }
77  
78      /**
79       * "admin" xml ingestion requires admin permissions.
80       * {@inheritDoc}
81       * @return
82       */
83      @Override
84      public String getUserName() {
85          return "admin";
86      }
87  
88      /**
89       * go to the getMenuLinkLocator() Menu and click the getLinkLocator()
90       */
91      protected void navigate(JiraAwareFailable failable) throws Exception {
92          selectTopFrame();
93          waitAndClickAdministration();
94          waitForTitleToEqualKualiPortalIndex();
95          waitAndClickXMLIngester(failable);
96          selectFrameIframePortlet();
97          checkForIncidentReport("XML Ingester", failable, "");
98      }
99  
100     /**
101      * Navigate to the page under test and call {@link #testIngestion}
102      *
103      * @param failable {@link org.kuali.rice.testtools.common.JiraAwareFailable}
104      * @throws Exception
105      */
106     protected void testIngestionNav(JiraAwareFailable failable) throws Exception {
107         navigate(failable);
108         testIngestion(failable);
109         passed();
110     }
111 
112     protected void testIngestionBookmark(JiraAwareFailable failable) throws Exception {
113         testIngestion(failable);
114         passed();
115     }
116 
117     /**
118      * Based on load user and groups manual tests; dynamically generates user and group file
119      * and loads into the xml ingester screen.
120      * This test should suffice for both KRAD and KNS versions of the ingester screen.
121      *
122      *
123      */
124     protected void testIngestion(JiraAwareFailable failable) throws Exception {
125         selectFrameIframePortlet();
126         List<File> fileUploadList = buildFileUploadList();
127         int cnt = 0;
128 
129         for(File file : fileUploadList) {
130             String path = file.getAbsolutePath().toString();
131             if (isKrad()){
132                 driver.findElement(By.name("files[" + cnt + "]")).sendKeys(path);
133             } else {
134                 driver.findElement(By.name("file[" + cnt + "]")).sendKeys(path);
135             }
136             cnt++;
137         }
138 
139         // Click the Upload Button
140         if (isKrad()){
141             waitAndClickByXpath("//button");
142         } else {
143             waitAndClickByXpath("//*[@id='imageField']");
144         }
145 
146         // confirm all files were uploaded successfully
147         Thread.sleep(1000);
148         for(File file: fileUploadList) {
149             assertTextPresent("Ingested xml doc: " + file.getName());
150         }
151     }
152 
153     protected List<File> buildFileUploadList() throws Exception {
154         List<File> fileUploadList = new ArrayList<File>();
155         try {
156             // update properties with timestamp value if includeDTSinPrefix is true
157             Properties props = loadProperties(PROPS_LOCATION, DEFAULT_PROPS_LOCATION);
158             if(props.get("userIncludeDTSinPrefix") != null
159                     && "true".equalsIgnoreCase((String) props.get("userIncludeDTSinPrefix"))) {
160                 props.setProperty("userPrefix", "" + props.get("userPrefix") + AutomatedFunctionalTestUtils.DTS);
161             }
162             props = new PropertiesUtils().systemPropertiesOverride(props, "XMLIngester");
163 
164             // build files and add to array
165             fileUploadList.add(
166                     writeTemplateToFile(newTempFile("loadtest-users.xml"), cfg.getTemplate(TMPL_USER_CONTENT), props));
167             fileUploadList.add(
168                     writeTemplateToFile(newTempFile("loadtest-group.xml"), cfg.getTemplate(TMPL_GROUP_CONTENT), props));
169         } catch( Exception e) {
170             throw new Exception("Unable to generate files for upload " + e.getMessage(), e);
171         }
172 
173         return fileUploadList;
174     }
175 }