|
|
|
@ -9,7 +9,6 @@
|
|
|
|
|
# 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 pytest
|
|
|
|
|
|
|
|
|
|
from openstack_dashboard.test.integration_tests import helpers
|
|
|
|
|
from openstack_dashboard.test.integration_tests.regions import messages
|
|
|
|
@ -50,7 +49,6 @@ class TestInstances(helpers.TestCase):
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.ERROR))
|
|
|
|
|
self.assertTrue(instances_page.is_instance_deleted(self.INSTANCE_NAME))
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skip(reason="Bug 1774697")
|
|
|
|
|
def test_instances_pagination(self):
|
|
|
|
|
"""This test checks instance pagination
|
|
|
|
|
|
|
|
|
@ -87,20 +85,20 @@ class TestInstances(helpers.TestCase):
|
|
|
|
|
instances_page.create_instance(self.INSTANCE_NAME,
|
|
|
|
|
instance_count=instance_count)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.is_instance_active(instance_list[1]))
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
first_page_definition, sorting=True)
|
|
|
|
|
first_page_definition, sorting=True, name_column="Instance Name")
|
|
|
|
|
|
|
|
|
|
instances_page.instances_table.turn_next_page()
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
second_page_definition, sorting=True)
|
|
|
|
|
second_page_definition, sorting=True, name_column="Instance Name")
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
first_page_definition, sorting=True)
|
|
|
|
|
first_page_definition, sorting=True, name_column="Instance Name")
|
|
|
|
|
|
|
|
|
|
settings_page = self.home_pg.go_to_settings_usersettingspage()
|
|
|
|
|
settings_page.change_pagesize()
|
|
|
|
@ -110,10 +108,9 @@ class TestInstances(helpers.TestCase):
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.delete_instances(instance_list)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.are_instances_deleted(instance_list))
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skip(reason="Bug 1774697")
|
|
|
|
|
def test_instances_pagination_and_filtration(self):
|
|
|
|
|
"""This test checks instance pagination and filtration
|
|
|
|
|
|
|
|
|
@ -157,7 +154,207 @@ class TestInstances(helpers.TestCase):
|
|
|
|
|
instances_page.create_instance(self.INSTANCE_NAME,
|
|
|
|
|
instance_count=instance_count)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.is_instance_active(instance_list[1]))
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.instances_table.set_filter_value('name')
|
|
|
|
|
instances_page.instances_table.filter(instance_list[1])
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
filter_first_page_definition, sorting=True,
|
|
|
|
|
name_column="Instance Name")
|
|
|
|
|
|
|
|
|
|
instances_page.instances_table.filter(instance_list[0])
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
second_page_definition, sorting=True,
|
|
|
|
|
name_column="Instance Name")
|
|
|
|
|
|
|
|
|
|
instances_page.instances_table.filter(self.INSTANCE_NAME)
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
first_page_definition, sorting=True,
|
|
|
|
|
name_column="Instance Name")
|
|
|
|
|
instances_page.instances_table.filter('')
|
|
|
|
|
|
|
|
|
|
settings_page = self.home_pg.go_to_settings_usersettingspage()
|
|
|
|
|
settings_page.change_pagesize()
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
settings_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.delete_instances(instance_list)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.are_instances_deleted(instance_list))
|
|
|
|
|
|
|
|
|
|
def test_filter_instances(self):
|
|
|
|
|
"""This test checks filtering of instances by Instance Name
|
|
|
|
|
|
|
|
|
|
Steps:
|
|
|
|
|
1) Login to Horizon dashboard as regular user
|
|
|
|
|
2) Go to Project > Compute > Instances
|
|
|
|
|
3) Create 2 instances
|
|
|
|
|
4) Go to appropriate page (depends on user)
|
|
|
|
|
5) Use filter by Instance Name
|
|
|
|
|
6) Check that filtered table has one instance only (which name is equal
|
|
|
|
|
to filter value) and no other instances in the table
|
|
|
|
|
7) Check that filtered table has both instances (search by common part
|
|
|
|
|
of instance names)
|
|
|
|
|
8) Set nonexistent instance name. Check that 0 rows are displayed
|
|
|
|
|
9) Clear filter and delete instances via proper page (depends on user)
|
|
|
|
|
"""
|
|
|
|
|
instance_count = 2
|
|
|
|
|
instance_list = ["{0}-{1}".format(self.INSTANCE_NAME, item)
|
|
|
|
|
for item in range(1, instance_count + 1)]
|
|
|
|
|
|
|
|
|
|
instances_page = self.home_pg.go_to_project_compute_instancespage()
|
|
|
|
|
instances_page.create_instance(self.INSTANCE_NAME,
|
|
|
|
|
instance_count=instance_count)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.is_instance_active(instance_list[0]))
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.instances_table.set_filter_value('name')
|
|
|
|
|
|
|
|
|
|
instances_page.instances_table.filter(instance_list[0])
|
|
|
|
|
self.assertTrue(instances_page.is_instance_present(instance_list[0]))
|
|
|
|
|
for instance in instance_list[1:]:
|
|
|
|
|
self.assertFalse(instances_page.is_instance_present(instance))
|
|
|
|
|
|
|
|
|
|
instances_page.instances_table.filter(self.INSTANCE_NAME)
|
|
|
|
|
for instance in instance_list:
|
|
|
|
|
self.assertTrue(instances_page.is_instance_present(instance))
|
|
|
|
|
|
|
|
|
|
nonexistent_instance_name = "{0}_test".format(self.INSTANCE_NAME)
|
|
|
|
|
instances_page.instances_table.filter(nonexistent_instance_name)
|
|
|
|
|
self.assertEqual(instances_page.instances_table.rows, [])
|
|
|
|
|
instances_page.instances_table.filter('')
|
|
|
|
|
|
|
|
|
|
instances_page.delete_instances(instance_list)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.are_instances_deleted(instance_list))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestAdminInstances(helpers.AdminTestCase, TestInstances):
|
|
|
|
|
INSTANCE_NAME = helpers.gen_random_resource_name('instance',
|
|
|
|
|
timestamp=False)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def instances_page(self):
|
|
|
|
|
self.home_pg.go_to_admin_overviewpage()
|
|
|
|
|
return self.home_pg.go_to_admin_compute_instancespage()
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def instance_table_name_column(self):
|
|
|
|
|
return 'Name'
|
|
|
|
|
|
|
|
|
|
def test_instances_pagination(self):
|
|
|
|
|
"""This test checks instance pagination
|
|
|
|
|
|
|
|
|
|
Steps:
|
|
|
|
|
1) Login to Horizon Dashboard as admin
|
|
|
|
|
2) Navigate to user settings page
|
|
|
|
|
3) Change 'Items Per Page' value to 1
|
|
|
|
|
4) Go to Project > Compute > Instances page
|
|
|
|
|
5) Create 2 instances
|
|
|
|
|
6) Go to Admin > Compute > Instances page
|
|
|
|
|
7) Check that only 'Next' link is available, only one instance is
|
|
|
|
|
available (and it has correct name) on the first page
|
|
|
|
|
8) Click 'Next' and check that on the second page only one instance is
|
|
|
|
|
available (and it has correct name), there is no 'Next' link on page
|
|
|
|
|
9) Go to user settings page and restore 'Items Per Page'
|
|
|
|
|
10) Delete created instances via proper page
|
|
|
|
|
"""
|
|
|
|
|
items_per_page = 1
|
|
|
|
|
instance_count = 2
|
|
|
|
|
instance_list = ["{0}-{1}".format(self.INSTANCE_NAME, item)
|
|
|
|
|
for item in range(1, instance_count + 1)]
|
|
|
|
|
first_page_definition = {'Next': True, 'Prev': False,
|
|
|
|
|
'Count': items_per_page,
|
|
|
|
|
'Names': [instance_list[1]]}
|
|
|
|
|
second_page_definition = {'Next': False, 'Prev': True,
|
|
|
|
|
'Count': items_per_page,
|
|
|
|
|
'Names': [instance_list[0]]}
|
|
|
|
|
settings_page = self.home_pg.go_to_settings_usersettingspage()
|
|
|
|
|
settings_page.change_pagesize(items_per_page)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
settings_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
|
|
|
|
|
instances_page = self.home_pg.go_to_project_compute_instancespage()
|
|
|
|
|
instances_page.create_instance(self.INSTANCE_NAME,
|
|
|
|
|
instance_count=instance_count)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.is_instance_active(instance_list[1]))
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
first_page_definition, sorting=True)
|
|
|
|
|
|
|
|
|
|
instances_page.instances_table.turn_next_page()
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
second_page_definition, sorting=True)
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.instances_table.assert_definition(
|
|
|
|
|
first_page_definition, sorting=True)
|
|
|
|
|
|
|
|
|
|
settings_page = self.home_pg.go_to_settings_usersettingspage()
|
|
|
|
|
settings_page.change_pagesize()
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
settings_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.delete_instances(instance_list)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.are_instances_deleted(instance_list))
|
|
|
|
|
|
|
|
|
|
def test_instances_pagination_and_filtration(self):
|
|
|
|
|
"""This test checks instance pagination and filtration
|
|
|
|
|
|
|
|
|
|
Steps:
|
|
|
|
|
1) Login to Horizon Dashboard as admin
|
|
|
|
|
2) Go to to user settings page
|
|
|
|
|
3) Change 'Items Per Page' value to 1
|
|
|
|
|
4) Go to Project > Compute > Instances page
|
|
|
|
|
5) Create 2 instances
|
|
|
|
|
6) Go to Admin > Compute > Instances page
|
|
|
|
|
7) Check filter by Name of the first and the second instance in order
|
|
|
|
|
to have one instance in the list (and it should have correct name)
|
|
|
|
|
and no 'Next' link is available
|
|
|
|
|
8) Check filter by common part of Name of in order to have one instance
|
|
|
|
|
in the list (and it should have correct name) and 'Next' link is
|
|
|
|
|
available on the first page and is not available on the second page
|
|
|
|
|
9) Go to user settings page and restore 'Items Per Page'
|
|
|
|
|
10) Delete created instances via proper page
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
items_per_page = 1
|
|
|
|
|
instance_count = 2
|
|
|
|
|
instance_list = ["{0}-{1}".format(self.INSTANCE_NAME, item)
|
|
|
|
|
for item in range(1, instance_count + 1)]
|
|
|
|
|
first_page_definition = {'Next': True, 'Prev': False,
|
|
|
|
|
'Count': items_per_page,
|
|
|
|
|
'Names': [instance_list[1]]}
|
|
|
|
|
second_page_definition = {'Next': False, 'Prev': False,
|
|
|
|
|
'Count': items_per_page,
|
|
|
|
|
'Names': [instance_list[0]]}
|
|
|
|
|
filter_first_page_definition = {'Next': False, 'Prev': False,
|
|
|
|
|
'Count': items_per_page,
|
|
|
|
|
'Names': [instance_list[1]]}
|
|
|
|
|
|
|
|
|
|
settings_page = self.home_pg.go_to_settings_usersettingspage()
|
|
|
|
|
settings_page.change_pagesize(items_per_page)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
settings_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
|
|
|
|
|
instances_page = self.home_pg.go_to_project_compute_instancespage()
|
|
|
|
|
instances_page.create_instance(self.INSTANCE_NAME,
|
|
|
|
|
instance_count=instance_count)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.is_instance_active(instance_list[1]))
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
@ -183,73 +380,5 @@ class TestInstances(helpers.TestCase):
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.delete_instances(instance_list)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.INFO))
|
|
|
|
|
self.assertTrue(instances_page.are_instances_deleted(instance_list))
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skip(reason="Bug 1774697")
|
|
|
|
|
def test_filter_instances(self):
|
|
|
|
|
"""This test checks filtering of instances by Instance Name
|
|
|
|
|
|
|
|
|
|
Steps:
|
|
|
|
|
1) Login to Horizon dashboard as regular user
|
|
|
|
|
2) Go to Project > Compute > Instances
|
|
|
|
|
3) Create 2 instances
|
|
|
|
|
4) Go to appropriate page (depends on user)
|
|
|
|
|
5) Use filter by Instance Name
|
|
|
|
|
6) Check that filtered table has one instance only (which name is equal
|
|
|
|
|
to filter value) and no other instances in the table
|
|
|
|
|
7) Check that filtered table has both instances (search by common part
|
|
|
|
|
of instance names)
|
|
|
|
|
8) Set nonexistent instance name. Check that 0 rows are displayed
|
|
|
|
|
9) Clear filter and delete instances via proper page (depends on user)
|
|
|
|
|
"""
|
|
|
|
|
instance_count = 2
|
|
|
|
|
instance_list = ["{0}-{1}".format(self.INSTANCE_NAME, item)
|
|
|
|
|
for item in range(1, instance_count + 1)]
|
|
|
|
|
|
|
|
|
|
instances_page = self.home_pg.go_to_project_compute_instancespage()
|
|
|
|
|
instances_page.create_instance(self.INSTANCE_NAME,
|
|
|
|
|
instance_count=instance_count)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
self.assertTrue(instances_page.is_instance_active(instance_list[0]))
|
|
|
|
|
|
|
|
|
|
instances_page = self.instances_page
|
|
|
|
|
instances_page.instances_table.set_filter_value('name')
|
|
|
|
|
|
|
|
|
|
instances_page.instances_table.filter(instance_list[0])
|
|
|
|
|
self.assertTrue(instances_page.is_instance_present(instance_list[0]))
|
|
|
|
|
for instance in instance_list[1:]:
|
|
|
|
|
self.assertFalse(instances_page.is_instance_present(instance))
|
|
|
|
|
|
|
|
|
|
instances_page.instances_table.filter(self.INSTANCE_NAME)
|
|
|
|
|
for instance in instance_list:
|
|
|
|
|
self.assertTrue(instances_page.is_instance_present(instance))
|
|
|
|
|
|
|
|
|
|
nonexistent_instance_name = "{0}_test".format(self.INSTANCE_NAME)
|
|
|
|
|
instances_page.instances_table.filter(nonexistent_instance_name)
|
|
|
|
|
self.assertEqual(instances_page.instances_table.rows, [])
|
|
|
|
|
instances_page.instances_table.filter('')
|
|
|
|
|
|
|
|
|
|
instances_page.delete_instances(instance_list)
|
|
|
|
|
self.assertTrue(
|
|
|
|
|
instances_page.find_message_and_dismiss(messages.SUCCESS))
|
|
|
|
|
self.assertTrue(instances_page.are_instances_deleted(instance_list))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestAdminInstances(helpers.AdminTestCase, TestInstances):
|
|
|
|
|
INSTANCE_NAME = helpers.gen_random_resource_name('instance',
|
|
|
|
|
timestamp=False)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def instances_page(self):
|
|
|
|
|
self.home_pg.go_to_admin_overviewpage()
|
|
|
|
|
return self.home_pg.go_to_admin_compute_instancespage()
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def instance_table_name_column(self):
|
|
|
|
|
return 'Name'
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skip(reason="Bug 1774697")
|
|
|
|
|
def test_instances_pagination_and_filtration(self):
|
|
|
|
|
super().test_instances_pagination_and_filtration()
|
|
|
|
|