Merge "Fix intermittent fail of test_delete_bulk_account"

This commit is contained in:
Jenkins
2016-02-04 02:48:11 +00:00
committed by Gerrit Code Review

View File

@@ -791,7 +791,11 @@ class TestShell(testtools.TestCase):
b'"Errors": [], "Number Deleted": 1, "Response Body": ""}') b'"Errors": [], "Number Deleted": 1, "Response Body": ""}')
swiftclient.shell.main(argv) swiftclient.shell.main(argv)
self.assertEqual( self.assertEqual(
connection.return_value.post_account.mock_calls, [ 3, len(connection.return_value.post_account.mock_calls),
'Expected 3 calls but found\n%r'
% connection.return_value.post_account.mock_calls)
# POSTs for same container are made in parallel so expect any order
for expected in [
mock.call(query_string='bulk-delete', mock.call(query_string='bulk-delete',
data=b'/container/object\n/container/obj%C3%A9ct2\n', data=b'/container/object\n/container/obj%C3%A9ct2\n',
headers={'Content-Type': 'text/plain', headers={'Content-Type': 'text/plain',
@@ -801,12 +805,17 @@ class TestShell(testtools.TestCase):
data=b'/container/object3\n', data=b'/container/object3\n',
headers={'Content-Type': 'text/plain', headers={'Content-Type': 'text/plain',
'Accept': 'application/json'}, 'Accept': 'application/json'},
response_dict={}), response_dict={})]:
self.assertIn(expected,
connection.return_value.post_account.mock_calls[:2])
# POSTs for different containers are made sequentially so expect order
self.assertEqual(
mock.call(query_string='bulk-delete', mock.call(query_string='bulk-delete',
data=b'/container2/object\n', data=b'/container2/object\n',
headers={'Content-Type': 'text/plain', headers={'Content-Type': 'text/plain',
'Accept': 'application/json'}, 'Accept': 'application/json'},
response_dict={})]) response_dict={}),
connection.return_value.post_account.mock_calls[2])
self.assertEqual( self.assertEqual(
connection.return_value.delete_container.mock_calls, [ connection.return_value.delete_container.mock_calls, [
mock.call('container', response_dict={}), mock.call('container', response_dict={}),