GUI acceptance tests using environment deployed from packages.

Build: #2736 failed

Job: Atm workflow execution failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

user checks pods activity events after checksumcountingdifferentlambdas workflow execution[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user checks pods activity events after checksumcountingdifferentlambdas workflow execution[1oz 1op openfaas]" in build 2,736 of Onedata Products - gui acceptance pkg - Atm workflow execution.
Description
user checks pods activity events after checksumcountingdifferentlambdas workflow execution[1oz 1op openfaas]
Test class
gui.scenarios.test_atm_workflows_execution
Method
test_user_checks_pods_activity_events_after_checksumcountingdifferentlambdas_workflow_execution[1oz_1op_openfaas]
Jira Issue
Duration
3 mins
Status
Failed (New Failure)

Error Log

AssertionError: message: Stopping container result-streamer has not been found
request = <FixtureRequest for <Function 'test_user_checks_pods_activity_events_after_checksumcountingdifferentlambdas_workflow_execution[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/pods_activity.py:162: in checks_events_for_task
    assert_events_in_pods_monitor(selenium, browser_id, modals, events,
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-1401>:2: in assert_events_in_pods_monitor
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="9d5921739b896d64916404eac94cce94")>}
browser_id = 'browser', modals = <class 'tests.gui.utils.common.modals.Modals'>
events = '- \'Created container result-streamer\'\n- \'Started container result-streamer\'\n- \'Pod initialized, containers rea...e-checksum-rest" + "Started container"\'\n- \'message that contains: "calculate-checksum-rest" + "Created container"\''
option = 'message'

    @wt(parsers.re('user of (?P<browser_id>.*) sees events in modal '
                   '"Function pods activity" with following '
                   '(?P<option>reason|message)s:\n(?P<events>(.|\s)*)'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def assert_events_in_pods_monitor(selenium, browser_id, modals, events,
                                      option):
    
        driver = selenium[browser_id]
        switch_to_iframe(selenium, browser_id)
        modal = modals(driver).function_pods_activity
        events_list = [event for event in yaml.load(events) if '+' not in event]
        gathered_list = gather_events_list(modal, driver, option)
    
        for event in events_list:
>           assert event in gathered_list, f'{option}: {event} has not been found'
E           AssertionError: message: Stopping container result-streamer has not been found

tests/gui/meta_steps/oneprovider/automation/pods_activity.py:102: AssertionError