GUI acceptance tests using environment deployed from packages.

Build: #2495 was successful

Job: Atm workflow execution was successful

Stages & jobs

  1. Acceptance Test

user sees status status in lane2 after stopping execution of uploaded temporaryworkflowwithsleep workflow[1oz 1op openfaas-cancelled-cancel]: Test case result

The below summarizes the result of the test " user sees status status in lane2 after stopping execution of uploaded temporaryworkflowwithsleep workflow[1oz 1op openfaas-cancelled-cancel]" in build 2,495 of Onedata Products - gui acceptance pkg - Chrome oneprovider atm workflow execution tests.
Description
user sees status status in lane2 after stopping execution of uploaded temporaryworkflowwithsleep workflow[1oz 1op openfaas-cancelled-cancel]
Test class
gui.scenarios.test_oneprovider_atm_workflows_execution
Method
test_user_sees_status_status_in_lane2_after_stopping_execution_of_uploaded_temporaryworkflowwithsleep_workflow[1oz_1op_openfaas-Cancelled-Cancel]
Jira Issue
Duration
5 mins
Status
Failed (New Failure)

Error Log

AttributeError: 'NoneType' object has no attribute 'lower'
request = <FixtureRequest for <Function 'test_user_sees_status_status_in_lane2_after_stopping_execution_of_uploaded_temporaryworkflowwithsleep_workflow[1oz_1op_openfaas-Cancelled-Cancel]'>>

    @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/steps/oneprovider/automation.py:185: in assert_status_of_workflow_if_needed_wait_for_stopping_status
    assert_status(workflow, actual_status, expected_status)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

name = 'temporary-workflow-with-sleep', actual_status = None
expected_status = 'Stopping'

    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       AttributeError: 'NoneType' object has no attribute 'lower'

tests/gui/steps/oneprovider/automation.py:191: AttributeError