[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-rawhide #117
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...>
------------------------------------------
[...truncated 20.14 KB...]
Disconnected from D-Bus.
___________________________ TestDomain.test_shutdown ___________________________
self = <test_domain.TestDomain object at 0x7f6d02f89358>
def test_shutdown(self):
def domain_stopped(path, event, detail):
if event != libvirttest.DomainEvent.STOPPED:
return
assert detail == libvirttest.DomainEventStoppedDetailType.SHUTDOWN
assert isinstance(path, dbus.ObjectPath)
self.loop.quit()
self.connect.connect_to_signal('DomainEvent', domain_stopped)
obj, domain = self.get_test_domain()
> domain.Shutdown(0)
../../tests/test_domain.py:107:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.7/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f6d02d7a0a0>
bus_name = dbus.String(':1.2')
object_path = dbus.ObjectPath('/org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f')
dbus_interface = 'org.libvirt.Domain', method = 'Shutdown', signature = 'u'
args = (0,), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f, iface: org.libvirt.Domain, member: Shutdown dest: :1.2>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: internal error: domain 'test' not running
/usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException
--------------------------- Captured stderr teardown ---------------------------
Disconnected from D-Bus.
___________________________ TestDomain.test_suspend ____________________________
self = <test_domain.TestDomain object at 0x7f6d0302f080>
def test_suspend(self):
def domain_suspended(path, event, detail):
if event != libvirttest.DomainEvent.SUSPENDED:
return
assert detail == libvirttest.DomainEventSuspendedDetailType.PAUSED
assert isinstance(path, dbus.ObjectPath)
self.loop.quit()
self.connect.connect_to_signal('DomainEvent', domain_suspended)
obj, domain = self.get_test_domain()
> domain.Suspend()
../../tests/test_domain.py:125:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.7/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f6d02d7a0a0>
bus_name = dbus.String(':1.2')
object_path = dbus.ObjectPath('/org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f')
dbus_interface = 'org.libvirt.Domain', method = 'Suspend', signature = ''
args = (), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f, iface: org.libvirt.Domain, member: Suspend dest: :1.2>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: internal error: domain 'test' not running
/usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException
--------------------------- Captured stderr teardown ---------------------------
Disconnected from D-Bus.
___________________________ TestDomain.test_undefine ___________________________
self = <test_domain.TestDomain object at 0x7f6d02dc56d8>
def test_undefine(self):
def domain_undefined(path, event, detail):
if event != libvirttest.DomainEvent.UNDEFINED:
return
assert detail == libvirttest.DomainEventUndefinedDetailType.REMOVED
assert isinstance(path, dbus.ObjectPath)
self.loop.quit()
self.connect.connect_to_signal('DomainEvent', domain_undefined)
_, domain = self.get_test_domain()
> domain.Shutdown(0)
../../tests/test_domain.py:143:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.7/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.7/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f6d02d7a0a0>
bus_name = dbus.String(':1.2')
object_path = dbus.ObjectPath('/org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f')
dbus_interface = 'org.libvirt.Domain', method = 'Shutdown', signature = 'u'
args = (0,), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f, iface: org.libvirt.Domain, member: Shutdown dest: :1.2>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: internal error: domain 'test' not running
/usr/lib64/python3.7/site-packages/dbus/connection.py:651: DBusException
--------------------------- Captured stderr teardown ---------------------------
Disconnected from D-Bus.
=============================== warnings summary ===============================
tests/test_domain.py::TestDomain::()::test_resume
source:362: DeprecationWarning: invalid escape sequence \
source:399: DeprecationWarning: invalid escape sequence \
tests/test_domain.py::TestDomain::()::test_shutdown
source:362: DeprecationWarning: invalid escape sequence \
source:399: DeprecationWarning: invalid escape sequence \
tests/test_domain.py::TestDomain::()::test_suspend
source:362: DeprecationWarning: invalid escape sequence \
source:399: DeprecationWarning: invalid escape sequence \
tests/test_domain.py::TestDomain::()::test_undefine
source:362: DeprecationWarning: invalid escape sequence \
source:399: DeprecationWarning: invalid escape sequence \
-- Docs: https://docs.pytest.org/en/latest/warnings.html
=========== 4 failed, 5 passed, 8 warnings, 1 error in 15.31 seconds ===========
FAIL test_domain.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
6 years
[Libvirt-ci] Build failed in Jenkins: virt-manager-check » libvirt-fedora-rawhide #290
by ci@centos.org
See <https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...>
------------------------------------------
[...truncated 3.61 KB...]
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1128, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1127, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 250, in run
tests.fail(err)
AssertionError: virt-install --disk
Command was: virt-install --disk
Error code : -1
Output was:
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 129, in _launch_command
ret = virtinstall.main(conn=conn)
File "virt-install", line 912, in main
options = parse_args()
File "virt-install", line 867, in parse_args
cli.autocomplete(parser)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 495, in autocomplete
import argcomplete
ModuleNotFoundError: No module named 'argcomplete'
TESTSUITE: Expected command to pass, but it didn't.
======================================================================
FAIL: testCLI0325virt_install (tests.clitest.CLITests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1128, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1127, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 250, in run
tests.fail(err)
AssertionError: virt-install --disk a
Command was: virt-install --disk a
Error code : -1
Output was:
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 129, in _launch_command
ret = virtinstall.main(conn=conn)
File "virt-install", line 912, in main
options = parse_args()
File "virt-install", line 867, in parse_args
cli.autocomplete(parser)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 495, in autocomplete
import argcomplete
ModuleNotFoundError: No module named 'argcomplete'
TESTSUITE: Expected command to pass, but it didn't.
======================================================================
FAIL: testCLI0326virt_install (tests.clitest.CLITests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1128, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1127, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 250, in run
tests.fail(err)
AssertionError: virt-install --disk address.u
Command was: virt-install --disk address.u
Error code : -1
Output was:
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 129, in _launch_command
ret = virtinstall.main(conn=conn)
File "virt-install", line 912, in main
options = parse_args()
File "virt-install", line 867, in parse_args
cli.autocomplete(parser)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 495, in autocomplete
import argcomplete
ModuleNotFoundError: No module named 'argcomplete'
TESTSUITE: Expected command to pass, but it didn't.
======================================================================
FAIL: testCLI0327virt_install (tests.clitest.CLITests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1128, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1127, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 250, in run
tests.fail(err)
AssertionError: virt-install --disk address.unit=foo,sg
Command was: virt-install --disk address.unit=foo,sg
Error code : -1
Output was:
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 129, in _launch_command
ret = virtinstall.main(conn=conn)
File "virt-install", line 912, in main
options = parse_args()
File "virt-install", line 867, in parse_args
cli.autocomplete(parser)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 495, in autocomplete
import argcomplete
ModuleNotFoundError: No module named 'argcomplete'
TESTSUITE: Expected command to pass, but it didn't.
======================================================================
FAIL: testCLI0328virt_install (tests.clitest.CLITests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1128, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1127, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 250, in run
tests.fail(err)
AssertionError: virt-install --test-stub
Command was: virt-install --test-stub
Error code : -1
Output was:
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 129, in _launch_command
ret = virtinstall.main(conn=conn)
File "virt-install", line 912, in main
options = parse_args()
File "virt-install", line 867, in parse_args
cli.autocomplete(parser)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 495, in autocomplete
import argcomplete
ModuleNotFoundError: No module named 'argcomplete'
TESTSUITE: Expected command to pass, but it didn't.
======================================================================
FAIL: testCLI0329virt_clone (tests.clitest.CLITests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1128, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1127, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 250, in run
tests.fail(err)
AssertionError: virt-clone --preserve
Command was: virt-clone --preserve
Error code : -1
Output was:
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 131, in _launch_command
ret = virtclone.main(conn=conn)
File "virt-clone", line 149, in main
options = parse_args()
File "virt-clone", line 141, in parse_args
cli.autocomplete(parser)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 495, in autocomplete
import argcomplete
ModuleNotFoundError: No module named 'argcomplete'
TESTSUITE: Expected command to pass, but it didn't.
======================================================================
FAIL: testCLI0330virt_xml (tests.clitest.CLITests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1128, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1127, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 250, in run
tests.fail(err)
AssertionError: virt-xml --sound mode
Command was: virt-xml --sound mode
Error code : -1
Output was:
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 135, in _launch_command
ret = virtxml.main(conn=conn)
File "virt-xml", line 407, in main
options = parse_args()
File "virt-xml", line 396, in parse_args
cli.autocomplete(parser)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 495, in autocomplete
import argcomplete
ModuleNotFoundError: No module named 'argcomplete'
TESTSUITE: Expected command to pass, but it didn't.
======================================================================
FAIL: testCLI0331virt_convert (tests.clitest.CLITests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1128, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 1127, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 250, in run
tests.fail(err)
AssertionError: virt-convert --dest
Command was: virt-convert --dest
Error code : -1
Output was:
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 133, in _launch_command
ret = virtconvert.main(conn=conn)
File "virt-convert", line 84, in main
options = parse_args()
File "virt-convert", line 70, in parse_args
cli.autocomplete(parser)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-fedora-rawhi...",> line 495, in autocomplete
import argcomplete
ModuleNotFoundError: No module named 'argcomplete'
TESTSUITE: Expected command to pass, but it didn't.
----------------------------------------------------------------------
Ran 455 tests in 58.600s
FAILED (failures=9, skipped=2)
Build step 'Execute shell' marked build as failure
6 years
[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-28 #116
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-28/11...>
------------------------------------------
[...truncated 30.99 KB...]
self.connect.connect_to_signal('DomainEvent', domain_undefined)
_, domain = self.get_test_domain()
> domain.Shutdown(0)
../../tests/test_domain.py:143:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.6/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f02e9882468>
bus_name = dbus.String(':1.1')
object_path = dbus.ObjectPath('/org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f')
dbus_interface = 'org.libvirt.Domain', method = 'Shutdown', signature = 'u'
args = (0,), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f, iface: org.libvirt.Domain, member: Shutdown dest: :1.1>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: internal error: domain 'test' not running
/usr/lib64/python3.6/site-packages/dbus/connection.py:651: DBusException
--------------------------- Captured stderr teardown ---------------------------
Disconnected from D-Bus.
================= 4 failed, 5 passed, 1 error in 12.94 seconds =================
FAIL test_domain.py (exit status: 1)
FAIL: test_interface.py
=======================
============================= test session starts ==============================
platform linux -- Python 3.6.7, pytest-3.4.2, py-1.5.4, pluggy-0.6.0
rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-28/ws/,> inifile:
collected 5 items
../../tests/test_interface.py .E.EE [100%]
==================================== ERRORS ====================================
____________ ERROR at setup of TestInterface.test_interface_destroy ____________
self = <test_interface.TestInterface object at 0x7f2b3404fcc0>
request = <SubRequest 'libvirt_dbus_setup' for <Function 'test_interface_destroy'>>
@pytest.fixture(autouse=True)
def libvirt_dbus_setup(self, request):
"""Start libvirt-dbus for each test function
"""
os.environ['LIBVIRT_DEBUG'] = '3'
self.libvirt_dbus = subprocess.Popen([exe, '--session'])
self.bus = dbus.SessionBus()
for i in range(10):
if self.bus.name_has_owner('org.libvirt'):
break
time.sleep(0.1)
else:
> raise TimeoutError('error starting libvirt-dbus')
E TimeoutError: error starting libvirt-dbus
../../tests/libvirttest.py:44: TimeoutError
______ ERROR at setup of TestInterface.test_interface_get_xml_description ______
self = <test_interface.TestInterface object at 0x7f2b33b97e80>
@pytest.fixture
def interface_create(self):
""" Fixture to define dummy interface on the test driver
This fixture should be used in the setup of every test manipulating
with interfaces.
"""
path = self.connect.InterfaceDefineXML(xmldata.minimal_interface_xml, 0)
obj = self.bus.get_object('org.libvirt', path)
interface_obj = dbus.Interface(obj, 'org.libvirt.Interface')
> interface_obj.Create(0)
../../tests/libvirttest.py:84:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.6/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f2b34080ca8>
bus_name = dbus.String(':1.2')
object_path = dbus.ObjectPath('/org/libvirt/Test/interface/11_3a22_3a33_3a44_3a55_3a66')
dbus_interface = 'org.libvirt.Interface', method = 'Create', signature = 'u'
args = (0,), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/interface/11_3a22_3a33_3a44_3a55_3a66, iface: org.libvirt.Interface, member: Create dest: :1.2>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: Requested operation is not valid
/usr/lib64/python3.6/site-packages/dbus/connection.py:651: DBusException
________ ERROR at setup of TestInterface.test_interface_properties_type ________
self = <test_interface.TestInterface object at 0x7f2b33b86518>
@pytest.fixture
def interface_create(self):
""" Fixture to define dummy interface on the test driver
This fixture should be used in the setup of every test manipulating
with interfaces.
"""
path = self.connect.InterfaceDefineXML(xmldata.minimal_interface_xml, 0)
obj = self.bus.get_object('org.libvirt', path)
interface_obj = dbus.Interface(obj, 'org.libvirt.Interface')
> interface_obj.Create(0)
../../tests/libvirttest.py:84:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.6/site-packages/dbus/proxies.py:70: in __call__
return self._proxy_method(*args, **keywords)
/usr/lib64/python3.6/site-packages/dbus/proxies.py:145: in __call__
**keywords)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dbus._dbus.SessionBus (session) at 0x7f2b34080ca8>
bus_name = dbus.String(':1.2')
object_path = dbus.ObjectPath('/org/libvirt/Test/interface/11_3a22_3a33_3a44_3a55_3a66')
dbus_interface = 'org.libvirt.Interface', method = 'Create', signature = 'u'
args = (0,), timeout = -1.0, byte_arrays = False, kwargs = {}
get_args_opts = {'byte_arrays': False}
message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/interface/11_3a22_3a33_3a44_3a55_3a66, iface: org.libvirt.Interface, member: Create dest: :1.2>
def call_blocking(self, bus_name, object_path, dbus_interface, method,
signature, args, timeout=-1.0,
byte_arrays=False, **kwargs):
"""Call the given method, synchronously.
:Since: 0.81.0
"""
if object_path == LOCAL_PATH:
raise DBusException('Methods may not be called on the reserved '
'path %s' % LOCAL_PATH)
if dbus_interface == LOCAL_IFACE:
raise DBusException('Methods may not be called on the reserved '
'interface %s' % LOCAL_IFACE)
# no need to validate other args - MethodCallMessage ctor will do
get_args_opts = dict(byte_arrays=byte_arrays)
if is_py2:
get_args_opts['utf8_strings'] = kwargs.get('utf8_strings', False)
elif 'utf8_strings' in kwargs:
raise TypeError("unexpected keyword argument 'utf8_strings'")
message = MethodCallMessage(destination=bus_name,
path=object_path,
interface=dbus_interface,
method=method)
# Add the arguments to the function
try:
message.append(signature=signature, *args)
except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
args, signature, e.__class__, e)
raise
# make a blocking call
reply_message = self.send_message_with_reply_and_block(
> message, timeout)
E dbus.exceptions.DBusException: org.libvirt.Error: Requested operation is not valid
/usr/lib64/python3.6/site-packages/dbus/connection.py:651: DBusException
====================== 2 passed, 3 error in 8.87 seconds =======================
FAIL test_interface.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
6 years
[Libvirt-ci] Build failed in Jenkins: libvirt-perl-check » libvirt-freebsd-12 #163
by ci@centos.org
See <https://ci.centos.org/job/libvirt-perl-check/systems=libvirt-freebsd-12/1...>
------------------------------------------
Started by upstream project "libvirt-perl-check" build number 163
originally caused by:
Started by upstream project "libvirt-perl-build" build number 163
originally caused by:
Started by upstream project "libvirt-build" build number 190
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-freebsd-12 (libvirt) in workspace <https://ci.centos.org/job/libvirt-perl-check/systems=libvirt-freebsd-12/ws/>
[libvirt-perl] $ /bin/sh -xe /tmp/jenkins1834011301162520099.sh
+ export 'TEST_MAINTAINER=1'
+ perl Build test
t/005-pod.t ............ ok
t/010-pod-coverage.t ... ok
t/015-changes.t ........ ok
t/020-constants.t ...... ok
# Failed test 'VIR_DOMAIN_JOB_MEMORY_POSTCOPY_REQS'
# at t/030-api-coverage.t line 219.
# Looks like you failed 1 test of 1647.
t/030-api-coverage.t ...
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1647 subtests
t/100-connect.t ........ ok
t/200-domains.t ........ ok
t/300-networks.t ....... ok
t/400-storage-pools.t .. ok
t/500-storage-vols.t ... ok
t/600-interfaces.t ..... ok
t/800-events.t ......... ok
Test Summary Report
-------------------
t/030-api-coverage.t (Wstat: 256 Tests: 1647 Failed: 1)
Failed test: 1501
Non-zero exit status: 1
Files=12, Tests=1901, 17 wallclock secs ( 0.48 usr 0.36 sys + 14.17 cusr 1.73 csys = 16.75 CPU)
Result: FAIL
Failed 1/12 test programs. 1/1901 subtests failed.
Build step 'Execute shell' marked build as failure
6 years
[Libvirt-ci] Build failed in Jenkins: libvirt-perl-check » libvirt-freebsd-11 #162
by ci@centos.org
See <https://ci.centos.org/job/libvirt-perl-check/systems=libvirt-freebsd-11/1...>
------------------------------------------
Started by upstream project "libvirt-perl-check" build number 162
originally caused by:
Started by upstream project "libvirt-perl-build" build number 162
originally caused by:
Started by upstream project "libvirt-build" build number 189
originally caused by:
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-freebsd-11 (libvirt) in workspace <https://ci.centos.org/job/libvirt-perl-check/systems=libvirt-freebsd-11/ws/>
[libvirt-perl] $ /bin/sh -xe /tmp/jenkins1752843579469639103.sh
+ export 'TEST_MAINTAINER=1'
+ perl Build test
t/005-pod.t ............ ok
t/010-pod-coverage.t ... ok
t/015-changes.t ........ ok
t/020-constants.t ...... ok
# Failed test 'VIR_DOMAIN_JOB_MEMORY_POSTCOPY_REQS'
# at t/030-api-coverage.t line 219.
# Looks like you failed 1 test of 1647.
t/030-api-coverage.t ...
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1647 subtests
t/100-connect.t ........ ok
t/200-domains.t ........ ok
t/300-networks.t ....... ok
t/400-storage-pools.t .. ok
t/500-storage-vols.t ... ok
t/600-interfaces.t ..... ok
t/800-events.t ......... ok
Test Summary Report
-------------------
t/030-api-coverage.t (Wstat: 256 Tests: 1647 Failed: 1)
Failed test: 1501
Non-zero exit status: 1
Files=12, Tests=1901, 14 wallclock secs ( 0.55 usr 0.33 sys + 11.23 cusr 1.96 csys = 14.06 CPU)
Result: FAIL
Failed 1/12 test programs. 1/1901 subtests failed.
Build step 'Execute shell' marked build as failure
6 years
[Libvirt-ci] Build failed in Jenkins: libvirt-perl-check » libvirt-fedora-rawhide #162
by ci@centos.org
See <https://ci.centos.org/job/libvirt-perl-check/systems=libvirt-fedora-rawhi...>
------------------------------------------
Started by upstream project "libvirt-perl-check" build number 162
originally caused by:
Started by upstream project "libvirt-perl-build" build number 162
originally caused by:
Started by upstream project "libvirt-build" build number 189
originally caused by:
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-rawhide (libvirt) in workspace <https://ci.centos.org/job/libvirt-perl-check/systems=libvirt-fedora-rawhi...>
[libvirt-perl] $ /bin/sh -xe /tmp/jenkins1051666877080909553.sh
+ export TEST_MAINTAINER=1
+ TEST_MAINTAINER=1
+ perl Build test
t/005-pod.t ............ ok
t/010-pod-coverage.t ... ok
t/015-changes.t ........ ok
t/020-constants.t ...... ok
# Failed test 'VIR_DOMAIN_JOB_MEMORY_POSTCOPY_REQS'
# at t/030-api-coverage.t line 219.
# Looks like you failed 1 test of 1647.
t/030-api-coverage.t ...
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1647 subtests
t/100-connect.t ........ ok
t/200-domains.t ........ ok
t/300-networks.t ....... ok
t/400-storage-pools.t .. ok
t/500-storage-vols.t ... ok
t/600-interfaces.t ..... ok
t/800-events.t ......... ok
Test Summary Report
-------------------
t/030-api-coverage.t (Wstat: 256 Tests: 1647 Failed: 1)
Failed test: 1501
Non-zero exit status: 1
Files=12, Tests=1901, 15 wallclock secs ( 0.42 usr 0.06 sys + 8.39 cusr 0.63 csys = 9.50 CPU)
Result: FAIL
Failed 1/12 test programs. 1/1901 subtests failed.
Build step 'Execute shell' marked build as failure
6 years
[Libvirt-ci] Build failed in Jenkins: libvirt-perl-check » libvirt-fedora-29 #162
by ci@centos.org
See <https://ci.centos.org/job/libvirt-perl-check/systems=libvirt-fedora-29/16...>
------------------------------------------
Started by upstream project "libvirt-perl-check" build number 162
originally caused by:
Started by upstream project "libvirt-perl-build" build number 162
originally caused by:
Started by upstream project "libvirt-build" build number 189
originally caused by:
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-29 (libvirt) in workspace <https://ci.centos.org/job/libvirt-perl-check/systems=libvirt-fedora-29/ws/>
[libvirt-perl] $ /bin/sh -xe /tmp/jenkins1590458579859799800.sh
+ export TEST_MAINTAINER=1
+ TEST_MAINTAINER=1
+ perl Build test
t/005-pod.t ............ ok
t/010-pod-coverage.t ... ok
t/015-changes.t ........ ok
t/020-constants.t ...... ok
# Failed test 'VIR_DOMAIN_JOB_MEMORY_POSTCOPY_REQS'
# at t/030-api-coverage.t line 219.
# Looks like you failed 1 test of 1647.
t/030-api-coverage.t ...
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1647 subtests
t/100-connect.t ........ ok
t/200-domains.t ........ ok
t/300-networks.t ....... ok
t/400-storage-pools.t .. ok
t/500-storage-vols.t ... ok
t/600-interfaces.t ..... ok
t/800-events.t ......... ok
Test Summary Report
-------------------
t/030-api-coverage.t (Wstat: 256 Tests: 1647 Failed: 1)
Failed test: 1501
Non-zero exit status: 1
Files=12, Tests=1901, 35 wallclock secs ( 0.50 usr 0.07 sys + 8.27 cusr 0.64 csys = 9.48 CPU)
Result: FAIL
Failed 1/12 test programs. 1/1901 subtests failed.
Build step 'Execute shell' marked build as failure
6 years