Build: #19 failed
Job: Onepanel basic failed
user uploads files on freshly supported space on newly created storage: Test case result
The below summarizes the result of the test " user uploads files on freshly supported space on newly created storage" in build 19 of Onedata Products - gui acceptance pkg - feature-VFS-4716-introduction-to-acceptance-testing - Chrome onepanel basic tests.
- Description
- user uploads files on freshly supported space on newly created storage
- Test class
- gui.scenarios.test_onepanel_basic
- Method
- test_user_uploads_files_on_freshly_supported_space_on_newly_created_storage
- Duration
- 4 mins
- Status
- Failed (Existing Failure)
Error Log
AssertionError: no info notify with ".*[Ss]torage.*added.*" msg found request = <FixtureRequest for <Function 'test_user_uploads_files_on_freshly_supported_space_on_newly_created_storage'>> from tests.gui.steps.onezone.space import * > from tests.gui.steps.onezone.multi_browser_space import * 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-18>:2: in notify_visible_with_text ??? tests/gui/utils/generic.py:110: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="f393531149eefea9609e80f61b9d0a3d")>, 'browser2': <selenium.webdriver.chrome.webdriver.WebDriver (session="7b3fa78b2445a540de9350ad0a537b3f")>} browser_id = 'browser1', notify_type = 'info' text_regexp = '.*[Ss]torage.*added.*' @wt(parsers.parse('user of {browser_id} sees an {notify_type} notify ' 'with text matching to: {text_regexp}')) @repeat_failed(timeout=2 * WAIT_BACKEND) def notify_visible_with_text(selenium, browser_id, notify_type, text_regexp): driver = selenium[browser_id] css_sel = '.ember-notify-show[class*={}] .message'.format(notify_type) regexp = re.compile(text_regexp) with suppress(NoSuchElementException, StaleElementReferenceException): assert any(regexp.match(notify.text) for notify in driver.find_elements_by_css_selector(css_sel)), \ 'no {} notify with "{}" msg found'.format(notify_type, > text_regexp) E AssertionError: no info notify with ".*[Ss]torage.*added.*" msg found tests/gui/steps/common/notifies.py:33: AssertionError