Files
manila-ui/manila_ui/tests/dashboards/admin/share_networks/tests.py
Cameron Kolodjski d1428c5fc5 Create share network panel workflows
Implements: bp share-network-subnets
Co-Authored-By: Cameron Kolodjski <cdkolod@gmail.com>
Co-Authored-By: Shkoh Hamasoor <shkoh.hamasoor@ndsu.edu>
Co-Authored-By: melakualehegn <melakualehegn34@gmail.com>
Change-Id: I4c539b151cbbf69e4a2a3580906b2a8bd5f3a452
Signed-off-by: Goutham Pacha Ravi <gouthampravi@gmail.com>
2024-02-22 08:57:48 +00:00

190 lines
8.7 KiB
Python

# Copyright (c) 2014 NetApp, Inc.
# Copyright (c) 2015 Mirantis, 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.urls import reverse
from horizon import exceptions as horizon_exceptions
from neutronclient.client import exceptions
from openstack_dashboard.api import keystone as api_keystone
from openstack_dashboard.api import neutron as api_neutron
from oslo_utils import timeutils
from unittest import mock
from manila_ui.api import manila as api_manila
from manila_ui.dashboards.admin import utils
from manila_ui.tests.dashboards.project import test_data
from manila_ui.tests import helpers as test
from manila_ui.tests.test_data import keystone_data
INDEX_URL = reverse('horizon:admin:share_networks:index')
class ShareNetworksTests(test.BaseAdminViewTests):
def setUp(self):
super(self.__class__, self).setUp()
self.mock_object(
api_keystone, "tenant_list",
mock.Mock(return_value=(keystone_data.projects, None)))
# Reset taken list of projects to avoid test interference
utils.PROJECTS = {}
class FakeAZ(object):
def __init__(self, name, id):
self.name = name
self.id = id
self.created_at = timeutils.utcnow()
def test_detail_view(self):
share_net = test_data.active_share_network
share_network_subnets = share_net.share_network_subnets
sec_service = test_data.sec_service
self.mock_object(
api_manila, "share_server_list", mock.Mock(return_value=[]))
self.mock_object(
api_manila, "share_network_get", mock.Mock(return_value=share_net))
self.mock_object(
api_manila, "share_network_security_service_list",
mock.Mock(return_value=[sec_service]))
network = self.networks.first()
subnet = self.subnets.first()
self.mock_object(
api_neutron, "network_get", mock.Mock(return_value=network))
self.mock_object(
api_neutron, "subnet_get", mock.Mock(return_value=subnet))
self.mock_object(
api_manila, "availability_zone_list",
mock.Mock(return_value=[self.FakeAZ('fake_az', 'fake_az')])
)
url = reverse('horizon:admin:share_networks:share_network_detail',
args=[share_net.id])
res = self.client.get(url)
self.assertContains(res, "<h1>Share Network Details: %s</h1>"
% share_net.name,
1, 200)
self.assertContains(res, "<dd>%s</dd>" % share_net.name, 1, 200)
self.assertContains(res, "<dd>%s</dd>" % share_net.id, 1, 200)
for sub in share_network_subnets:
self.assertContains(res, "<a href=\"/admin/networks"
"/%s/detail\">%s</a>" % (
sub['neutron_net_id'],
network.name), 1, 200)
self.assertContains(res, "<a href=\"/admin/security_services"
"/%s\">%s</a>" % (sec_service.id,
sec_service.name), 1, 200)
network_get_calls = [mock.call(mock.ANY, sub['neutron_net_id']
) for sub in share_network_subnets]
subnet_get_calls = [mock.call(mock.ANY, sub['neutron_subnet_id']
) for sub in share_network_subnets]
api_neutron.network_get.assert_has_calls(network_get_calls,
any_order=True)
api_neutron.subnet_get.assert_has_calls(subnet_get_calls,
any_order=True)
self.assertNoMessages()
api_manila.share_network_security_service_list.assert_called_once_with(
mock.ANY, share_net.id)
api_manila.share_server_list.assert_called_once_with(
mock.ANY, search_opts={'share_network_id': share_net.id})
api_manila.share_network_get.assert_called_once_with(
mock.ANY, share_net.id)
def test_detail_view_network_not_found(self):
share_net = test_data.active_share_network
sec_service = test_data.sec_service
share_network_subnets = share_net.share_network_subnets
url = reverse('horizon:admin:share_networks:share_network_detail',
args=[share_net.id])
self.mock_object(
api_manila, "share_server_list", mock.Mock(return_value=[]))
self.mock_object(
api_manila, "share_network_get", mock.Mock(return_value=share_net))
self.mock_object(
api_manila, "share_network_security_service_list",
mock.Mock(return_value=[sec_service]))
self.mock_object(
api_neutron, "network_get", mock.Mock(
side_effect=exceptions.NeutronClientException('fake', 500)))
self.mock_object(
api_neutron, "subnet_get", mock.Mock(
side_effect=exceptions.NeutronClientException('fake', 500)))
self.mock_object(
api_manila, "availability_zone_list",
mock.Mock(return_value=[])
)
res = self.client.get(url)
self.assertContains(res, "<h1>Share Network Details: %s</h1>"
% share_net.name,
1, 200)
self.assertContains(res, "<dd>%s</dd>" % share_net.name, 1, 200)
self.assertContains(res, "<dd>%s</dd>" % share_net.id, 1, 200)
for sub in share_network_subnets:
self.assertNotContains(res, "<dd>%s</dd>" % sub['neutron_net_id'])
self.assertNotContains(res,
"<dd>%s</dd>" % sub['neutron_subnet_id'])
network_get_calls = [mock.call(mock.ANY, sub['neutron_net_id']
) for sub in share_network_subnets]
subnet_get_calls = [mock.call(mock.ANY, sub['neutron_subnet_id']
) for sub in share_network_subnets]
api_neutron.network_get.assert_has_calls(network_get_calls,
any_order=True)
api_neutron.subnet_get.assert_has_calls(subnet_get_calls,
any_order=True)
self.assertContains(res, "<a href=\"/admin/security_services"
"/%s\">%s</a>" % (sec_service.id,
sec_service.name), 1, 200)
self.assertNoMessages()
api_manila.share_network_security_service_list.assert_called_once_with(
mock.ANY, share_net.id)
api_manila.share_server_list.assert_called_once_with(
mock.ANY, search_opts={'share_network_id': share_net.id})
api_manila.share_network_get.assert_called_once_with(
mock.ANY, share_net.id)
def test_detail_view_with_exception(self):
url = reverse('horizon:admin:share_networks:share_network_detail',
args=[test_data.active_share_network.id])
self.mock_object(
api_manila, "share_network_get",
mock.Mock(side_effect=horizon_exceptions.NotFound(404)))
res = self.client.get(url)
self.assertRedirectsNoFollow(res, INDEX_URL)
api_manila.share_network_get.assert_called_once_with(
mock.ANY, test_data.active_share_network.id)
def test_delete_share_network(self):
share_network = test_data.inactive_share_network
formData = {'action': 'share_networks__delete__%s' % share_network.id}
self.mock_object(api_manila, "share_network_delete")
self.mock_object(
api_manila, "share_network_list",
mock.Mock(return_value=[
test_data.active_share_network,
test_data.inactive_share_network]))
res = self.client.post(INDEX_URL, formData)
self.assertRedirectsNoFollow(res, INDEX_URL)
api_keystone.tenant_list.assert_called_once_with(mock.ANY)
api_manila.share_network_delete.assert_called_once_with(
mock.ANY, share_network.id)
api_manila.share_network_list.assert_called_once_with(
mock.ANY, detailed=True, search_opts={'all_tenants': True})