GUI acceptance tests using environment deployed from packages.

Build: #2799 failed

Job: Atm workflow execution failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees finished state and output store content of executed inout workflow created using gui[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user sees finished state and output store content of executed inout workflow created using gui[1oz 1op openfaas]" in build 2,799 of Onedata Products - gui acceptance pkg - Atm workflow execution.
Description
user sees finished state and output store content of executed inout workflow created using gui[1oz 1op openfaas]
Test class
gui.scenarios.test_atm_workflows_execution
Method
test_user_sees_finished_state_and_output_store_content_of_executed_inout_workflow_created_using_gui[1oz_1op_openfaas]
Duration
3 mins
Status
Failed (New Failure)

Error Log

KeyError: 'fileId'
request = <FixtureRequest for <Function 'test_user_sees_finished_state_and_output_store_content_of_executed_inout_workflow_created_using_gui[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)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="d762458083c56df1cbf517ae06f6fa58")>}
browser_id = 'browser'
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>
store1 = 'input', store2 = 'output'
modals = <class 'tests.gui.utils.common.modals.Modals'>
clipboard = Clipboard(copy=<function clipboard.<locals>.copy at 0x7fe78c1bab80>, paste=<function clipboard.<locals>.paste at 0x7fe78c1bac10>)
displays = {'browser': ':1006.0'}, option = 'fileId'

    @wt(parsers.parse('user of {browser_id} sees that "{option}" in "{store2}" '
                      'store is the same as in "{store1}" store'))
    def compare_store_contents(selenium, browser_id, op_container, store1,
                               store2, modals, clipboard, displays, option):
        switch_to_iframe(selenium, browser_id)
        driver = selenium[browser_id]
    
        page = get_op_workflow_visualizer_page(op_container, driver)
    
        store1_value = json.loads(open_modal_and_get_store_content(
            browser_id, driver, page, modals, clipboard, displays, store1, 'list'))
        store2_value = json.loads(open_modal_and_get_store_content(
            browser_id, driver, page, modals, clipboard, displays, store2,
            'object'))
    
>       assert store1_value[option] == store2_value[option], (
            f'"{option}" in {store2} store:{store2_value[option]} \n is not '
            f'equal to "{option}" {store1} store:{store1_value[option]}')
E       KeyError: 'fileId'

tests/gui/meta_steps/oneprovider/automation/workflow_results.py:70: KeyError