Project:
https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/
Build:
https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_night...
Build Number: 773
Build Status: Still Failing
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #772
[Marcin Sobczyk] lagofy: Add 'run_linters' function
[Romain Arnaud] Add files/dirs created by `pipenv sync` to `.gitignore`
Changes for Build #773
[Marcin Sobczyk] lagofy: Add 'run_linters' function
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED: basic-suite-master.test-scenarios.test_004_basic_sanity.test_add_vm_pool
Error Message:
ovirtsdk4.Error: Fault reason is "Operation Failed". Fault detail is
"[Internal Engine Error]". HTTP response code is 400.
Stack Trace:
engine_api = <ovirtsdk4.Connection object at 0x7f7dba454a20>
cirros_image_glance_template_name = 'CirrOS_0.5.1_glance_template'
@order_by(_TEST_LIST)
def test_add_vm_pool(engine_api, cirros_image_glance_template_name):
engine = engine_api.system_service()
pools_service = engine.vm_pools_service()
pool_cluster =
engine.clusters_service().list(search='name={}'.format(TEST_CLUSTER))[0]
pool_template = engine.templates_service().list(search='name={}'.format(
cirros_image_glance_template_name
))[0]
with engine_utils.wait_for_event(engine, 302):
pools_service.add(
pool=types.VmPool(
name=VMPOOL_NAME,
cluster=pool_cluster,
template=pool_template,
use_latest_template_version=True,
)
)
../basic-suite-master/test-scenarios/test_004_basic_sanity.py:1114:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.6/site-packages/ovirtsdk4/services.py:36441: in add
return self._internal_add(pool, headers, query, wait)
/usr/lib64/python3.6/site-packages/ovirtsdk4/service.py:232: in _internal_add
return future.wait() if wait else future
/usr/lib64/python3.6/site-packages/ovirtsdk4/service.py:55: in wait
return self._code(response)
/usr/lib64/python3.6/site-packages/ovirtsdk4/service.py:229: in callback
self._check_fault(response)
/usr/lib64/python3.6/site-packages/ovirtsdk4/service.py:132: in _check_fault
self._raise_error(response, body)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
response = <ovirtsdk4.http.Response object at 0x7f7db9ba9c50>
detail = <ovirtsdk4.types.Fault object at 0x7f7db9b6ecc0>
@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 ovirtsdk4.Error: Fault reason is
"Operation Failed". Fault detail is "[Internal Engine Error]". HTTP
response code is 400.
/usr/lib64/python3.6/site-packages/ovirtsdk4/service.py:118: Error