GUI acceptance tests using environment deployed from packages.

Build: #2367 was successful

Job: Oneprovider archives incremental and nested was successful

Stages & jobs

  1. Acceptance Test

user sees that dataset has more archives than its parent after creating nested archive on child dataset[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees that dataset has more archives than its parent after creating nested archive on child dataset[1oz 1op deployed]" in build 2,367 of Onedata Products - gui acceptance pkg - Chrome oneprovider archives incremental and nested.
Description
user sees that dataset has more archives than its parent after creating nested archive on child dataset[1oz 1op deployed]
Test class
gui.scenarios.test_oneprovider_archives_incremental_and_nested
Method
test_user_sees_that_dataset_has_more_archives_than_its_parent_after_creating_nested_archive_on_child_dataset[1oz_1op_deployed]
Jira Issue
Duration
4 mins
Status
Failed (Existing Failure)

Error Log

RuntimeError: waited too long
request = <FixtureRequest for <Function 'test_user_sees_that_dataset_has_more_archives_than_its_parent_after_creating_nested_archive_on_child_dataset[1oz_1op_deployed]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-615>:2: in click_and_press_enter_on_item_in_browser
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="f2b5257096d79bac4a6f4b51cab847cd")>}
browser_id = 'browser', item_name = 'dir2'
tmp_memory = defaultdict(<class 'dict'>, {'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': ...ad213a30>, 'dataset_browser': <tests.gui.utils.oneprovider.dataset_browser._DatasetBrowser object at 0x7f1cad141f70>}})
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>
which_browser = 'dataset_browser'

    @wt(parsers.parse('user of {browser_id} clicks and presses enter on item named'
                      ' "{item_name}" in {which_browser}'))
    @repeat_failed(timeout=WAIT_BACKEND)
    def click_and_press_enter_on_item_in_browser(selenium, browser_id, item_name,
                                                 tmp_memory, op_container,
                                                 which_browser='file browser'):
        which_browser = transform(which_browser)
        browser = tmp_memory[browser_id][which_browser]
        driver = selenium[browser_id]
    
        # clicking on the background of browser to ensure correct
        # working of click_and enter
        browser.click_on_background()
    
        # checking if file is located in file browser
        start = time.time()
        while item_name not in browser.data:
            time.sleep(1)
            if time.time() > start + WAIT_BACKEND:
>               raise RuntimeError('waited too long')
E               RuntimeError: waited too long

tests/gui/steps/oneprovider/browser.py:35: RuntimeError