-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSampleFinder.java
More file actions
454 lines (385 loc) · 14.8 KB
/
SampleFinder.java
File metadata and controls
454 lines (385 loc) · 14.8 KB
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
package org.labkey.test.components.ui.search;
import org.apache.commons.lang3.StringUtils;
import org.labkey.remoteapi.collections.CaseInsensitiveHashMap;
import org.labkey.test.BootstrapLocators;
import org.labkey.test.Locator;
import org.labkey.test.components.Component;
import org.labkey.test.components.WebDriverComponent;
import org.labkey.test.components.html.BootstrapMenu;
import org.labkey.test.components.react.MultiMenu;
import org.labkey.test.components.ui.grids.TabbedGridPanel;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
/**
* Wraps 'labkey-ui-component' defined in <code>internal/components/search/SampleFinderSection.tsx</code>
*/
public class SampleFinder extends WebDriverComponent<SampleFinder.ElementCache>
{
public static final String ALL_SAMPLE_TYPES = "All Sample Types";
private final WebElement _el;
private final WebDriver _driver;
protected SampleFinder(WebElement el, WebDriver driver)
{
_el = el;
_driver = driver;
}
public SampleFinder(WebDriver driver)
{
this(Locator.byClass("g-section")
.withDescendant(Locator.byClass("filter-cards"))
.waitForElement(driver, 5_000), driver);
}
@Override
public WebElement getComponentElement()
{
return _el;
}
@Override
public WebDriver getDriver()
{
return _driver;
}
/**
* Waits for the initial state (empty filter card panel) or for the search results grid to appear
*/
@Override
public void waitForReady()
{
loadingWait().withMessage("Sample finder loading").until(wd -> !BootstrapLocators.loadingSpinner.existsIn(this) &&
(isEmptySearch() || elementCache().resultsGrid.getComponentElement().isDisplayed()));
}
/**
* Open the entity filter dialog for the specified filter type.
*
* @param filterKind "Sample", "Source" or "Parent" or "Assay" in SM. "Registry Parent" or "Sample Parent" or "Assay" in Biologics
* @return component wrapper for the EntityFieldFilterModal
*/
public EntityFieldFilterModal clickAddSearchCard(String filterKind)
{
elementCache().findFilterKindButton(filterKind).click();
return new EntityFieldFilterModal(getDriver(), this::doAndWaitForUpdate);
}
/**
* returns the list of search/filter buttons contained in the header section
*/
public List<WebElement> getFilterButtons()
{
return elementCache().getFilterKindButtons();
}
/**
* Get the tabbed query grid panel containing the current search results.
* Throws {@link NoSuchElementException} if there are no search criteria currently defined
*/
public TabbedGridPanel getResultsGrid()
{
if (isEmptySearch())
{
throw new NoSuchElementException("No search criteria are currently set");
}
return elementCache().resultsGrid;
}
/**
* remove the search card for the specified entity
* @param queryName name of the entity (Sample Type, Source Type, etc.) to be removed
*/
public void removeSearchCard(String queryName)
{
elementCache().findFilterCard(queryName).clickRemove();
}
public EntityFieldFilterModal editSearchCard()
{
return elementCache().findFilterCards().getFirst().clickEdit();
}
/**
* Reset the sample finder to its initial state, with no search criteria
*/
public void removeAllSearchCards()
{
List<WebElement> removeButtons = Locator.tagWithAttribute("i", "title", "Remove filter")
.findElements(elementCache().filterCardsSection);
Collections.reverse(removeButtons);
// Don't wait for search results to update after each removed card
for (WebElement button : removeButtons)
{
button.click();
getWrapper().shortWait().until(ExpectedConditions.stalenessOf(button));
}
getWrapper().shortWait().withMessage("Clearing all search cards").until(wd -> isEmptySearch());
clearElementCache();
}
/**
* Get components wrapping the filter cards currently present
* @return All current filter cards
*/
public List<FilterCard> getSearchCards()
{
return elementCache().findFilterCards();
}
public SavedSearchesMenu getSaveSearchMenu()
{
return new SavedSearchesMenu(elementCache().savedSearchesContainer, getDriver(), elementCache().savedSearchesButton);
}
public MultiMenu getSaveSearchDropdownBtn()
{
return elementCache().saveDropdown;
}
/**
* Clicks the 'Save Search' button next to the saved searches menu
* This button will only be present if a search has been done
*/
public SaveSampleFinderViewModal clickSaveSearchBtn()
{
getWrapper().shortWait().until(ExpectedConditions.elementToBeClickable(elementCache().saveSearchButton));
elementCache().saveSearchButton.click();
return new SaveSampleFinderViewModal(getDriver());
}
/**
* Waiter that will wait for the search results to load. This is a hook for perf tests to support longer waits.
* @return WebDriverWait to be used by {@link #waitForReady()}
*/
protected WebDriverWait loadingWait()
{
return getWrapper().shortWait();
}
public boolean isEmptySearch()
{
return Locator.css(".filter-cards.empty").isDisplayed(this);
}
private void doAndWaitForUpdate(Runnable func)
{
WebElement resultsGridEl = elementCache().resultsGrid.getComponentElement();
if (resultsGridEl.isDisplayed())
{
func.run();
getWrapper().shortWait().until(ExpectedConditions.stalenessOf(resultsGridEl));
}
else
{
func.run();
}
clearElementCache();
elementCache(); // waitForReady
}
@Override
protected ElementCache newElementCache()
{
return new ElementCache();
}
protected class ElementCache extends Component<?>.ElementCache
{
final WebElement panelHeading = Locator.byClass("panel-heading").findWhenNeeded(this);
WebElement findFilterKindButton(String filterNoun)
{
return BootstrapLocators.button(filterNoun + " Properties")
.withChild(Locator.byClass("container--addition-icon")).findElement(panelHeading);
}
WebElement saveSearchButton = BootstrapLocators.button("Save Search").findWhenNeeded(panelHeading);
List<WebElement> getFilterKindButtons()
{
return Locator.tagWithClass("button", "btn-default")
.withChild(Locator.tagWithClass("i", "container--addition-icon"))
.findElements(panelHeading);
}
final WebElement filterCardsSection = Locator.byClass("filter-cards").findWhenNeeded(this);
List<FilterCard> findFilterCards()
{
if (filterCardsSection.getAttribute("class").contains("empty"))
{
return Collections.emptyList();
}
return Locator.byClass("filter-cards__card").findElements(filterCardsSection)
.stream().map(FilterCard::new).collect(Collectors.toList());
}
FilterCard findFilterCard(String queryName)
{
return new FilterCard(Locator.byClass("filter-cards__card").withDescendant(
Locator.byClass("primary-text").withText(queryName)).findElement(filterCardsSection));
}
final TabbedGridPanel resultsGrid = new TabbedGridPanel.TabbedGridPanelFinder(getDriver()).findWhenNeeded(this);
final MultiMenu saveDropdown = new MultiMenu.MultiMenuFinder(getDriver()).withClass("split-button-dropdown").findWhenNeeded(this);
final Locator.XPathLocator savedSearchesButtonLoc = Locator.byClass("search-selector");
final WebElement savedSearchesButton = savedSearchesButtonLoc.findWhenNeeded(this);
final WebElement savedSearchesContainer = Locator.byClass("dropdown").withChild(savedSearchesButtonLoc).refindWhenNeeded(this);
}
public static class SavedSearchesMenu extends BootstrapMenu
{
final static String SAVE_MENU_OPTION = "Save as custom search";
final static String MANGE_MENU_OPTION = "Manage saved searches";
private final WebElement _dropdownEl;
SavedSearchesMenu(WebElement componentElement, WebDriver driver, WebElement dropdownEl)
{
super(driver, componentElement);
_dropdownEl = dropdownEl;
}
public String getTitle()
{
return _dropdownEl.getText();
}
public SaveSampleFinderViewModal clickSaveAs()
{
clickSubMenu(false, SAVE_MENU_OPTION);
return new SaveSampleFinderViewModal(getDriver());
}
public ManageSampleFinderViewsModal clickManage()
{
clickSubMenu(false, MANGE_MENU_OPTION);
return new ManageSampleFinderViewsModal(getDriver());
}
public boolean isDisabled()
{
return !_dropdownEl.isEnabled();
}
public boolean isSaveEnabled()
{
WebElement disabledEl = findDisabledMenuItemOrNull(SAVE_MENU_OPTION);
if (disabledEl == null)
return findVisibleMenuItemOrNull(SAVE_MENU_OPTION) != null;
return false;
}
public boolean isManageEnabled()
{
WebElement disabledEl = findDisabledMenuItemOrNull(MANGE_MENU_OPTION);
if (disabledEl == null)
return findVisibleMenuItemOrNull(MANGE_MENU_OPTION) != null;
return false;
}
public String getSelectedView()
{
List<WebElement> views = getViewsWithCls("active");
if (!views.isEmpty())
return views.get(0).getText();
return null;
}
public String getLastSearchedView()
{
List<WebElement> views = getViewsWithCls("session-finder-view");
if (!views.isEmpty())
return views.get(0).getText();
return null;
}
public List<String> getSavedViews()
{
List<String> viewNames = new ArrayList<>();
getViewsWithCls("saved-finder-view").forEach(el -> viewNames.add(el.getText()));
collapse();
return viewNames;
}
public List<String> getBuiltInViews()
{
List<String> viewNames = new ArrayList<>();
getViewsWithCls("built-in-finder-view").forEach(el -> viewNames.add(el.getText()));
collapse();
return viewNames;
}
public List<WebElement> getViewsWithCls(String cls)
{
expand();
List<WebElement> elements = findVisibleMenuItemsWithClass(cls);
return elements;
}
public void clickView(String viewName)
{
clickSubMenu(false, viewName);
clearElementCache();
elementCache(); // waitForReady
}
public void clickLastSearchedView()
{
clickView(getLastSearchedView());
}
}
/**
* Represents a single filter card. Don't expose outside this class because its lifecycle is confusing
*/
public class FilterCard extends Component<Component<?>.ElementCache>
{
private final WebElement cardEl;
private final WebElement name = Locator.byClass("primary-text").findWhenNeeded(this);
private final WebElement editButton =
Locator.tagWithAttribute("i", "title", "Edit filter").findWhenNeeded(this);
private final WebElement removeButton =
Locator.tagWithAttribute("i", "title", "Remove filter").findWhenNeeded(this);
private FilterCard(WebElement el)
{
this.cardEl = el;
}
@Override
public WebElement getComponentElement()
{
return cardEl;
}
EntityFieldFilterModal clickEdit()
{
editButton.click();
return new EntityFieldFilterModal(getDriver(), SampleFinder.this::doAndWaitForUpdate);
}
void clickRemove()
{
doAndWaitForUpdate(() -> {
int initialCount = SampleFinder.this.elementCache().findFilterCards().size();
removeButton.click();
// This card's element isn't removed from the DOM if it isn't the farthest right card
getWrapper().shortWait().until(wd ->
SampleFinder.this.elementCache().findFilterCards().size() == initialCount - 1);
});
}
public String getParentName()
{
return name.getText();
}
public String getCardContent()
{
WebElement content = Locator.byClass("filter-card__card-content").findElement(this);
return content.getText();
}
public FilterCardValues getFilterValues()
{
Map<String, WebElement> filters = new HashMap<>();
List<WebElement> rows = Locator.byClass("filter-display__row").findElements(this);
for (WebElement row : rows)
{
WebElement labelEl = Locator.byClass("filter-display__field-label").findElement(row);
WebElement valueEl = Locator.byClass("filter-display__filter-value").findElement(row);
String label = StringUtils.strip(labelEl.getText(), ":");
filters.put(label, valueEl);
}
return new FilterCardValues(filters);
}
}
public static class FilterCardValues
{
private final Map<String, WebElement> _filters = new CaseInsensitiveHashMap<>();
private final Map<String, WebElement> _negatedFilters = new CaseInsensitiveHashMap<>();
public FilterCardValues(Map<String, WebElement> allFilters)
{
for (Map.Entry<String, WebElement> entry : allFilters.entrySet())
{
if (entry.getValue().getAttribute("class").contains("negate"))
{
_negatedFilters.put(entry.getKey(), entry.getValue());
}
else
{
_filters.put(entry.getKey(), entry.getValue());
}
}
}
public Map<String, WebElement> getFilters()
{
return _filters;
}
public Map<String, WebElement> getNegatedFilters()
{
return _negatedFilters;
}
}
}