GUI acceptance tests using environment deployed from packages.

Build: #2897 failed

Job: Atm BagIt failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees desirable exception in task audit log after executing bagituploader with invalid archive input archive[1oz 1op openfaas-"unsupported url.zip"]: Test case result

The below summarizes the result of the test " user sees desirable exception in task audit log after executing bagituploader with invalid archive input archive[1oz 1op openfaas-"unsupported url.zip"]" in build 2,897 of Onedata Products - gui acceptance pkg - Atm BagIt.
Description
user sees desirable exception in task audit log after executing bagituploader with invalid archive input archive[1oz 1op openfaas-"unsupported url.zip"]
Test class
gui.scenarios.test_automation_bagit
Method
test_user_sees_desirable_exception_in_task_audit_log_after_executing_bagituploader_with_invalid_archive__input_archive[1oz_1op_openfaas-"unsupported_url.zip"]
Duration
1 min
Status
Failed (Existing Failure)

Error Log

Exception: Files: ['dir1'] as initial value for workflow was not selected
request = <FixtureRequest for <Function 'test_user_sees_desirable_exception_in_task_audit_log_after_executing_bagituploader_with_invalid_archive__input_archive[1oz_1op_openfaas-"unsupported_url.zip"]'>>

    @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/run_workflow.py:81: in choose_file_as_initial_workflow_value_for_store
    select_initial_items_for_workflow_in_modal(file_list, modals, driver,
tests/gui/meta_steps/oneprovider/automation/run_workflow.py:66: in select_initial_items_for_workflow_in_modal
    check_if_select_files_modal_disappeared(modals, driver, files)
<decorator-gen-1237>:2: in check_if_select_files_modal_disappeared
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

modals = <class 'tests.gui.utils.common.modals.Modals'>
driver = <selenium.webdriver.chrome.webdriver.WebDriver (session="201fa1f2ecda1ff906b8bb74eb873f43")>
files = ['dir1']

    @repeat_failed(timeout=WAIT_FRONTEND)
    def check_if_select_files_modal_disappeared(modals, driver, files):
        try:
            modals(driver).select_files
>           raise Exception(f'Files: {files} as initial value for workflow was '
                            f'not selected')
E                           Exception: Files: ['dir1'] as initial value for workflow was not selected

tests/gui/steps/oneprovider/automation/initial_values.py:33: Exception