9e1eb5f5d7
At the current moment user can not suspend an instance from the instance "Details" page if the instance does not belong to the first page of the instances list. This is fixed. Co-Authored-By: Ivan Kolodyazhny <e0ne@e0ne.info> Co-Authored-By: Vladislav Kuzmin <vkuzmin@mirantis.com> Change-Id: I4d805e4a65e838242af38677cbb9efefc498a96f Closes-Bug: #1553142
47 lines
1.9 KiB
Python
47 lines
1.9 KiB
Python
# 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.
|
|
|
|
import six
|
|
|
|
from openstack_dashboard.test import helpers as test
|
|
from openstack_dashboard import views
|
|
|
|
|
|
class DashboardViewsTest(test.TestCase):
|
|
def test_get_url_with_pagination(self):
|
|
req = self.request
|
|
url_string = 'horizon:project:instances:index'
|
|
url = views.get_url_with_pagination(req, None, None, url_string, None)
|
|
self.assertEqual(six.text_type('/project/instances/'), url)
|
|
|
|
def test_get_url_with_pagination_with_if(self):
|
|
req = self.request
|
|
url_string = 'horizon:project:instances:detail'
|
|
url = views.get_url_with_pagination(req, None, None, url_string, 'id')
|
|
self.assertEqual(six.text_type('/project/instances/id/'), url)
|
|
|
|
def test_get_url_with_pagination_next(self):
|
|
req = self.request
|
|
url_string = 'horizon:project:instances:index'
|
|
req.GET.update({'next': 'id'})
|
|
url = views.get_url_with_pagination(
|
|
req, 'next', None, url_string, None)
|
|
self.assertEqual(six.text_type('/project/instances/?next=id'), url)
|
|
|
|
def test_get_url_with_pagination_prev(self):
|
|
req = self.request
|
|
url_string = 'horizon:project:instances:index'
|
|
req.GET.update({'prev': 'id'})
|
|
url = views.get_url_with_pagination(
|
|
req, None, 'prev', url_string, None)
|
|
self.assertEqual(six.text_type('/project/instances/?prev=id'), url)
|