GUI acceptance tests using environment deployed from packages.

Build: #2874 failed

Job: Atm workflows stores failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees list of datasets in result store after modifying input store data type to dataset and executing uploaded echo workflow[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user sees list of datasets in result store after modifying input store data type to dataset and executing uploaded echo workflow[1oz 1op openfaas]" in build 2,874 of Onedata Products - gui acceptance pkg - Atm workflows stores.
Description
user sees list of datasets in result store after modifying input store data type to dataset and executing uploaded echo workflow[1oz 1op openfaas]
Test class
gui.scenarios.test_atm_workflows_stores
Method
test_user_sees_list_of_datasets_in_result_store_after_modifying_input_store_data_type_to_dataset_and_executing_uploaded_echo_workflow[1oz_1op_openfaas]
Duration
3 mins
Status
Failed (New Failure)

Error Log

AssertionError: file1 is not in Store details modal for output store
request = <FixtureRequest for <Function 'test_user_sees_list_of_datasets_in_result_store_after_modifying_input_store_data_type_to_dataset_and_executing_uploaded_echo_workflow[1oz_1op_openfaas]'>>

    @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)
tests/gui/meta_steps/oneprovider/automation/audit_log.py:397: in assert_datasets_in_store_details
    compare_datasets_in_store_details_modal(item_list, modal, store_name)
<decorator-gen-1341>:2: in compare_datasets_in_store_details_modal
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

item_list = ['file1', 'file2']
modal = <tests.gui.utils.common.modals.workflows_modals.store_details.StoreDetails object at 0x7fdd764dd310>
store_name = 'output'

    @repeat_failed(timeout=WAIT_BACKEND)
    def compare_datasets_in_store_details_modal(item_list, modal, store_name):
        item_list = parse_seq(item_list)
        actual_items = [elem.name for elem in modal.store_content_list]
        for item in item_list:
            err_msg = f'{item} is not in Store details modal for {store_name} store'
>           assert item in actual_items, err_msg
E           AssertionError: file1 is not in Store details modal for output store

tests/gui/steps/oneprovider/automation/workflow_results_modals.py:161: AssertionError