Merge "tests: has_calls -> assert_has_calls"

This commit is contained in:
Zuul 2024-02-08 23:37:52 +00:00 committed by Gerrit Code Review
commit a7ffbf7bd0
1 changed files with 5 additions and 2 deletions

View File

@ -4312,12 +4312,15 @@ class NetAppRestCmodeClientTestCase(test.TestCase):
self.mock_object(self.client, 'send_request',
mock.Mock(return_value=fake_response))
self.client.remove_preferred_dcs(fake_ss, svm_uuid)
self.client.send_request.has_calls([
query = {
'fqdn': fake.LDAP_AD_SECURITY_SERVICE.get('domain'),
}
self.client.send_request.assert_has_calls([
mock.call(f'/protocols/cifs/domains/{svm_uuid}/'
f'preferred-domain-controllers/', 'get'),
mock.call(f'/protocols/cifs/domains/{svm_uuid}/'
f'preferred-domain-controllers/{fqdn}/{server_ip}',
'delete', query=fqdn)
'delete', query=query)
])
def test_remove_preferred_dcs_api_error(self):