GUI acceptance tests using environment deployed from packages.

Build: #2491 failed

Job: Oneprovider datasets failed

Stages & jobs

  1. Acceptance Test

user sees metadata data write protection toggles checked on ancestors list in directory dataset modal after marking its parent directories[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees metadata data write protection toggles checked on ancestors list in directory dataset modal after marking its parent directories[1oz 1op deployed]" in build 2,491 of Onedata Products - gui acceptance pkg - Chrome oneprovider datasets tests.
Description
user sees metadata data write protection toggles checked on ancestors list in directory dataset modal after marking its parent directories[1oz 1op deployed]
Test class
gui.scenarios.test_oneprovider_datasets
Method
test_user_sees_metadata_data_write_protection_toggles_checked_on_ancestors_list_in_directory_dataset_modal_after_marking_its_parent_directories[1oz_1op_deployed]
Duration
2 mins
Status
Failed (New Failure)

Error Log

AssertionError: data write protection toggle is unchecked in ancestor dataset menu
request = <FixtureRequest for <Function 'test_user_sees_metadata_data_write_protection_toggles_checked_on_ancestors_list_in_directory_dataset_modal_after_marking_its_parent_directories[1oz_1op_deployed]'>>

    @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-1055>:2: in assert_general_toggle_checked_for_ancestors
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'browser'
selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="34f6677d9f03d8806ed2b1a6c7b6e801")>}
modals = <class 'tests.gui.utils.common.modals.Modals'>, kind = 'data'

    @wt(parsers.parse('user of {browser_id} sees that {kind} write protection '
                      'toggle is checked in Ancestor Datasets row in Datasets '
                      'modal'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def assert_general_toggle_checked_for_ancestors(browser_id, selenium, modals,
                                                    kind):
        driver = selenium[browser_id]
        protection_kind = f'ancestor_{kind}_protection'
        toggle = getattr(modals(driver).datasets, protection_kind)
>       assert toggle.is_checked(), (f'{kind} write protection toggle is unchecked'
                                     f' in ancestor dataset menu')
E       AssertionError: data write protection toggle is unchecked in ancestor dataset menu

tests/gui/steps/oneprovider/dataset.py:28: AssertionError