[oVirt Jenkins] ovirt-system-tests_basic-suite-master_nightly - Build # 1273 - Failure!

Project: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/ Build: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/... Build Number: 1273 Build Status: Failure Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #1273 [Galit Rosenthal] Update ost-repo, repo was changed ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: basic-suite-master.test-scenarios.test_100_basic_ui_sanity.test_clusters[firefox] Error Message: selenium.common.exceptions.TimeoutException: Message: Clusters menu is not displayed Stack Trace: ovirt_driver = <ost_utils.selenium.navigation.driver.Driver object at 0x7fa4d2410a20> def test_clusters(ovirt_driver): webadmin_menu = WebAdminLeftMenu(ovirt_driver)
cluster_list_view = webadmin_menu.open_cluster_list_view()
basic-suite-master/test-scenarios/test_100_basic_ui_sanity.py:301: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ost_utils/ost_utils/selenium/page_objects/WebAdminLeftMenu.py:69: in open_cluster_list_view self._open_compute_menu('Clusters', 'MenuView_clustersAnchor') ost_utils/ost_utils/selenium/page_objects/WebAdminLeftMenu.py:95: in _open_compute_menu self._open_menu('compute', menu_name, menu_id) ost_utils/ost_utils/selenium/page_objects/WebAdminLeftMenu.py:105: in _open_menu self.ovirt_driver.id_wait_and_click(menu_name + ' menu', menu_id) ost_utils/ost_utils/selenium/navigation/driver.py:231: in id_wait_and_click self.xpath_wait_and_click(message, '//*[@id="' + element_id + '"]', wait_long) ost_utils/ost_utils/selenium/navigation/driver.py:301: in xpath_wait_and_click wait_until(message + ' is not displayed', self.is_xpath_displayed, xpath) ost_utils/ost_utils/selenium/navigation/driver.py:306: in wait_until self._wait_until(message, assertions.SHORT_TIMEOUT, condition_method, *args) ost_utils/ost_utils/selenium/navigation/driver.py:312: in _wait_until WebDriverWait(self.driver, timeout).until(ConditionClass(condition_method, *args), message) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.support.wait.WebDriverWait (session="0a6d2c5b-25ac-4c5f-8d8d-3bde1f2c5820")> method = <ost_utils.selenium.navigation.driver.ConditionClass object at 0x7fa4d2473b00> message = 'Clusters menu is not displayed' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break
raise TimeoutException(message, screen, stacktrace)
E selenium.common.exceptions.TimeoutException: Message: Clusters menu is not displayed .tox/deps/lib/python3.6/site-packages/selenium/webdriver/support/wait.py:80: TimeoutException

Project: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/ Build: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/... Build Number: 1274 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #1273 [Galit Rosenthal] Update ost-repo, repo was changed Changes for Build #1274 [Lucia Jelinkova] UI: Change the navigation in the left menu [Ehud Yonasi] standard_pipelines: add virtio-win project. ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: basic-suite-master.test-scenarios.test_004_basic_sanity.test_live_incremental_backup_vm2 Error Message: AssertionError: False != True after 600 seconds Stack Trace: engine_api = <ovirtsdk4.Connection object at 0x7f471e2f5780> get_vm_service_for_vm = <function get_vm_service_for_vm.<locals>.service_for at 0x7f471e284268> @order_by(_TEST_LIST) def test_live_incremental_backup_vm2(engine_api, get_vm_service_for_vm): _verify_vm_state(engine_api.system_service(), VM2_NAME, types.VmStatus.UP) vm2_backups_service = get_vm_service_for_vm(VM2_NAME).backups_service() backup.perform_incremental_vm_backup(
engine_api, vm2_backups_service, DISK2_NAME, "live_vm_backup")
basic-suite-master/test-scenarios/test_004_basic_sanity.py:1103: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ost_utils/ost_utils/storage_utils/backup.py:75: in perform_incremental_vm_backup correlation_id="incremental_" + correlation_id) ost_utils/ost_utils/storage_utils/backup.py:40: in perform_vm_backup allowed_exceptions=[sdk4.NotFoundError] ost_utils/ost_utils/assertions.py:96: in assert_true_within_long assert_equals_within_long(func, True, allowed_exceptions) ost_utils/ost_utils/assertions.py:81: in assert_equals_within_long func, value, LONG_TIMEOUT, allowed_exceptions=allowed_exceptions _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ func = <function perform_vm_backup.<locals>.<lambda> at 0x7f471e2b0488> value = True, timeout = 600 allowed_exceptions = [<class 'ovirtsdk4.NotFoundError'>], initial_wait = 0 error_message = 'False != True after 600 seconds' def assert_equals_within( func, value, timeout, allowed_exceptions=None, initial_wait=10, error_message=None ): allowed_exceptions = allowed_exceptions or [] res = '<no-result-obtained>' with _EggTimer(timeout) as timer: while not timer.elapsed(): try: res = func() if res == value: return except Exception as exc: if _instance_of_any(exc, allowed_exceptions): time.sleep(3) continue LOGGER.exception("Unhandled exception in %s", func) raise if initial_wait == 0: time.sleep(3) else: time.sleep(initial_wait) initial_wait = 0 try: if error_message is None: error_message = '%s != %s after %s seconds' % (res, value, timeout)
raise AssertionError(error_message)
E AssertionError: False != True after 600 seconds ost_utils/ost_utils/assertions.py:59: AssertionError

Project: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/ Build: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/... Build Number: 1275 Build Status: Fixed Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #1273 [Galit Rosenthal] Update ost-repo, repo was changed Changes for Build #1274 [Lucia Jelinkova] UI: Change the navigation in the left menu [Ehud Yonasi] standard_pipelines: add virtio-win project. Changes for Build #1275 [Lucia Jelinkova] UI: Change the navigation in the left menu ----------------- Failed Tests: ----------------- All tests passed
participants (1)
-
jenkins@jenkins.phx.ovirt.org