GUI acceptance tests using environment deployed from packages.
Build: #638 failed
Job: Onepanel basic failed
user changes the name of a directory which is the mount point for storage[1oz 1op deployed]: Test case result
The below summarizes the result of the test " user changes the name of a directory which is the mount point for storage[1oz 1op deployed]" in build 638 of Onedata Products - gui acceptance pkg - Chrome onepanel basic tests.
- Description
- user changes the name of a directory which is the mount point for storage[1oz 1op deployed]
- Test class
- gui.scenarios.test_onepanel_basic
- Method
- test_user_changes_the_name_of_a_directory_which_is_the_mount_point_for_storage[1oz_1op_deployed]
- Duration
- 3 mins
- Status
- Failed (New Failure)
Error Log
AssertionError: no info notify with ".*[Ss]torage.*added.*" msg found request = <FixtureRequest for <Function 'test_user_changes_the_name_of_a_directory_which_is_the_mount_point_for_storage[1oz_1op_deployed]'>> from tests.gui.steps.oneprovider.shares import * > from tests.gui.steps.oneprovider.groups import * tests/gui/scenarios/test_onepanel_basic.py:53: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /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) tests/gui/meta_steps/onepanel/storages.py:100: in add_storage_in_op_panel_using_gui notify_visible_with_text(selenium, browser_id, notify_type, text_regexp) </usr/local/lib/python2.7/dist-packages/decorator.pyc:decorator-gen-18>:2: in notify_visible_with_text ??? tests/utils/utils.py:79: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="29e3d163e451c4588e1abb0405b5e26f")>, 'browser2': <selenium.webdriver.chrome.webdriver.WebDriver (session="8b724097125603a4ee44b30141a20d31")>} 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:34: AssertionError