manila-ui/manila_ui/tests/dashboards/project/shares/security_services/tests.py

123 lines
4.7 KiB
Python

# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2012 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
# Copyright 2012 Nebula, Inc.
#
# 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.core.urlresolvers import reverse
from manilaclient import exceptions as manila_client_exc
import mock
from manila_ui.api import manila as api_manila
from manila_ui.tests.dashboards.project.shares import test_data
from manila_ui.tests import helpers as test
SHARE_INDEX_URL = reverse('horizon:project:shares:index')
class SecurityServicesViewTests(test.TestCase):
def test_create_security_service(self):
formData = {'name': u'new_sec_service',
'description': u'This is test security service',
'method': u'CreateForm',
'dns_ip': '1.2.3.4',
'user': 'SomeUser',
'password': 'safepass',
'confirm_password': 'safepass',
'type': 'ldap',
'domain': 'TEST',
'server': 'testserver'
}
api_manila.security_service_create = mock.Mock()
url = reverse('horizon:project:shares:create_security_service')
res = self.client.post(url, formData)
del formData['method']
del formData['confirm_password']
api_manila.security_service_create.assert_called_with(
mock.ANY, **formData)
self.assertRedirectsNoFollow(res, SHARE_INDEX_URL)
def test_delete_security_service(self):
security_service = test_data.sec_service
formData = {'action':
'security_services__delete__%s' % security_service.id}
api_manila.security_service_delete = mock.Mock()
api_manila.security_service_list = mock.Mock(
return_value=[test_data.sec_service])
url = reverse('horizon:project:shares:index')
res = self.client.post(url, formData)
api_manila.security_service_delete.assert_called_with(
mock.ANY, test_data.sec_service.id)
self.assertRedirectsNoFollow(res, SHARE_INDEX_URL)
def test_detail_view(self):
sec_service = test_data.sec_service
api_manila.security_service_get = mock.Mock(return_value=sec_service)
url = reverse('horizon:project:shares:security_service_detail',
args=[sec_service.id])
res = self.client.get(url)
self.assertContains(res, "<h1>Security Service Details: %s</h1>"
% sec_service.name,
1, 200)
self.assertContains(res, "<dd>%s</dd>" % sec_service.name, 1, 200)
self.assertContains(res, "<dd>%s</dd>" % sec_service.id, 1, 200)
self.assertContains(res, "<dd>%s</dd>" % sec_service.user, 1, 200)
self.assertContains(res, "<dd>%s</dd>" % sec_service.server, 1, 200)
self.assertContains(res, "<dd>%s</dd>" % sec_service.dns_ip, 1, 200)
self.assertContains(res, "<dd>%s</dd>" % sec_service.domain, 1, 200)
self.assertNoMessages()
def test_detail_view_with_exception(self):
sec_service = test_data.sec_service
def raise_exc(*args, **kwargs):
raise manila_client_exc.NotFound(404)
api_manila.security_service_get = mock.Mock(
side_effect=raise_exc)
url = reverse('horizon:project:shares:security_service_detail',
args=[sec_service.id])
res = self.client.get(url)
self.assertRedirectsNoFollow(res, SHARE_INDEX_URL)
def test_update_security_service(self):
sec_service = test_data.sec_service
api_manila.security_service_get = mock.Mock(return_value=sec_service)
api_manila.security_service_update = mock.Mock()
formData = {'method': 'UpdateForm',
'name': sec_service.name,
'description': sec_service.description}
url = reverse('horizon:project:shares:update_security_service',
args=[sec_service.id])
res = self.client.post(url, formData)
self.assertRedirectsNoFollow(res, SHARE_INDEX_URL)