Merge "pytest-based selenium tests add project create, delete tests"

This commit is contained in:
Zuul 2023-10-09 14:51:08 +00:00 committed by Gerrit Code Review
commit 8115d9afd1
1 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,76 @@
# 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 oslo_utils import uuidutils
import pytest
from openstack_dashboard.test.selenium import widgets
@pytest.fixture
def project_name():
return 'horizon_project_%s' % uuidutils.generate_uuid(dashed=False)
@pytest.fixture
def new_project(project_name, openstack_admin):
project = openstack_admin.create_project(
name=project_name,
domain_id="default"
)
yield project
openstack_admin.delete_project(project)
@pytest.fixture
def clear_project(project_name, openstack_admin):
yield None
openstack_admin.delete_project(
openstack_admin.identity.find_project(project_name).id)
def test_create_project(login, driver, project_name, openstack_admin,
config, clear_project):
login('admin')
url = '/'.join((
config.dashboard.dashboard_url,
'identity',
))
driver.get(url)
driver.find_element_by_link_text("Create Project").click()
project_form = driver.find_element_by_css_selector("form .modal-content")
project_form.find_element_by_id("id_name").send_keys(project_name)
project_form.find_element_by_css_selector(
".btn-primary[value='Create Project']").click()
messages = widgets.get_and_dismiss_messages(driver)
assert f'Success: Created new project "{project_name}".' in messages
assert openstack_admin.identity.find_project(project_name) is not None
def test_delete_project(login, driver, project_name, openstack_admin,
new_project, config):
login('admin')
url = '/'.join((
config.dashboard.dashboard_url,
'identity',
))
driver.get(url)
rows = driver.find_elements_by_css_selector(
f"table#tenants tr[data-display='{project_name}']")
assert len(rows) == 1
actions_column = rows[0].find_element_by_css_selector("td.actions_column")
widgets.select_from_dropdown(actions_column, "Delete Project")
widgets.confirm_modal(driver)
messages = widgets.get_and_dismiss_messages(driver)
assert f"Success: Deleted Project: {project_name}" in messages
assert openstack_admin.identity.find_project(project_name) is None