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/480/
Build Number: 480
Build Status:  Still Failing
Triggered By: Started by timer

-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #459
[Alona Kaplan] ovirt-system-tests: The bug causing the update to fail was fixed

[Eyal Shenitzky] Remove ioprocess build for s390x

[Daniel Belenky] Support mirrors and extra_sources in stdci runner

[Daniel Belenky] Use stdci_runner in ovirt-cq-tester

[Gal Ben Haim] Allow qemu to access $HOME


Changes for Build #460
[Alona Kaplan] ovirt-system-tests: The bug causing the update to fail was fixed

[Sandro Bonazzola] ovirt-engine: add 4.2.5.z, drop 4.2.3.z


Changes for Build #461
[Alona Kaplan] ovirt-system-tests: The bug causing the update to fail was fixed


Changes for Build #462
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #463
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #464
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #465
[Gal Ben Haim] HE: Added Local Maintenance Tests

[Daniel Belenky] stdci-containers: added shared dir


Changes for Build #466
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #467
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #468
[Gal Ben Haim] HE: Added Local Maintenance Tests

[Barak Korren] mock_runner: don`t store logs in source checkout


Changes for Build #469
[Gal Ben Haim] HE: Added Local Maintenance Tests

[Sandro Bonazzola] ovirt-wgt: exclude fc28 on 4.2


Changes for Build #470
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #471
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #472
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #473
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #474
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #475
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #476
[Gal Ben Haim] HE: Added Local Maintenance Tests


Changes for Build #477
[Dan Kenigsberg] network: present failed tests in result page


Changes for Build #478
[Dan Kenigsberg] network: present failed tests in result page

[Barak Korren] standard-enqueue: improve Gerrit message for V2


Changes for Build #479
[Dan Kenigsberg] network: present failed tests in result page


Changes for Build #480
[Galit] Print test junit error to standard output




-----------------
Failed Tests:
-----------------
2 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 0x7fabed2f2210>
ovs_cluster = <lib.clusterlib.Cluster object at 0x7fabe89652d0>
default_cluster = <lib.clusterlib.Cluster object at 0x7fabed2f2a10>
default_data_center = <lib.datacenterlib.DataCenter object at 0x7fabedd74550>

    @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 0x7fabe8965750>
detail = <ovirtsdk4.types.Fault object at 0x7fabe89776d0>

    @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

FAILED:  network-suite-4.2.tests.test_vm_operations.test_hot_linking_vnic

Error Message:
Error: Fault reason is "Operation Failed". Fault detail is "[Missing required 
parameter]". HTTP response code is 400.

Stack Trace:
running_vm_0 = <lib.virtlib.Vm object at 0x7fabe9e6e710>

    def test_hot_linking_vnic(running_vm_0):
        vnic = running_vm_0.get_vnic(NIC_NAME)
        assert vnic.linked is True
    
>       vnic.set_linked(False)

network-suite-4.2/tests/test_vm_operations.py:112: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
network-suite-4.2/lib/netlib.py:169: in set_linked
    self._service.update(sdk_type)
/usr/lib64/python2.7/site-packages/ovirtsdk4/services.py:32093: in update
    return self._internal_update(nic, 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 0x7fabeba5cc10>
detail = <ovirtsdk4.types.Fault object at 0x7fabeba5c4d0>

    @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 "[Missing 
required parameter]". HTTP response code is 400.

/usr/lib64/python2.7/site-packages/ovirtsdk4/service.py:118: Error
_______________________________________________
Infra mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/[email protected]/message/QX5GXVVKPGDDN56OL6BYOY2SWMWE2C3P/

Reply via email to