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/505/
Build Number: 505
Build Status: Failure
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #505
[Roy Golan] Introduce openshift-on-ovirt
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED: network-suite-4.2.tests.ovs.test_ovn_physnet.test_connect_vm_to_external_physnet
Error Message:
test setup failure
Stack Trace:
system = <lib.system.SDKSystemRoot object at 0x7f8de105bf50>
ovs_cluster = <lib.clusterlib.Cluster object at 0x7f8ddd927e90>
default_cluster = <lib.clusterlib.Cluster object at 0x7f8de105b210>
default_data_center = <lib.datacenterlib.DataCenter object at 0x7f8de1add710>
@pytest.fixture(scope='session')
def host_in_ovs_cluster(
system, ovs_cluster, default_cluster, default_data_center):
host_id = default_cluster.host_ids()[0]
host = hostlib.Host(system)
host.import_by_id(host_id)
host.wait_for_up_status(timeout=15 * 60)
with hostlib.change_cluster(host, ovs_cluster):
network-suite-4.2/fixtures/host.py:70:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python2.7/contextlib.py:17: in __enter__
return self.gen.next()
network-suite-4.2/lib/hostlib.py:77: in change_cluster
host.change_cluster(cluster)
network-suite-4.2/lib/hostlib.py:133: in change_cluster
self.update(cluster=cluster.get_sdk_type())
network-suite-4.2/lib/sdkentity.py:87: in update
self._service.update(sdk_type)
/usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:37311: in update
return self._internal_update(host, headers, query, wait)
/usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:253: in _internal_update
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:250: 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 0x7f8ddf6f19d0>
detail = <ovirtsdk4.types.Fault object at 0x7f8ddd931b50>
@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
"Operation Failed". Fault detail is "[Cannot edit Host. Related operation
is currently in progress. Please try again later.]". HTTP response code is 409.
/usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error