# 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 unittest import mock from urllib import parse from django.conf import settings from django.test.utils import override_settings from django.urls import reverse from openstack_dashboard.api import cinder from openstack_dashboard.api import keystone from openstack_dashboard.test import helpers as test from openstack_dashboard.dashboards.admin.snapshots import tables INDEX_URL = 'horizon:admin:snapshots:index' class VolumeSnapshotsViewTests(test.BaseAdminViewTests): @test.create_mocks({cinder: ('volume_list', 'volume_snapshot_list_paged',), keystone: ('tenant_list',)}) def test_snapshots_tab(self): self.mock_volume_snapshot_list_paged.return_value = ( self.cinder_volume_snapshots.list(), False, False ) self.mock_volume_list.return_value = self.cinder_volumes.list() self.mock_tenant_list.return_value = [self.tenants.list(), False] url = reverse(INDEX_URL) res = self.client.get(parse.unquote(url)) self.assertEqual(res.status_code, 200) self.assertTemplateUsed(res, 'horizon/common/_data_table_view.html') snapshots = res.context['volume_snapshots_table'].data self.assertCountEqual(snapshots, self.cinder_volume_snapshots.list()) self.mock_volume_snapshot_list_paged.assert_called_once_with( test.IsHttpRequest(), paginate=True, marker=None, sort_dir='desc', search_opts={'all_tenants': True},) self.mock_volume_list.assert_called_once_with( test.IsHttpRequest(), search_opts={'all_tenants': True}) self.mock_tenant_list.assert_called_once_with(test.IsHttpRequest()) @test.create_mocks({cinder: ('volume_list', 'volume_snapshot_list_paged',), keystone: ('tenant_list',)}) def _test_snapshots_index_paginated(self, marker, sort_dir, snapshots, url, has_more, has_prev): self.mock_volume_snapshot_list_paged.return_value = ( snapshots, has_more, has_prev ) self.mock_volume_list.return_value = self.cinder_volumes.list() self.mock_tenant_list.return_value = [self.tenants.list(), False] res = self.client.get(parse.unquote(url)) self.assertTemplateUsed(res, 'horizon/common/_data_table_view.html') self.assertEqual(res.status_code, 200) self.mock_volume_snapshot_list_paged.assert_called_once_with( test.IsHttpRequest(), paginate=True, marker=marker, sort_dir=sort_dir, search_opts={'all_tenants': True}) self.mock_volume_list.assert_called_once_with( test.IsHttpRequest(), search_opts={'all_tenants': True}) self.mock_tenant_list(test.IsHttpRequest()) return res @override_settings(API_RESULT_PAGE_SIZE=1) def test_snapshots_index_paginated(self): size = settings.API_RESULT_PAGE_SIZE snapshots = self.cinder_volume_snapshots.list() base_url = reverse(INDEX_URL) next = tables.VolumeSnapshotsTable._meta.pagination_param # get first page expected_snapshots = snapshots[:size] res = self._test_snapshots_index_paginated( marker=None, sort_dir="desc", snapshots=expected_snapshots, url=base_url, has_more=True, has_prev=False) result = res.context['volume_snapshots_table'].data self.assertCountEqual(result, expected_snapshots) # get second page expected_snapshots = snapshots[size:2 * size] marker = expected_snapshots[0].id url = base_url + "?%s=%s" % (next, marker) res = self._test_snapshots_index_paginated( marker=marker, sort_dir="desc", snapshots=expected_snapshots, url=url, has_more=True, has_prev=True) result = res.context['volume_snapshots_table'].data self.assertCountEqual(result, expected_snapshots) # get last page expected_snapshots = snapshots[-size:] marker = expected_snapshots[0].id url = base_url + "?%s=%s" % (next, marker) res = self._test_snapshots_index_paginated( marker=marker, sort_dir="desc", snapshots=expected_snapshots, url=url, has_more=False, has_prev=True) result = res.context['volume_snapshots_table'].data self.assertCountEqual(result, expected_snapshots) @override_settings(API_RESULT_PAGE_SIZE=1) def test_snapshots_index_paginated_prev(self): size = settings.API_RESULT_PAGE_SIZE max_snapshots = self.cinder_volume_snapshots.list() base_url = reverse('horizon:admin:snapshots:index') prev = tables.VolumeSnapshotsTable._meta.prev_pagination_param # prev from some page expected_snapshots = max_snapshots[size:2 * size] marker = max_snapshots[0].id url = base_url + "?%s=%s" % (prev, marker) res = self._test_snapshots_index_paginated( marker=marker, sort_dir="asc", snapshots=expected_snapshots, url=url, has_more=False, has_prev=True) snapshots = res.context['volume_snapshots_table'].data self.assertCountEqual(snapshots, expected_snapshots) # back to first page expected_snapshots = max_snapshots[:size] marker = max_snapshots[0].id url = base_url + "?%s=%s" % (prev, marker) res = self._test_snapshots_index_paginated( marker=marker, sort_dir="asc", snapshots=expected_snapshots, url=url, has_more=True, has_prev=False) snapshots = res.context['volume_snapshots_table'].data self.assertCountEqual(snapshots, expected_snapshots) @test.create_mocks({cinder: ('volume_snapshot_reset_state', 'volume_snapshot_get')}) def test_update_snapshot_status(self): snapshot = self.cinder_volume_snapshots.first() state = 'error' self.mock_volume_snapshot_get.return_value = snapshot self.mock_volume_snapshot_reset_state.return_value = None formData = {'status': state} url = reverse('horizon:admin:snapshots:update_status', args=(snapshot.id,)) res = self.client.post(url, formData) self.assertNoFormErrors(res) self.mock_volume_snapshot_get.assert_called_once_with( test.IsHttpRequest(), snapshot.id) self.mock_volume_snapshot_reset_state.assert_called_once_with( test.IsHttpRequest(), snapshot.id, state) @test.create_mocks({cinder: ('volume_snapshot_get', 'volume_get')}) def test_get_volume_snapshot_details(self): volume = self.cinder_volumes.first() snapshot = self.cinder_volume_snapshots.first() self.mock_volume_get.side_effect = [volume, volume] self.mock_volume_snapshot_get.return_value = snapshot url = reverse('horizon:admin:snapshots:detail', args=[snapshot.id]) res = self.client.get(url) self.assertTemplateUsed(res, 'horizon/common/_detail.html') self.assertEqual(res.context['snapshot'].id, snapshot.id) self.mock_volume_get.assert_has_calls([ mock.call(test.IsHttpRequest(), volume.id), mock.call(test.IsHttpRequest(), snapshot.volume_id), ]) self.assertEqual(2, self.mock_volume_get.call_count) self.mock_volume_snapshot_get(test.IsHttpRequest(), snapshot.id) @test.create_mocks({cinder: ('volume_snapshot_get',)}) def test_get_volume_snapshot_details_with_snapshot_exception(self): # Test to verify redirect if get volume snapshot fails snapshot = self.cinder_volume_snapshots.first() self.mock_volume_snapshot_get.side_effect = self.exceptions.cinder url = reverse('horizon:admin:snapshots:detail', args=[snapshot.id]) res = self.client.get(url) self.assertNoFormErrors(res) self.assertMessageCount(error=1) self.assertRedirectsNoFollow(res, reverse(INDEX_URL)) self.mock_volume_snapshot_get.assert_called_once_with( test.IsHttpRequest(), snapshot.id) @test.create_mocks({cinder: ('volume_snapshot_get', 'volume_get')}) def test_get_volume_snapshot_details_with_volume_exception(self): # Test to verify redirect if get volume fails volume = self.cinder_volumes.first() snapshot = self.cinder_volume_snapshots.first() self.mock_volume_get.side_effect = self.exceptions.cinder self.mock_volume_snapshot_get.return_value = snapshot url = reverse('horizon:admin:snapshots:detail', args=[snapshot.id]) res = self.client.get(url) self.assertNoFormErrors(res) self.assertMessageCount(error=1) self.assertRedirectsNoFollow(res, reverse(INDEX_URL)) self.mock_volume_get.assert_called_once_with( test.IsHttpRequest(), volume.id) self.mock_volume_snapshot_get.assert_called_once_with( test.IsHttpRequest(), snapshot.id) @test.create_mocks({cinder: ('volume_snapshot_get',)}) def test_update_volume_status_get(self): snapshot = self.cinder_volume_snapshots.first() self.mock_volume_snapshot_get.return_value = snapshot url = reverse('horizon:admin:snapshots:update_status', args=[snapshot.id]) res = self.client.get(url) status_option = "" % snapshot.status self.assertNotContains(res, status_option) self.mock_volume_snapshot_get.assert_called_once_with( test.IsHttpRequest(), snapshot.id)