GUI acceptance tests using environment deployed from packages.

Build: #2722 failed

Job: Atm workflows status failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

user sees that lane task and workflow statuses are preparing pending and active in turn during execution of uploaded workflowwithsleeponelane workflow[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user sees that lane task and workflow statuses are preparing pending and active in turn during execution of uploaded workflowwithsleeponelane workflow[1oz 1op openfaas]" in build 2,722 of Onedata Products - gui acceptance pkg - Atm workflows status.
Description
user sees that lane task and workflow statuses are preparing pending and active in turn during execution of uploaded workflowwithsleeponelane workflow[1oz 1op openfaas]
Test class
gui.scenarios.test_atm_workflows_status
Method
test_user_sees_that_lane_task_and_workflow_statuses_are_preparing_pending_and_active_in_turn_during_execution_of_uploaded_workflowwithsleeponelane_workflow[1oz_1op_openfaas]
Duration
2 mins
Status
Failed (New Failure)

Error Log

AssertionError: Actual "Task in ParallelBox in WorkflowLane in WorkflowVisualiser in WorkflowExecutionPage in Oneprovider page" status: "Finished" does not match expected: "Pending"
request = <FixtureRequest for <Function 'test_user_sees_that_lane_task_and_workflow_statuses_are_preparing_pending_and_active_in_turn_during_execution_of_uploaded_workflowwithsleeponelane_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/workflow_results.py:172: in assert_status_of_task
    assert_task_status_in_parallel_box(selenium, browser_id, op_container,
<decorator-gen-1321>:2: in assert_task_status_in_parallel_box
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/automation/automation_statuses.py:55: in assert_task_status_in_parallel_box
    assert_status(task, actual_status, expected_status)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

name = <tests.gui.utils.oneprovider.automation.Task object at 0x7f9ebc97eb50>
actual_status = 'Finished', expected_status = 'Pending'

    def assert_status(name, actual_status, expected_status):
        err_msg = (f'Actual "{name}" status: "{actual_status}" does not '
                   f'match expected: "{expected_status}"')
>       assert actual_status.lower() == expected_status.lower(), err_msg
E       AssertionError: Actual "Task in ParallelBox in WorkflowLane in WorkflowVisualiser in WorkflowExecutionPage in Oneprovider page" status: "Finished" does not match expected: "Pending"

tests/gui/steps/oneprovider/automation/automation_statuses.py:119: AssertionError