summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadomir Dopieralski <openstack@dopieralski.pl>2022-06-28 17:17:31 +0200
committerTatiana Ovchinnikova <t.v.ovtchinnikova@gmail.com>2023-02-17 20:23:48 +0000
commit4b0665d70d3786bbd293112b8ea6bf41b1e040bd (patch)
tree5a6aa0848b4b5a950750b58c0a71be398408fb3a
parent76a905a7ed7c0af145a97c8d32531ad97a4b4adb (diff)
downloadhorizon-4b0665d70d3786bbd293112b8ea6bf41b1e040bd.tar.gz
Add setup and teardown to the volumes pagination tests
For now just delete the old volumes at the start Change-Id: I013da554f58e1638178d3655459c9742fd7f85ba (cherry picked from commit 81edf08676f2651f4343498c23d93b000fca7127)
-rw-r--r--openstack_dashboard/test/integration_tests/tests/test_volumes.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/openstack_dashboard/test/integration_tests/tests/test_volumes.py b/openstack_dashboard/test/integration_tests/tests/test_volumes.py
index 95108134b..ab38bfbd8 100644
--- a/openstack_dashboard/test/integration_tests/tests/test_volumes.py
+++ b/openstack_dashboard/test/integration_tests/tests/test_volumes.py
@@ -101,6 +101,15 @@ class TestVolumesBasic(helpers.TestCase):
12) Delete created volumes
"""
volumes_page = self.home_pg.go_to_project_volumes_volumespage()
+
+ # delete any old instances
+ garbage = volumes_page.volumes_table.get_column_data(
+ name_column='Name')
+ if garbage:
+ volumes_page.delete_volumes(garbage)
+ self.assertTrue(
+ volumes_page.find_message_and_dismiss(messages.INFO))
+
count = 3
items_per_page = 1
volumes_names = ["{0}_{1}".format(self.VOLUME_NAME, i) for i in