
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>
256 lines
11 KiB
Python
256 lines
11 KiB
Python
# Copyright (c) 2014 NetApp, 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 neutronclient.client import exceptions
|
|
from openstack_auth import policy
|
|
from openstack_dashboard import api
|
|
from oslo_utils import timeutils
|
|
from unittest import mock
|
|
|
|
from manila_ui.api import manila as api_manila
|
|
from manila_ui.dashboards import utils
|
|
from manila_ui.tests.dashboards.project import test_data
|
|
from manila_ui.tests import helpers as test
|
|
|
|
INDEX_URL = reverse('horizon:project:share_networks:index')
|
|
|
|
|
|
class ShareNetworksViewTests(test.TestCase):
|
|
class FakeAZ(object):
|
|
def __init__(self, name, id):
|
|
self.name = name
|
|
self.id = id
|
|
self.created_at = timeutils.utcnow()
|
|
|
|
def test_create_share_network(self):
|
|
share_net = test_data.active_share_network
|
|
|
|
url = reverse('horizon:project:share_networks:share_network_create')
|
|
neutron_net_id = self.networks.first().id
|
|
sanitized_net_id = utils.transform_dashed_name(neutron_net_id)
|
|
formData = {
|
|
'share_network_name': 'new_share_network',
|
|
'share_network_description': 'This is test share network',
|
|
'method': 'CreateForm',
|
|
'neutron_net_id': utils.transform_dashed_name(neutron_net_id),
|
|
'availability_zone': 'fake_az',
|
|
f'subnet-choices-{sanitized_net_id}':
|
|
self.networks.first().subnets[0].id,
|
|
}
|
|
|
|
self.mock_object(
|
|
api.neutron, "subnet_list",
|
|
mock.Mock(return_value=self.subnets.list()))
|
|
self.mock_object(
|
|
api.neutron, "network_list",
|
|
mock.Mock(return_value=self.networks.list()))
|
|
self.mock_object(
|
|
api_manila, "share_network_create",
|
|
mock.Mock(return_value=share_net))
|
|
self.mock_object(
|
|
api_manila, "availability_zone_list",
|
|
mock.Mock(return_value=[self.FakeAZ('fake_az', 'fake_az')])
|
|
)
|
|
|
|
res = self.client.post(url, formData)
|
|
|
|
self.assertNoFormErrors(res)
|
|
self.assertMessageCount(error=0, warning=0)
|
|
self.assertRedirectsNoFollow(res, INDEX_URL)
|
|
api_manila.share_network_create.assert_called_once_with(
|
|
mock.ANY, name=formData['share_network_name'],
|
|
neutron_net_id=neutron_net_id,
|
|
neutron_subnet_id=self.networks.first().subnets[0].id,
|
|
description=formData['share_network_description'],
|
|
availability_zone='fake_az')
|
|
api_manila.availability_zone_list.assert_called_once_with(mock.ANY)
|
|
api.neutron.network_list.assert_called_once_with(mock.ANY)
|
|
api.neutron.subnet_list.assert_has_calls([
|
|
mock.call(mock.ANY, network_id=network.id)
|
|
for network in self.networks.list()
|
|
], any_order=True)
|
|
|
|
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, share_network]))
|
|
|
|
res = self.client.post(INDEX_URL, formData)
|
|
|
|
self.assertRedirectsNoFollow(res, INDEX_URL)
|
|
api_manila.share_network_list.assert_called_once_with(
|
|
mock.ANY, detailed=True)
|
|
api_manila.share_network_delete.assert_called_once_with(
|
|
mock.ANY, share_network.id)
|
|
|
|
def test_detail_view(self):
|
|
share_net = test_data.active_share_network
|
|
sec_service = test_data.sec_service
|
|
share_network_subnets = share_net.share_network_subnets
|
|
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:project:share_networks:share_network_detail',
|
|
args=[share_net.id])
|
|
|
|
res = self.client.get(url)
|
|
|
|
self.assertNoMessages()
|
|
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=\"/project/networks"
|
|
"/%s/detail\">%s</a>" % (
|
|
sub['neutron_net_id'],
|
|
network.name), 1, 200)
|
|
self.assertContains(res, "<a href=\"/project/networks/subnets"
|
|
"/%s/detail\">%s</a>" % (
|
|
sub['neutron_subnet_id'],
|
|
subnet['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.assertContains(res, "<a href=\"/project/security_services"
|
|
"/%s\">%s</a>" % (sec_service.id,
|
|
sec_service.name), 1, 200)
|
|
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:project: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=\"/project/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_update_share_network(self):
|
|
share_net = test_data.inactive_share_network
|
|
formData = {
|
|
'method': 'UpdateForm',
|
|
'name': share_net.name,
|
|
'description': share_net.description,
|
|
}
|
|
url = reverse('horizon:project:share_networks:share_network_update',
|
|
args=[share_net.id])
|
|
self.mock_object(api_manila, "share_network_update")
|
|
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=[test_data.sec_service]))
|
|
self.mock_object(
|
|
api_manila, "security_service_list",
|
|
mock.Mock(return_value=[test_data.sec_service]))
|
|
self.mock_object(
|
|
policy, 'check',
|
|
mock.Mock(side_effect=(lambda *args, **kwargs: True)))
|
|
|
|
res = self.client.post(url, formData)
|
|
|
|
self.assertRedirectsNoFollow(res, INDEX_URL)
|
|
api_manila.share_network_security_service_list.assert_called_once_with(
|
|
mock.ANY, share_net.id)
|
|
api_manila.security_service_list.assert_has_calls([
|
|
mock.call(mock.ANY),
|
|
mock.call(mock.ANY, search_opts={'share_network_id': share_net.id})
|
|
])
|
|
api_manila.share_network_get.assert_called_once_with(
|
|
mock.ANY, share_net.id)
|
|
api_manila.share_network_update.assert_called_once_with(
|
|
mock.ANY,
|
|
share_net.id,
|
|
name=formData['name'],
|
|
description=formData['description'])
|
|
self.assertTrue(policy.check.called)
|