[openstack-dev] [neutron][lbaas] Radware unit test issues

Brandon Logan brandon.logan at RACKSPACE.COM
Fri Jul 10 16:42:30 UTC 2015


python's mock library had an update yesterday that exposed some issues with unit tests that are using the mock assert calls.  The radware tests were using a method called assert_called_once, which actually is not a real assert method off a mock.  assert_called_once_with is, though.  However, before the update mock would allow this method to run as it allowed any method calls to be run.  Now with the update, only actual assert methods can be used, so that broke these tests.  Changing the method to something like self.assertEquals(1, mocked_object.call_count) failed as well because the call_count was not actually 1.  As such, I've pushed up a review to skip these tests.  It would be great if radware folks could fix these tests and unskip them as I didn't have the time to look into actually figuring out if the call count discrepancy is a real issue or not.


https://review.openstack.org/#/c/200616/?


Thanks,
Brandon
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstack.org/pipermail/openstack-dev/attachments/20150710/c12e6b90/attachment.html>


More information about the OpenStack-dev mailing list