From 26316e6b438d818b7db8c8ef8268e04be3f8499d Mon Sep 17 00:00:00 2001 From: Jan Jasek Date: Mon, 16 Oct 2023 17:04:18 +0200 Subject: [PATCH] pytest-based selenium tests add compute, volume update defaults tests test_update_compute_defaults test_update_volume_defaults Change-Id: I77c2eed41a6462311991caddf7a4bc4ce8c8e148 --- .../selenium/integration/test_defaults.py | 101 ++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 openstack_dashboard/test/selenium/integration/test_defaults.py diff --git a/openstack_dashboard/test/selenium/integration/test_defaults.py b/openstack_dashboard/test/selenium/integration/test_defaults.py new file mode 100644 index 0000000000..99ee0ca942 --- /dev/null +++ b/openstack_dashboard/test/selenium/integration/test_defaults.py @@ -0,0 +1,101 @@ +# 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 random + +import pytest + +from openstack_dashboard.test.selenium import widgets + + +@pytest.fixture +def default_compute_quotas(openstack_admin): + default_quotas = openstack_admin.compute.get( + "/os-quota-class-sets/default").json() + yield None + openstack_admin.compute.put( + "/os-quota-class-sets/default", + json={"quota_class_set": + {"cores": default_quotas["quota_class_set"]["cores"], + "instances": default_quotas["quota_class_set"]["instances"], + } + }) + + +@pytest.fixture +def default_volume_quotas(openstack_admin): + default_quotas = openstack_admin.block_storage.get( + "/os-quota-class-sets/default").json() + yield None + openstack_admin.block_storage.put( + "/os-quota-class-sets/default", + json={"quota_class_set": + {"volumes": default_quotas["quota_class_set"]["volumes"], + "snapshots": default_quotas["quota_class_set"]["snapshots"] + } + }) + + +def test_update_compute_defaults(login, driver, openstack_admin, config, + default_compute_quotas): + number_of_instances = random.randint(101, 10001) + number_of_cores = random.randint(101, 10001) + login('admin') + url = '/'.join(( + config.dashboard.dashboard_url, + 'admin', + 'defaults', + )) + driver.get(url) + driver.find_element_by_link_text("Update Defaults").click() + defaults_form = driver.find_element_by_css_selector("form .modal-content") + defaults_form.find_element_by_id("id_instances").clear() + defaults_form.find_element_by_id("id_instances").send_keys( + number_of_instances) + defaults_form.find_element_by_id("id_cores").clear() + defaults_form.find_element_by_id("id_cores").send_keys(number_of_cores) + defaults_form.find_element_by_css_selector(".btn-primary").click() + messages = widgets.get_and_dismiss_messages(driver) + assert f'Success: Default quotas updated.' in messages + new_quotas = openstack_admin.compute.get( + "/os-quota-class-sets/default").json() + assert( + new_quotas["quota_class_set"]["instances"] == number_of_instances and + new_quotas["quota_class_set"]["cores"] == number_of_cores) + + +def test_update_volume_defaults(login, driver, openstack_admin, config, + default_volume_quotas): + number_of_volumes = random.randint(101, 10001) + number_of_snapshots = random.randint(101, 10001) + login('admin') + url = '/'.join(( + config.dashboard.dashboard_url, + 'admin', + 'defaults', + )) + driver.get(url) + driver.find_element_by_link_text("Volume Quotas").click() + driver.find_element_by_link_text("Update Defaults").click() + defaults_form = driver.find_element_by_css_selector("form .modal-content") + defaults_form.find_element_by_id("id_volumes").clear() + defaults_form.find_element_by_id("id_volumes").send_keys(number_of_volumes) + defaults_form.find_element_by_id("id_snapshots").clear() + defaults_form.find_element_by_id("id_snapshots").send_keys( + number_of_snapshots) + defaults_form.find_element_by_css_selector(".btn-primary").click() + messages = widgets.get_and_dismiss_messages(driver) + assert f'Success: Default quotas updated.' in messages + new_quotas = openstack_admin.block_storage.get( + "/os-quota-class-sets/default").json() + assert(new_quotas["quota_class_set"]["volumes"] == number_of_volumes and + new_quotas["quota_class_set"]["snapshots"] == number_of_snapshots)