GUI acceptance tests using environment deployed from packages.
Build: #184 failed
Job: Onezone spaces basic failed
user successfully leaves space: Test case result
The below summarizes the result of the test " user successfully leaves space" in build 184 of Onedata Products - gui acceptance pkg - Chrome onezone spaces basic tests.
- Description
- user successfully leaves space
- Test class
- gui.scenarios.test_onezone_spaces_basic
- Method
- test_user_successfully_leaves_space
- Duration
- 56 secs
- Status
- Failed (Existing Failure)
Error Log
AssertionError: space named "space1" found in DATA SPACE MANAGEMENT oz panel while it should not be found request = <FixtureRequest for <Function 'test_user_successfully_leaves_space'>> from tests.gui.steps.oneprovider.common import * > from tests.gui.steps.oneprovider.data_tab import * tests/gui/scenarios/test_onezone_spaces_basic.py:41: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario _execute_step_function(request, scenario, step, step_func) /usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function step_func(**kwargs) <decorator-gen-150>:2: in assert_there_is_no_item_named_in_oz_panel_list ??? tests/gui/utils/generic.py:110: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="de1b4376ca971cadb04e5812d1130e0f")>} browser_id = 'browser', item_type = 'space', item_name = 'space1' oz_panel = 'DATA SPACE MANAGEMENT' oz_page = <class 'tests.gui.utils.onezone.OZLoggedIn'> hosts = {'oneprovider-1': {'container_id': 'd6f8de6ae048d66c929e6e8587502ab1d45617203f76e0da44eddcc71e3883e7', 'hostname': 'de...718346ead140659', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.32.0.13', 'name': 'dev-onezone', ...}} @when(parsers.re(r'user of (?P<browser_id>.+?) sees that (?P<item_type>provider) ' r'named "(?P<item_name>.+?)" has disappeared from expanded ' r'"(?P<oz_panel>GO TO YOUR FILES)" Onezone panel')) @then(parsers.re(r'user of (?P<browser_id>.+?) sees that (?P<item_type>provider) ' r'named "(?P<item_name>.+?)" has disappeared from expanded ' r'"(?P<oz_panel>GO TO YOUR FILES)" Onezone panel')) @when(parsers.re(r'user of (?P<browser_id>.+?) sees that there is no ' r'(?P<item_type>provider) named "(?P<item_name>.+?)" ' r'in expanded "(?P<oz_panel>GO TO YOUR FILES)" Onezone panel')) @then(parsers.re(r'user of (?P<browser_id>.+?) sees that there is no ' r'(?P<item_type>provider) named "(?P<item_name>.+?)" ' r'in expanded "(?P<oz_panel>GO TO YOUR FILES)" Onezone panel')) @when(parsers.re(r'user of (?P<browser_id>.+?) sees that (?P<item_type>space) ' r'named "(?P<item_name>.+?)" has disappeared from expanded ' r'"(?P<oz_panel>DATA SPACE MANAGEMENT)" Onezone panel')) @then(parsers.re(r'user of (?P<browser_id>.+?) sees that (?P<item_type>space) ' r'named "(?P<item_name>.+?)" has disappeared from expanded ' r'"(?P<oz_panel>DATA SPACE MANAGEMENT)" Onezone panel')) @when(parsers.re(r'user of (?P<browser_id>.+?) sees that there is no ' r'(?P<item_type>space) named "(?P<item_name>.+?)" in expanded ' r'"(?P<oz_panel>DATA SPACE MANAGEMENT)" Onezone panel')) @then(parsers.re(r'user of (?P<browser_id>.+?) sees that there is no ' r'(?P<item_type>space) named "(?P<item_name>.+?)" in expanded ' r'"(?P<oz_panel>DATA SPACE MANAGEMENT)" Onezone panel')) @when(parsers.re(r'user of (?P<browser_id>.+?) sees that (?P<item_type>group) ' r'named "(?P<item_name>.+?)" has disappeared from expanded ' r'"(?P<oz_panel>GROUP MANAGEMENT)" Onezone panel')) @then(parsers.re(r'user of (?P<browser_id>.+?) sees that (?P<item_type>group) ' r'named "(?P<item_name>.+?)" has disappeared from expanded ' r'"(?P<oz_panel>GROUP MANAGEMENT)" Onezone panel')) @when(parsers.re(r'user of (?P<browser_id>.+?) sees that there is no ' r'(?P<item_type>group) named "(?P<item_name>.+?)" in expanded ' r'"(?P<oz_panel>GROUP MANAGEMENT)" Onezone panel')) @then(parsers.re(r'user of (?P<browser_id>.+?) sees that there is no ' r'(?P<item_type>group) named "(?P<item_name>.+?)" in expanded ' r'"(?P<oz_panel>GROUP MANAGEMENT)" Onezone panel')) @repeat_failed(timeout=WAIT_BACKEND) def assert_there_is_no_item_named_in_oz_panel_list(selenium, browser_id, item_type, item_name, oz_panel, oz_page, hosts): driver = selenium[browser_id] if item_type == 'provider': item_name = hosts[item_name]['name'] items = {item.name for item in getattr(oz_page(driver)[oz_panel], '{}s'.format(item_type))} assert item_name not in items, \ ('{} named "{}" found in {} oz panel while it should not be ' > 'found'.format(item_type, item_name, oz_panel)) E AssertionError: space named "space1" found in DATA SPACE MANAGEMENT oz panel while it should not be found tests/gui/steps/onezone/logged_in_common.py:184: AssertionError