-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportSteps.js
366 lines (325 loc) · 9.48 KB
/
importSteps.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
const { client } = require("nightwatch-api");
const { Then, When, AfterAll } = require("@cucumber/cucumber");
const path = require("path");
const helpers = require("./helpers.js");
const importPage = client.page.importPage();
const importStepsHelpers = require("./importStepsHelpers.js");
const ontologyFolder = path.join(__basedir, "src", "files", "OntologyImport");
const experimentsFolder = path.join(
__basedir,
"src",
"files",
"ExperimentsImport"
);
const genotypeSamplesFolder = path.join(__basedir, "src", "files", "GenotypeSamplesImport");
When(
/^user sets "([^"]*)" in List Name field of import page$/,
async function (args1) {
await importStepsHelpers.setListName(args1);
}
);
When(
/^user sets "([^"]*)" in List Description field of import page$/,
async function (args1) {
await importStepsHelpers.setListDescription(args1);
}
);
Then(
/^user can see 'Import' button accepts "([^"]*)"$/,
async function (args1) {
await importPage.assert.domPropertyEquals(
{
selector: "//div[@class='file-select']//input",
locateStrategy: "xpath",
},
"accept",
args1
);
}
);
When(/^user clicks on "([^"]*)" of Germplasm table$/, async function (args1) {
await importPage.click({
selector: `//th//span[normalize-space()='${args1}']`,
locateStrategy: "xpath",
});
});
When(/^user clicks on GID sort descending$/, async function () {
await importPage.click({
selector: "//th[1]//span[@class='icon sort-icon is-small']",
locateStrategy: "xpath",
});
});
When(/^user clicks on GID sort ascending$/, async function () {
await importPage.click({
selector: "//th[1]//span[@class='icon sort-icon is-small is-desc']",
locateStrategy: "xpath",
});
});
Then(/^user can see "([^"]*)" GID in first line$/, async function (args1) {
await importPage.assert.containsText(
{
selector: `//tr[1]//td[@data-label='GID']/a`,
locateStrategy: "xpath",
},
args1
);
});
When(/^user clicks on Germplasm Name sort descending$/, async function () {
await importPage.click({
selector: "//th[2]//span[@class='icon sort-icon is-small']",
locateStrategy: "xpath",
});
});
When(/^user clicks on Germplasm Name sort ascending$/, async function () {
await importPage.click({
selector: "//th[2]//span[@class='icon sort-icon is-small is-desc']",
locateStrategy: "xpath",
});
});
Then(/^user can see "([^"]*)" Name in first line$/, async function (args1) {
await importPage.assert.containsText(
{
selector: `//tr[1]//td[@data-label='Germplasm Name']`,
locateStrategy: "xpath",
},
args1
);
});
When(/^user clicks on Breeding Method sort descending$/, async function () {
await importPage.click({
selector: "//th[3]//span[@class='icon sort-icon is-small']",
locateStrategy: "xpath",
});
});
When(/^user clicks on Breeding Method sort ascending$/, async function () {
await importPage.click({
selector: "//th[3]//span[@class='icon sort-icon is-small is-desc']",
locateStrategy: "xpath",
});
});
Then(
/^user can see "([^"]*)" Breeding Method in first line$/,
async function (args1) {
await importPage.assert.containsText(
{
selector: `//tr[1]//td[@data-label='Breeding Method']`,
locateStrategy: "xpath",
},
args1
);
}
);
When(/^user clicks on Source sort descending$/, async function () {
await importPage.click({
selector: "//th[4]//span[@class='icon sort-icon is-small']",
locateStrategy: "xpath",
});
});
When(/^user clicks on Source sort ascending$/, async function () {
await importPage.click({
selector: "//th[4]//span[@class='icon sort-icon is-small is-desc']",
locateStrategy: "xpath",
});
});
Then(/^user can see "([^"]*)" Source in first line$/, async function (args1) {
await importPage.assert.containsText(
{
selector: `//tr[1]//td[@data-label='Source']`,
locateStrategy: "xpath",
},
args1
);
});
When(/^user clicks on Female Parent GID sort descending$/, async function () {
await importPage.click({
selector: "//th[6]//span[@class='icon sort-icon is-small']",
locateStrategy: "xpath",
});
});
When(/^user clicks on Female Parent GID sort ascending$/, async function () {
await importPage.click({
selector: "//th[6]//span[@class='icon sort-icon is-small is-desc']",
locateStrategy: "xpath",
});
});
Then(
/^user can see "([^"]*)" Female Parent GID in first line$/,
async function (args1) {
await importPage.assert.containsText(
{
selector: `//tr[1]//td[@data-label='Female Parent GID']/div | //tr[1]//td[@data-label='Female Parent GID']/a`,
locateStrategy: "xpath",
},
args1
);
}
);
When(/^user clicks on Male Parent GID sort descending$/, async function () {
await importPage.click({
selector: "//th[7]//span[@class='icon sort-icon is-small']",
locateStrategy: "xpath",
});
});
When(/^user clicks on Male Parent GID sort ascending$/, async function () {
await importPage.click({
selector: "//th[7]//span[@class='icon sort-icon is-small is-desc']",
locateStrategy: "xpath",
});
});
Then(
/^user can see "([^"]*)" Male Parent GID in first line$/,
async function (args1) {
await importPage.assert.containsText(
{
selector: `//tr[1]//td[@data-label='Male Parent GID']`,
locateStrategy: "xpath",
},
args1
);
}
);
When(/^user clicks on Created Date sort descending$/, async function () {
await importPage.click({
selector: "//th[8]//span[@class='icon sort-icon is-small']",
locateStrategy: "xpath",
});
});
When(/^user clicks on Created Date sort ascending$/, async function () {
await importPage.click({
selector: "//th[8]//span[@class='icon sort-icon is-small is-desc']",
locateStrategy: "xpath",
});
});
Then(
/^user can see "([^"]*)" Created Date in first line$/,
async function (args1) {
await importPage.assert.containsText(
{
selector: `//tr[11]//td[@data-label='Created Date']`,
locateStrategy: "xpath",
},
args1
);
}
);
When(/^user clicks on Created By sort descending$/, async function () {
await importPage.click({
selector: "//th[9]//span[@class='icon sort-icon is-small']",
locateStrategy: "xpath",
});
});
When(/^user clicks on Created By sort ascending$/, async function () {
await importPage.click({
selector: "//th[9]//span[@class='icon sort-icon is-small is-desc']",
locateStrategy: "xpath",
});
});
Then(
/^user can see "([^"]*)" Created By in first line$/,
async function (args1) {
await importPage.assert.containsText(
{
selector: `//tr[1]//td[@data-label='Created By']`,
locateStrategy: "xpath",
},
args1
);
}
);
When(/^user uploads Ontology "([^"]*)" file$/, async function (args1) {
await importPage.setValue(
'input[type="file"]',
path.resolve(ontologyFolder, args1)
);
});
When(
/^user uploads Experiments & Observations "([^"]*)" file$/,
async function (args1) {
await importPage.setValue(
'input[type="file"]',
path.resolve(experimentsFolder, args1)
);
}
);
When(/^user uploads Sample Submission "([^"]*)" file$/, async function (args1) {
await importPage.setValue(
'input[type="file"]',
path.resolve(experimentsFolder, args1)
);
});
Then(/^user can see "([^"]*)" preview table$/, async function (args1) {
await importPage.assert.visible("#import-experiment div.b-table");
});
Then(/^user can not see "([^"]*)" preview table$/, async function (args1) {
await importPage.assert.not.elementPresent("#import-experiment div.b-table");
});
When(
/^user selects 'Show details' button of "([^"]*)" on Ontology Import page$/,
async function (args1) {
await importPage.click({
selector: `//td[@name='name' and normalize-space(.)='${args1}']/following-sibling::td/a[@data-testid='showDetails']`,
locateStrategy: "xpath",
});
}
);
Then(
/^user can not see trait editability status progress bar on Ontology Import page$/,
async function () {
await importPage.assert.not.elementPresent(
".is-full-length.trait-detail .progress-bar"
);
}
);
Then(
/^user can see "([^"]*)" in row "([^"]*)" as "([^"]*)" column on Experiment and Observation Import page$/,
async function (args1, args2, args3) {
await importPage.assert.containsText(
{
selector: `//tbody/tr[${args2}]//td[@data-label='${args3}']`,
locateStrategy: "xpath",
},
args1
);
}
);
Then(/^user can see "([^"]*)" in preview table$/, async function (args1) {
args1 = args1.replace("@TODAY", helpers.getToday());
await importPage.assert.visible(
{
selector: `//p[text()='${args1}']`,
locateStrategy: "xpath",
},
args1
);
});
Then(
/^user can see "([^"]*)" tab in Import Data page$/,
async function (args1) {
switch (args1) {
case "Genotypic Data":
await importPage.assert.visible("@genotypicDataTab");
break;
default:
console.log("Unable to find " + args1);
break;
}
}
);
When(
"user sets {string} in Project Name field of import page",
async function (s) {
await importPage.setValue("@projectNameField", s);
}
);
Then("user can see {string} on preview table", async function (s) {
await importPage.assert.visible({
selector: `//*[contains(text(), "${s}")]`,
locateStrategy: "xpath",
});
});
When("user uploads Genotype Samples {string} file", async function (file) {
await importPage.setValue(
'input[type="file"]',
path.resolve(experimentsFolder, args1)
);
});