Warning
This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy_test.selenium.test_collection_builders
from .framework import (
selenium_test,
SeleniumTestCase,
)
[docs]class TestCollectionBuilders(SeleniumTestCase):
ensure_registered = True
[docs] @selenium_test
def test_build_list_and_show_items(self):
self.perform_upload(self.get_filename("1.fasta"))
self._wait_for_and_select([1])
self._collection_dropdown("build list")
# this toggles the checkbox to not hide originals
self.collection_builder_hide_originals()
self.collection_builder_set_name("my cool list")
self.collection_builder_create()
self.home() # this shouldn't be necessary, and it isn't with a real browser.
self._wait_for_hid_visible(3)
[docs] @selenium_test
def test_build_paired_list_simple(self):
self.perform_upload(self.get_filename("1.tabular"))
self.perform_upload(self.get_filename("2.tabular"))
self._wait_for_and_select([1, 2])
self._collection_dropdown("build list of pairs")
self.collection_builder_clear_filters()
self.collection_builder_click_paired_item("forward", 0)
self.collection_builder_click_paired_item("reverse", 1)
self.collection_builder_set_name("my awesome paired list")
self.screenshot("collection_builder_paired_list")
self.collection_builder_create()
self._wait_for_hid_visible(3)
# switch to hidden filters to see the hidden datasets appear
self._show_hidden_content()
self._wait_for_hid_visible(1)
self._wait_for_hid_visible(2)
[docs] @selenium_test
def test_build_paired_list_show_original(self):
self.perform_upload(self.get_filename("1.tabular"))
self.perform_upload(self.get_filename("2.tabular"))
self._wait_for_and_select([1, 2])
self._collection_dropdown("build list of pairs")
collection_builders = self.components.collection_builders
collection_builders.clear_filters.wait_for_and_click()
forward_column = collection_builders.forward_datasets.wait_for_visible()
first_datset_forward = forward_column.find_elements(self.by.CSS_SELECTOR, "li")[0]
first_datset_forward.click()
reverse_column = collection_builders.reverse_datasets.wait_for_visible()
second_dataset_reverse = reverse_column.find_elements(self.by.CSS_SELECTOR, "li")[1]
second_dataset_reverse.click()
self.collection_builder_hide_originals()
self.collection_builder_set_name("my awesome paired list")
self.collection_builder_create()
self._wait_for_hid_visible(5)
self._wait_for_hid_visible(1)
self._wait_for_hid_visible(2)
self._show_hidden_content()
self._wait_for_hid_visible(3)
self._wait_for_hid_visible(4)
def _wait_for_hid_visible(self, hid, state="ok"):
# takes a little while for these things to upload and end up in the history
timeout = self.wait_length(self.wait_types.JOB_COMPLETION)
row_selector = self.content_item_by_attributes(hid=hid, state=state)
self.wait_for_visible(row_selector, timeout=timeout)
def _collection_dropdown(self, option_description):
return self.use_bootstrap_dropdown(option=option_description, menu="selected content menu")
def _wait_for_and_select(self, hids):
"""
Waits for uploads to pass through queued, running, ok. Not all the states are not guaranteed
depending on how fast the upload goes compared to the history polling updates, it might just
skip to the end for a really fast upload
"""
for hid in hids:
self.history_panel_wait_for_hid_ok(hid)
self.history_panel_multi_operations_show()
for hid in hids:
self.history_panel_muli_operation_select_hid(hid)
def _show_hidden_content(self):
"""Switches the hidden filter toggle on"""
self.sleep_for(self.wait_types.UX_RENDER)
filter_element = self.history_element("filter text input").wait_for_and_click()
filter_element.send_keys("visible:false")
self.sleep_for(self.wait_types.UX_RENDER)