8607ff7d81
This moves review02 out of the review-staging group and into the main review group. At this point, review01.openstack.org is inactive so we can remove all references to openstack.org from the groups. We update the system-config job to run against a focal production server, and remove the unneeded rsync setup used to move data. This additionally enables replication; this should be a no-op when applied as part of the transition process is to manually apply this, so that DNS setup can pull zone changes from opendev.org. It also switches to the mysql connector, as noted inline we found some issues with mariadb. Note backups follow in a separate step to avoid doing too much at once, hence dropping the backup group from the testing list. Change-Id: I7ee3e3051ea8f3237fd5f6bf1dcc3e5996c16d10
79 lines
2.9 KiB
Python
79 lines
2.9 KiB
Python
# Copyright 2018 Red Hat, Inc.
|
|
#
|
|
# 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 selenium import webdriver
|
|
from selenium.webdriver.support.ui import WebDriverWait
|
|
from selenium.common.exceptions import TimeoutException
|
|
import time
|
|
|
|
testinfra_hosts = [
|
|
'review02.opendev.org',
|
|
]
|
|
|
|
|
|
def test_gerrit_listening(host):
|
|
gerrit_web = host.socket("tcp://:::8081")
|
|
assert gerrit_web.is_listening
|
|
|
|
def test_gerrit_x_project_clone(host):
|
|
cmd = host.run(
|
|
'git clone http://localhost:8081/x/test-project /tmp/test-project')
|
|
assert "Cloning into '/tmp/test-project'..." in cmd.stderr
|
|
assert cmd.succeeded
|
|
|
|
def test_gerrit_screenshot(host):
|
|
driver = webdriver.Remote(
|
|
command_executor='http://%s:4444/wd/hub' % (host.backend.get_hostname()),
|
|
desired_capabilities=webdriver.DesiredCapabilities.FIREFOX)
|
|
|
|
try:
|
|
driver.get("http://localhost:8081")
|
|
WebDriverWait(driver, 30).until(lambda driver: driver.execute_script(
|
|
'return document.readyState') == 'complete')
|
|
# NOTE(ianw): The page doesn't really seem to be complete at
|
|
# this point, not sure what to listen for...
|
|
time.sleep(5)
|
|
driver.save_screenshot("/var/log/screenshots/gerrit-main-page.png")
|
|
|
|
for change in (1, 2):
|
|
driver.get("http://localhost:8081/c/x/test-project/+/%s" % change)
|
|
time.sleep(5)
|
|
driver.execute_script(
|
|
"document.querySelector('gr-app').shadowRoot"
|
|
".querySelector('gr-app-element').shadowRoot"
|
|
".querySelector('main')"
|
|
".querySelector('gr-change-view').shadowRoot"
|
|
".querySelector('paper-tab[data-name=\"change-view-tab-header-zuul-results-summary\"]')"
|
|
".click()"
|
|
)
|
|
time.sleep(5)
|
|
|
|
original_size = driver.get_window_size()
|
|
required_width = driver.execute_script(
|
|
'return document.body.parentNode.scrollWidth')
|
|
required_height = driver.execute_script(
|
|
'return document.body.parentNode.scrollHeight') + 100
|
|
driver.set_window_size(required_width, required_height)
|
|
|
|
driver.find_element_by_tag_name('body'). \
|
|
screenshot("/var/log/screenshots/gerrit-change-page-%s.png" % change)
|
|
|
|
driver.set_window_size(
|
|
original_size['width'], original_size['height'])
|
|
|
|
except TimeoutException as e:
|
|
raise e
|
|
finally:
|
|
driver.quit()
|