[oVirt Jenkins] ovirt-system-tests_network-suite-4.2 - Build # 717 - Failure!

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/717/ Build Number: 717 Build Status: Failure Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7fb4857daed0> default_cluster = <lib.clusterlib.Cluster object at 0x7fb4857da250> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7fb484018c50> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7fb485712f50> detail = <ovirtsdk4.types.Fault object at 0x7fb485712490> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/718/ Build Number: 718 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7fc4566568d0> default_cluster = <lib.clusterlib.Cluster object at 0x7fc456656bd0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7fc456675e10> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7fc45658e590> detail = <ovirtsdk4.types.Fault object at 0x7fc45658ee10> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/719/ Build Number: 719 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7fc7f91f48d0> default_cluster = <lib.clusterlib.Cluster object at 0x7fc7f91f4bd0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7fc7f81b3710> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7fc7f81b3350> detail = <ovirtsdk4.types.Fault object at 0x7fc7f81b39d0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/720/ Build Number: 720 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f5ab280fbd0> default_cluster = <lib.clusterlib.Cluster object at 0x7f5ab280fed0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f5ab282db90> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f5ab2744f90> detail = <ovirtsdk4.types.Fault object at 0x7f5ab2744c50> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/721/ Build Number: 721 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f64fdd698d0> default_cluster = <lib.clusterlib.Cluster object at 0x7f64fdd69bd0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f64fdd90050> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f64febfeb50> detail = <ovirtsdk4.types.Fault object at 0x7f64febfecd0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/722/ Build Number: 722 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f52a8c5abd0> default_cluster = <lib.clusterlib.Cluster object at 0x7f52a8c5aed0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f52a8c78e10> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f52a9ae5990> detail = <ovirtsdk4.types.Fault object at 0x7f52a9ae59d0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/723/ Build Number: 723 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7faea45e2ed0> default_cluster = <lib.clusterlib.Cluster object at 0x7faea45e2250> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7faea45e1490> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7fae9e10a510> detail = <ovirtsdk4.types.Fault object at 0x7fae9e10a5d0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/724/ Build Number: 724 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7fafd40f5690> default_cluster = <lib.clusterlib.Cluster object at 0x7fafd4e2a8d0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7fafd40f5410> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7fafd40f5d90> detail = <ovirtsdk4.types.Fault object at 0x7fafd40f5c90> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/725/ Build Number: 725 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7fb7fbfcbbd0> default_cluster = <lib.clusterlib.Cluster object at 0x7fb7fbfcbed0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7fb800e93890> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7fb800e9cad0> detail = <ovirtsdk4.types.Fault object at 0x7fb800e9cc10> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/726/ Build Number: 726 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f31c05d4f50> default_cluster = <lib.clusterlib.Cluster object at 0x7f31c05b96d0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f31c05d4dd0> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f31c144dc50> detail = <ovirtsdk4.types.Fault object at 0x7f31c144dd90> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/727/ Build Number: 727 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7fd3497c3bd0> default_cluster = <lib.clusterlib.Cluster object at 0x7fd3497c3ed0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7fd3497e1250> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7fd33bb9c150> detail = <ovirtsdk4.types.Fault object at 0x7fd33bb9ce90> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/728/ Build Number: 728 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f7ef69788d0> default_cluster = <lib.clusterlib.Cluster object at 0x7f7ef6978bd0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f7ef6997750> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f7ef6925fd0> detail = <ovirtsdk4.types.Fault object at 0x7f7ef6925dd0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/729/ Build Number: 729 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f1c6fd75bd0> default_cluster = <lib.clusterlib.Cluster object at 0x7f1c6fd75ed0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f1c6fd9c410> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f1c6fd21d10> detail = <ovirtsdk4.types.Fault object at 0x7f1c6fd21f50> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/730/ Build Number: 730 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f88090feed0> default_cluster = <lib.clusterlib.Cluster object at 0x7f88090fe250> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f88080bfa50> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f880911bc90> detail = <ovirtsdk4.types.Fault object at 0x7f880911bdd0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/731/ Build Number: 731 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f6eb8f48ed0> default_cluster = <lib.clusterlib.Cluster object at 0x7f6eb8f48250> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f6eb8f66e90> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f6eb2afe050> detail = <ovirtsdk4.types.Fault object at 0x7f6eb2afe290> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/732/ Build Number: 732 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #732 [Galit Rosenthal] Added PG10 to master repo file ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f739fc6fed0> default_cluster = <lib.clusterlib.Cluster object at 0x7f739fc6f250> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f739e089150> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f739fba78d0> detail = <ovirtsdk4.types.Fault object at 0x7f739fba7cd0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/733/ Build Number: 733 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #732 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #733 [Galit Rosenthal] Added PG10 to master repo file ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7fe7bd1926d0> default_cluster = <lib.clusterlib.Cluster object at 0x7fe7bd192bd0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7fe7bd1b0950> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7fe7bc153110> detail = <ovirtsdk4.types.Fault object at 0x7fe7bc153f10> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/734/ Build Number: 734 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #732 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #733 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #734 [Galit Rosenthal] Added PG10 to master repo file ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f632153e6d0> default_cluster = <lib.clusterlib.Cluster object at 0x7f632153ebd0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f631391a210> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f6320ce5e90> detail = <ovirtsdk4.types.Fault object at 0x7f6320ce57d0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/735/ Build Number: 735 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #732 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #733 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #734 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #735 [Galit Rosenthal] Added PG10 to master repo file ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f218b1d1ed0> default_cluster = <lib.clusterlib.Cluster object at 0x7f218b1d1250> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f21895e9cd0> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f218b176290> detail = <ovirtsdk4.types.Fault object at 0x7f218b176e50> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/736/ Build Number: 736 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #732 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #733 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #734 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #735 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #736 [Galit Rosenthal] Added PG10 to master repo file [Ehud Yonasi] slave.conf: Update mirror links to latest. ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f514d9b2bd0> default_cluster = <lib.clusterlib.Cluster object at 0x7f514d9b2ed0> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f514d9d08d0> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f514d95fc50> detail = <ovirtsdk4.types.Fault object at 0x7f514d95fb50> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/737/ Build Number: 737 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #732 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #733 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #734 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #735 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #736 [Galit Rosenthal] Added PG10 to master repo file [Ehud Yonasi] slave.conf: Update mirror links to latest. Changes for Build #737 [Galit Rosenthal] Added PG10 to master repo file ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f840a216ed0> default_cluster = <lib.clusterlib.Cluster object at 0x7f840a216250> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f840b0acf10> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f84085d9550> detail = <ovirtsdk4.types.Fault object at 0x7f84085d97d0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/738/ Build Number: 738 Build Status: Still Failing Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #732 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #733 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #734 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #735 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #736 [Galit Rosenthal] Added PG10 to master repo file [Ehud Yonasi] slave.conf: Update mirror links to latest. Changes for Build #737 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #738 [Roy Golan] Fetch the quay.io image for deployment ----------------- Failed Tests: ----------------- 1 tests failed. FAILED: network-suite-4.2.tests.test_mac_pools.test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac Error Message: Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. Stack Trace: system = <lib.system.SDKSystemRoot object at 0x7f8e597e1310> default_cluster = <lib.clusterlib.Cluster object at 0x7f8e58027050> ovirtmgmt_vnic_profile = <lib.netlib.VnicProfile object at 0x7f8e580270d0> cirros_template = 'Cirros_0_4_0' def test_undo_preview_snapshot_when_mac_used_reassigns_a_new_mac( system, default_cluster, ovirtmgmt_vnic_profile, cirros_template): with virtlib.vm_pool(system, size=2) as (vm_0, vm_1): vm_0.create(vm_name=VM0, cluster=default_cluster, template=cirros_template) vm_0.wait_for_down_status() vm_0.run() vm_0.wait_for_up_status() nicless_snapshot = _create_snapshot(vm_0) vm_0.create_vnic(NIC_NAME_1, ovirtmgmt_vnic_profile, MAC_ADDR_1) vm_0.stop() vm_0.wait_for_down_status()
nicless_snapshot.preview()
network-suite-4.2/tests/test_mac_pools.py:124: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ network-suite-4.2/lib/virtlib.py:243: in preview snapshot=self.get_sdk_type() /usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:31091: in preview_snapshot return self._internal_action(action, 'previewsnapshot', None, headers, query, wait) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:299: in _internal_action return future.wait() if wait else future /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:55: in wait return self._code(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:296: in callback self._check_fault(response) /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:132: in _check_fault self._raise_error(response, body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <ovirtsdk4.http.Response object at 0x7f8e58021090> detail = <ovirtsdk4.types.Fault object at 0x7f8e58021ad0> @staticmethod def _raise_error(response, detail=None): """ Creates and raises an error containing the details of the given HTTP response and fault. This method is intended for internal use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed. """ fault = detail if isinstance(detail, types.Fault) else None msg = '' if fault: if fault.reason: if msg: msg += ' ' msg = msg + 'Fault reason is "%s".' % fault.reason if fault.detail: if msg: msg += ' ' msg = msg + 'Fault detail is "%s".' % fault.detail if response: if response.code: if msg: msg += ' ' msg = msg + 'HTTP response code is %s.' % response.code if response.message: if msg: msg += ' ' msg = msg + 'HTTP response message is "%s".' % response.message if isinstance(detail, six.string_types): if msg: msg += ' ' msg = msg + detail + '.' class_ = Error if response is not None: if response.code in [401, 403]: class_ = AuthError elif response.code == 404: class_ = NotFoundError error = class_(msg) error.code = response.code if response else None error.fault = fault
raise error
E Error: Fault reason is "Request syntactically incorrect.". Fault detail is "For correct usage, see: https://192.168.201.4/ovirt-engine/apidoc#services/vm/methods/preview_snapsh...". HTTP response code is 400. /usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error

Project: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/ Build: http://jenkins.ovirt.org/job/ovirt-system-tests_network-suite-4.2/739/ Build Number: 739 Build Status: Fixed Triggered By: Started by timer ------------------------------------- Changes Since Last Success: ------------------------------------- Changes for Build #717 [Marcin Sobczyk] Change logging level for 'schema.inconsistency' Changes for Build #718 [Ales Musil] master: Update master suite compatibility version Changes for Build #719 [Ales Musil] master: Update master suite compatibility version Changes for Build #720 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #721 [Galit Rosenthal] added hooks to poll-upstream-sources [Barak Korren] Make STDCI V2 agnostic to wither you say 'please' Changes for Build #722 [Galit Rosenthal] added hooks to poll-upstream-sources Changes for Build #723 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #724 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #725 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #726 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #727 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #728 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #729 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #730 [Martin Perina] Fix notifier check in master and 4.2 [Evgheni Dereveanchin] Define Fedora 29 mirrors Changes for Build #731 [Martin Perina] Fix notifier check in master and 4.2 Changes for Build #732 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #733 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #734 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #735 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #736 [Galit Rosenthal] Added PG10 to master repo file [Ehud Yonasi] slave.conf: Update mirror links to latest. Changes for Build #737 [Galit Rosenthal] Added PG10 to master repo file Changes for Build #738 [Roy Golan] Fetch the quay.io image for deployment Changes for Build #739 [Roy Golan] Add README to openshift-on-ovirt suite [Sandro Bonazzola] ovirt-host: drop s390 test due to missing support ----------------- Failed Tests: ----------------- All tests passed
participants (1)
-
jenkins@jenkins.phx.ovirt.org