GUI acceptance tests using environment deployed from packages.

Build: #290 failed

Job: Onepanel basic failed

support space: Test case result

The below summarizes the result of the test " support space" in build 290 of Onedata Products - gui acceptance pkg - Chrome onepanel basic tests.
Description
support space
Test class
gui.scenarios.test_onepanel_basic
Method
test_support_space
Duration
1 min
Status
Failed (New 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'>>

>   ???

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-180>: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 = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="19ab4abc7d6f14717f76e9e8fac42b6d")>, 'browser2': <selenium.webdriver.chrome.webdriver.WebDriver (session="97a2b33f761806a861445fcbdb39c7a1")>}
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': '5f3bc0f20298020aaf034e2aae70db5e9dcfc13061bfe56cc8bebcd65dfa9b43', 'hostname': 'de...2c96f579b2dc907', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.32.0.12', '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:183: AssertionError