Akihiro Motoki e477eafa45 django2: Replace django.core.urlresolves with django.urls
(In Django 2.0) The django.core.urlresolvers module is removed
in favor of its new location, django.urls.
It was depreacted in Django 1.10:
https://docs.djangoproject.com/en/2.0/releases/1.10/#id3

blueprint django2-support
Change-Id: I46ab5c325491274b8eaffbf848e5d80f83c2fd26
2018-02-17 01:36:48 +09:00

152 lines
5.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 import http
from django.urls import reverse
from mox3.mox import IgnoreArg
from mox3.mox import IsA
from openstack_dashboard import api
from openstack_dashboard.test import helpers as test
IDPS_INDEX_URL = reverse('horizon:identity:identity_providers:index')
IDPS_REGISTER_URL = reverse('horizon:identity:identity_providers:register')
IDPS_UPDATE_URL = reverse('horizon:identity:identity_providers:update',
args=['idp_1'])
IDPS_DETAIL_URL = reverse('horizon:identity:identity_providers:detail',
args=['idp_1'])
class IdPsViewTests(test.BaseAdminViewTests):
@test.create_stubs({api.keystone: ('identity_provider_list',)})
def test_index(self):
api.keystone.identity_provider_list(IgnoreArg()). \
AndReturn(self.identity_providers.list())
self.mox.ReplayAll()
res = self.client.get(IDPS_INDEX_URL)
self.assertTemplateUsed(res, 'horizon/common/_data_table_view.html')
self.assertItemsEqual(res.context['table'].data,
self.identity_providers.list())
@test.create_stubs({api.keystone: ('identity_provider_create', )})
def test_create(self):
idp = self.identity_providers.first()
api.keystone.identity_provider_create(IgnoreArg(),
idp.id,
description=idp.description,
enabled=idp.enabled,
remote_ids=idp.remote_ids). \
AndReturn(idp)
self.mox.ReplayAll()
formData = {'method': 'RegisterIdPForm',
'id': idp.id,
'description': idp.description,
'enabled': idp.enabled,
'remote_ids': ', '.join(idp.remote_ids)}
res = self.client.post(IDPS_REGISTER_URL, formData)
self.assertNoFormErrors(res)
self.assertMessageCount(success=1)
@test.create_stubs({api.keystone: ('identity_provider_get',
'identity_provider_update')})
def test_update(self):
idp = self.identity_providers.first()
new_description = 'new_idp_desc'
api.keystone.identity_provider_get(IsA(http.HttpRequest), idp.id). \
AndReturn(idp)
api.keystone.identity_provider_update(IsA(http.HttpRequest),
idp.id,
description=new_description,
enabled=idp.enabled,
remote_ids=idp.remote_ids). \
AndReturn(None)
self.mox.ReplayAll()
formData = {'method': 'UpdateIdPForm',
'id': idp.id,
'description': new_description,
'enabled': idp.enabled,
'remote_ids': ', '.join(idp.remote_ids)}
res = self.client.post(IDPS_UPDATE_URL, formData)
self.assertNoFormErrors(res)
self.assertMessageCount(success=1)
@test.create_stubs({api.keystone: ('identity_provider_list',
'identity_provider_delete')})
def test_delete(self):
idp = self.identity_providers.first()
api.keystone.identity_provider_list(IsA(http.HttpRequest)) \
.AndReturn(self.identity_providers.list())
api.keystone.identity_provider_delete(IsA(http.HttpRequest),
idp.id).AndReturn(None)
self.mox.ReplayAll()
formData = {'action': 'identity_providers__delete__%s' % idp.id}
res = self.client.post(IDPS_INDEX_URL, formData)
self.assertNoFormErrors(res)
@test.create_stubs({api.keystone: ('identity_provider_get',
'protocol_list')})
def test_detail(self):
idp = self.identity_providers.first()
api.keystone.identity_provider_get(IsA(http.HttpRequest), idp.id). \
AndReturn(idp)
api.keystone.protocol_list(IsA(http.HttpRequest), idp.id). \
AndReturn(self.idp_protocols.list())
self.mox.ReplayAll()
res = self.client.get(IDPS_DETAIL_URL)
self.assertTemplateUsed(
res, 'identity/identity_providers/_detail_overview.html')
self.assertTemplateUsed(res, 'horizon/common/_detail_table.html')
@test.create_stubs({api.keystone: ('identity_provider_get',
'protocol_list')})
def test_detail_protocols(self):
idp = self.identity_providers.first()
api.keystone.identity_provider_get(IsA(http.HttpRequest), idp.id). \
AndReturn(idp)
api.keystone.protocol_list(IsA(http.HttpRequest), idp.id). \
AndReturn(self.idp_protocols.list())
self.mox.ReplayAll()
res = self.client.get(IDPS_DETAIL_URL + '?tab=idp_details__protocols')
self.assertTemplateUsed(
res, 'identity/identity_providers/_detail_overview.html')
self.assertTemplateUsed(res, 'horizon/common/_detail_table.html')
self.assertItemsEqual(res.context['idp_protocols_table'].data,
self.idp_protocols.list())