1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
35
36
37
38
39 public abstract class XmlIngesterAftBase extends FreemarkerAftBase {
40
41
42
43
44 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=XML%20Ingester&channelUrl="
45 + WebDriverUtils.getBaseUrlString() + "/kew/../core/Ingester.do";
46
47
48 private String PROPS_LOCATION = System.getProperty("xmlingester.props.location", null);
49 private static final String DEFAULT_PROPS_LOCATION = "XML/xmlingester.properties";
50
51
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
65
66
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
80
81
82
83 @Override
84 public String getUserName() {
85 return "admin";
86 }
87
88
89
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
102
103
104
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
119
120
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
140 if (isKrad()){
141 waitAndClickByXpath("//button");
142 } else {
143 waitAndClickByXpath("//*[@id='imageField']");
144 }
145
146
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
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
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 }