12d4355385
These images have a number of issues we've identified and worked around. The current iteration of this change is essentially identical to upstream but with a minor tweak to allow the latest mailman version, and adjusts the paths for hyperkitty and postorius URLs to match those in the upstream mailman-web codebase, but doesn't try to address the other items. However, we should consider moving our fixes from ansible into the docker images where possible and upstream those updates. Unfortunately upstream hasn't been super responsive so far hence this fork. For tracking purposes here are the issues/PRs we've already filed upstream: https://github.com/maxking/docker-mailman/pull/552 https://github.com/maxking/docker-mailman/issues/548 https://github.com/maxking/docker-mailman/issues/549 https://github.com/maxking/docker-mailman/issues/550 Change-Id: I3314037d46c2ef2086a06dea0321d9f8cdd35c73
62 lines
2.4 KiB
Python
62 lines
2.4 KiB
Python
# 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 util import take_screenshots
|
|
|
|
testinfra_hosts = ['lists99.opendev.org']
|
|
|
|
def test_mariadb_listening(host):
|
|
mariadb_port = host.socket("tcp://127.0.0.1:3306")
|
|
assert mariadb_port.is_listening
|
|
|
|
def test_mailman3_web_listening(host):
|
|
mailman_web = host.socket("tcp://0.0.0.0:8000")
|
|
assert mailman_web.is_listening
|
|
mailman_uwsgi = host.socket("tcp://0.0.0.0:8080")
|
|
assert mailman_uwsgi.is_listening
|
|
|
|
def test_mailman3_core_listening(host):
|
|
mailman_rest = host.socket("tcp://127.0.0.1:8001")
|
|
assert mailman_rest.is_listening
|
|
mailman_lmtp = host.socket("tcp://127.0.0.1:8024")
|
|
assert mailman_lmtp.is_listening
|
|
|
|
def test_apache2_listening(host):
|
|
apache2_http = host.socket("tcp://0.0.0.0:80")
|
|
assert apache2_http.is_listening
|
|
apache2_https = host.socket("tcp://0.0.0.0:443")
|
|
assert apache2_https.is_listening
|
|
|
|
def test_mailman3_screenshots(host):
|
|
shots = (
|
|
("https://lists.opendev.org:443", None, "mm3-opendev-main.png"),
|
|
("https://lists.opendev.org:443/archives/",
|
|
None, "mm3-opendev-archives.png"),
|
|
("https://lists.opendev.org:443"
|
|
"/archives/list/service-discuss@lists.opendev.org/",
|
|
None, "mm3-opendev-list.png"),
|
|
("https://lists.opendev.org:443"
|
|
"/accounts/login/?next=/mailman3/lists/",
|
|
None, "mm3-opendev-login.png"),
|
|
("https://lists.openstack.org:443", None, "mm3-openstack-main.png"),
|
|
("https://lists.openstack.org:443/archives/",
|
|
None, "mm3-openstack-archives.png"),
|
|
("https://lists.openstack.org:443"
|
|
"/archives/list/openstack-discuss@lists.openstack.org/",
|
|
None, "mm3-openstack-list.png"),
|
|
("https://lists.openstack.org:443"
|
|
"/accounts/login/?next=/mailman3/lists/",
|
|
None, "mm3-openstack-login.png"),
|
|
)
|
|
|
|
take_screenshots(host, shots)
|