GUI acceptance tests using environment deployed from packages.

Build: #2850 failed

Job: Shares handle service failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user views files from public interface of share shared from another user on mock handle service[1oz 1op handle proxy mock]: Test case result

The below summarizes the result of the test " user views files from public interface of share shared from another user on mock handle service[1oz 1op handle proxy mock]" in build 2,850 of Onedata Products - gui acceptance pkg - Shares handle service.
Description
user views files from public interface of share shared from another user on mock handle service[1oz 1op handle proxy mock]
Test class
gui.scenarios.test_shares_handle_service
Method
test_user_views_files_from_public_interface_of_share_shared_from_another_user_on_mock_handle_service[1oz_1op_handle_proxy_mock]
Duration
3 mins
Status
Failed (New Failure)

Error Log

Exception: My test data was not found in "Dublin Core Metadata"
request = <FixtureRequest for <Function 'test_user_views_files_from_public_interface_of_share_shared_from_another_user_on_mock_handle_service[1oz_1op_handle_proxy_mock]'>>

    @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)
<decorator-gen-885>:2: in assert_data_in_dublin_core_metadata
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/public_shares.py:198: in assert_data_in_dublin_core_metadata
    check_item_presence_in_dublin_core_metadata(item, dublin_core)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

item = 'My test data', data = []

    def check_item_presence_in_dublin_core_metadata(item, data):
        for info in data:
            if info.text == item:
                break
        else:
>           raise Exception(f'{item} was not found in "Dublin Core Metadata"')
E           Exception: My test data was not found in "Dublin Core Metadata"

tests/gui/steps/oneprovider/public_shares.py:185: Exception