horizon/openstack_dashboard/dashboards/identity/identity_providers/protocols/tests.py
Akihiro Motoki 794b101a00 Convert identity.identity_providers tests into mock
blueprint mock-framework-in-unit-tests

Change-Id: I289488f6ccded28ea0d0f4098c615f0b76e73085
2018-04-25 13:51:34 +09:00

74 lines
2.8 KiB
Python

# Copyright (C) 2015 Yahoo! Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from django.urls import reverse
from openstack_dashboard import api
from openstack_dashboard.test import helpers as test
IDPS_DETAIL_URL = reverse('horizon:identity:identity_providers:detail',
args=['idp_1'])
PROTOCOLS_CREATE_URL = reverse(
'horizon:identity:identity_providers:protocols:create',
args=['idp_1'])
class ProtocolsViewTests(test.BaseAdminViewTests):
@test.create_mocks({api.keystone: ('mapping_list',
'protocol_create', )})
def test_create(self):
idp = self.identity_providers.first()
protocol = self.idp_protocols.first()
self.mock_mapping_list.return_value = self.idp_mappings.list()
self.mock_protocol_create.return_value = protocol
formData = {'method': 'AddProtocolForm',
'id': protocol.id,
'idp_id': idp.id,
'mapping_id': protocol.mapping_id}
res = self.client.post(PROTOCOLS_CREATE_URL, formData)
self.assertNoFormErrors(res)
self.assertMessageCount(success=1)
self.mock_mapping_list.assert_called_once_with(test.IsHttpRequest())
self.mock_protocol_create.assert_called_once_with(
test.IsHttpRequest(), protocol.id, idp.id, protocol.mapping_id)
@test.create_mocks({api.keystone: ('identity_provider_get',
'protocol_list',
'protocol_delete')})
def test_delete(self):
idp = self.identity_providers.first()
protocol = self.idp_protocols.first()
self.mock_identity_provider_get.return_value = idp
self.mock_protocol_list.return_value = self.idp_protocols.list()
self.mock_protocol_delete.return_value = None
formData = {'action': 'idp_protocols__delete__%s' % protocol.id}
res = self.client.post(IDPS_DETAIL_URL, formData)
self.assertNoFormErrors(res)
self.mock_identity_provider_get.assert_called_once_with(
test.IsHttpRequest(), idp.id)
self.mock_protocol_list.assert_called_once_with(
test.IsHttpRequest(), idp.id)
self.mock_protocol_delete.assert_called_once_with(
test.IsHttpRequest(), idp.id, protocol.id)