GUI acceptance tests using environment deployed from packages.
Build: #406 was successful
Job: Onepanel basic was successful
support space[1oz 1op not deployed]: Test case result
The below summarizes the result of the test " support space[1oz 1op not deployed]" in build 406 of Onedata Products - gui acceptance pkg - Chrome onepanel basic tests.
- Description
- support space[1oz 1op not deployed]
- Test class
- gui.scenarios.test_onepanel_basic
- Method
- test_support_space[1oz_1op_not_deployed]
- Duration
- 1 min
- Status
- Failed (Existing Failure)
Error Log
AssertionError: space named "helloworld" found in DATA SPACE MANAGEMENT oz panel while it should not be found request = <FixtureRequest for <Function 'test_support_space[1oz_1op_not_deployed]'>> > ??? tests/gui/scenarios/test_onepanel_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-182>:2: in assert_there_is_no_item_named_in_oz_panel_list ??? tests/utils/utils.py:71: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="0080ce04985c6d0262a587a16f9db00f")>, 'browser2': <selenium.webdriver.chrome.webdriver.WebDriver (session="64136692a97c75c917720ec38b49405f")>} browser_id = 'browser2', item_type = 'space', item_name = 'helloworld' oz_panel = 'DATA SPACE MANAGEMENT' oz_page = <class 'tests.gui.utils.onezone.OZLoggedIn'> hosts = {'oneprovider-1': {'container-id': 'afd491b8de9056411846e332dd393f0c1b8decc30fa4967fddf9fa93fc334d04', 'hostname': 'de...f99a9a55e2ef4a', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.10', '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 "helloworld" found in DATA SPACE MANAGEMENT oz panel while it should not be found tests/gui/steps/onezone/logged_in_common.py:184: AssertionError