GUI acceptance tests using environment deployed from packages.

Build: #2484 failed

Job: Public shares failed

Stages & jobs

  1. Acceptance Test

user sees that share name in public interface has changed after owner renamed it[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees that share name in public interface has changed after owner renamed it[1oz 1op deployed]" in build 2,484 of Onedata Products - gui acceptance pkg - Chrome public shares tests.
Description
user sees that share name in public interface has changed after owner renamed it[1oz 1op deployed]
Test class
gui.scenarios.test_public_shares
Method
test_user_sees_that_share_name_in_public_interface_has_changed_after_owner_renamed_it[1oz_1op_deployed]
Jira Issue
Duration
1 min
Status
Failed (New Failure)

Error Log

AssertionError: displayed share name is "space1" instead of expected "renamed_share_dir1"
request = <FixtureRequest for <Function 'test_user_sees_that_share_name_in_public_interface_has_changed_after_owner_renamed_it[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-869>:2: in rename_share_from_single_view
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/meta_steps/oneprovider/shares.py:164: in rename_share_from_single_view
    is_selected_share_named(selenium, browser_id, new_name, op_container)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-769>:2: in is_selected_share_named
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="f10682100e665bf72ce9c12412d8a708")>, 'space_owner_browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="49e570a0d49e2eae08b0069554d96ebf")>}
browser_id = 'space_owner_browser', share_name = 'renamed_share_dir1'
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>

    @wt(parsers.parse('user of {browser_id} sees that selected share '
                      'is named "{share_name}"'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def is_selected_share_named(selenium, browser_id, share_name, op_container):
        displayed_name = op_container(selenium[browser_id]).shares_page.name
>       assert displayed_name == share_name, (
            f'displayed share name is "{displayed_name}" instead of '
            f'expected "{share_name}"')
E       AssertionError: displayed share name is "space1" instead of expected "renamed_share_dir1"

tests/gui/steps/oneprovider/shares.py:73: AssertionError