
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhide/152/display/redirect> ------------------------------------------ [...truncated 21.56 KB...] message = <dbus.lowlevel.MethodCallMessage path: /org/libvirt/Test/domain/_6695eb01_f6a4_8304_79aa_97f2502e193f, iface: org.libvirt.Domain, member: Shutdown dest: :1.3> 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_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 =========== 2 failed, 7 passed, 4 warnings, 1 error in 8.90 seconds ============ FAIL test_domain.py (exit status: 1) FAIL: test_interface.py ======================= ============================= test session starts ============================== platform linux -- Python 3.7.2, pytest-3.9.3, py-1.7.0, pluggy-0.8.0 rootdir: <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhide/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 0x7f21d22b7278> 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 0x7f21d2281550> @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.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 0x7f21d22c0200> 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.7/site-packages/dbus/connection.py:651: DBusException ________ ERROR at setup of TestInterface.test_interface_properties_type ________ self = <test_interface.TestInterface object at 0x7f21d21a8da0> @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.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 0x7f21d22c0200> 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.7/site-packages/dbus/connection.py:651: DBusException =============================== warnings summary =============================== tests/test_interface.py::TestInterface::()::test_interface_get_xml_description source:362: DeprecationWarning: invalid escape sequence \ source:399: DeprecationWarning: invalid escape sequence \ tests/test_interface.py::TestInterface::()::test_interface_properties_type source:362: DeprecationWarning: invalid escape sequence \ source:399: DeprecationWarning: invalid escape sequence \ -- Docs: https://docs.pytest.org/en/latest/warnings.html ================ 2 passed, 4 warnings, 3 error in 7.00 seconds ================= FAIL test_interface.py (exit status: 1) + exit 1 Build step 'Execute shell' marked build as failure