Build: #4 failed

Job: Atm workflows stores failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees expected results in result store after modifying input store type to storage type and executing uploaded counting checksums workflow[1oz 1op openfaas-list-[file1, dir1, dir1/file2, dir1/dir2/file3]-4-[file1, dir1, dir1/file2, dir1/dir2/file3]]: Test case result

The below summarizes the result of the test " user sees expected results in result store after modifying input store type to storage type and executing uploaded counting checksums workflow[1oz 1op openfaas-list-[file1, dir1, dir1/file2, dir1/dir2/file3]-4-[file1, dir1, dir1/file2, dir1/dir2/file3]]" in build 4 of Onedata Products - gui acceptance pkg - feature-VFS-12098-test-couchbase-upgrade-to-6.x-from-4.1 - Atm workflows stores.
Description
user sees expected results in result store after modifying input store type to storage type and executing uploaded counting checksums workflow[1oz 1op openfaas-list-[file1, dir1, dir1/file2, dir1/dir2/file3]-4-[file1, dir1, dir1/file2, dir1/dir2/file3]]
Test class
gui.scenarios.test_atm_workflows_stores
Method
test_user_sees_expected_results_in_result_store_after_modifying_input_store_type_to_storage_type_and_executing_uploaded_counting_checksums_workflow[1oz_1op_openfaas-List-[file1, dir1, dir1/file2, dir1/dir2/file3]-4-[file1, dir1, dir1/file2, dir1/dir2/file3]]
Duration
6 mins
Status
Failed (New Failure)

Error Log

RuntimeError: Click and enter has not entered the directory
fixturefunc = <function assert_file_id_in_store_details at 0x7f3fb14322a0>
request = <FixtureRequest for <Function test_user_sees_expected_results_in_result_store_after_modifying_input_store_type_to_stor...rkflow[1oz_1op_openfaas-List-[file1, dir1, dir1/file2, dir1/dir2/file3]-4-[file1, dir1, dir1/file2, dir1/dir2/file3]]>>
kwargs = {'browser_id': 'browser', 'clipboard': Clipboard(copy=<function clipboard.<locals>.copy at 0x7f3fb132f9c0>, paste=<fun...t 0x7f3fb132f600>), 'displays': {'browser': ':1006.0'}, 'file_list': '[file1, dir1, dir1/file2, dir1/dir2/file3]', ...}

    def call_fixture_func(
        fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
    ) -> FixtureValue:
        if is_generator(fixturefunc):
            fixturefunc = cast(
                Callable[..., Generator[FixtureValue, None, None]], fixturefunc
            )
            generator = fixturefunc(**kwargs)
            try:
                fixture_result = next(generator)
            except StopIteration:
                raise ValueError(f"{request.fixturename} did not yield a value") from None
            finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
            request.addfinalizer(finalizer)
        else:
            fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
>           fixture_result = fixturefunc(**kwargs)

/usr/local/lib/python3.12/dist-packages/_pytest/fixtures.py:913: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/automation/audit_log.py:251: in assert_file_id_in_store_details
    file_ids = [get_file_id_from_details_modal(selenium, browser_id, oz_page,
tests/gui/meta_steps/oneprovider/data.py:620: in get_file_id_from_details_modal
    go_to_path_without_last_elem(selenium, browser_id, tmp_memory,
tests/gui/meta_steps/oneprovider/data.py:452: in go_to_path_without_last_elem
    click_and_press_enter_on_item_in_browser(selenium, browser_id,
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/browser.py:37: in click_and_press_enter_on_item_in_browser
    click_and_enter_with_check(driver, op_container, browser, which_browser,
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

driver = <tests.conftest.ChromeWithAllLogs (session="793cd7a01c60bacdd76a4e252927431c")>
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>
browser = <tests.gui.utils.oneprovider.file_browser._FileBrowser object at 0x7f3faef5d2e0>
which_browser = 'file_browser', item_name = 'dir1'

    @repeat_failed(timeout=WAIT_BACKEND)
    def click_and_enter_with_check(driver, op_container, browser, which_browser,
                                   item_name):
        # this function does not check correctly if parent and children directory
        # have the same name
        browser.data[item_name].click_and_enter()
        if item_name.startswith('dir'):
            for _ in range(5):
                breadcrumbs = check_if_breadcrumbs_on_share_page(
                    driver, op_container, which_browser)
                if breadcrumbs.split('/')[-1] == item_name:
                    return
                else:
                    time.sleep(1)
>           raise RuntimeError(f'Click and enter has not entered the directory')
E           RuntimeError: Click and enter has not entered the directory

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