
This should now be a largely functional deployment of mailman 3. There are still some bits that need testing but we'll use followup changes to force failure and hold nodes. This deployment of mailman3 uses upstream docker container images. We currently hack up uids and gids to accomodate that. We also hack up the settings file and bind mount it over the upstream file in order to use host networking. We override the hyperkitty index type to xapian. All list domains are hosted in a single installation and we use native vhosting to handle that. We'll deploy this to a new server and migrate one mailing list domain at a time. This will allow us to start with lists.opendev.org and test things like dmarc settings before expanding to the remaining lists. A migration script is also included, which has seen extensive testing on held nodes for importing copies of the production data sets. Change-Id: Ic9bf5cfaf0b87c100a6ce003a6645010a7b50358
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/hyperkitty/",
|
|
None, "mm3-opendev-archives.png"),
|
|
("https://lists.opendev.org:443"
|
|
"/hyperkitty/list/service-discuss@lists.opendev.org/",
|
|
None, "mm3-opendev-list.png"),
|
|
("https://lists.opendev.org:443"
|
|
"/accounts/login/?next=/postorius/lists/",
|
|
None, "mm3-opendev-login.png"),
|
|
("https://lists.openstack.org:443", None, "mm3-openstack-main.png"),
|
|
("https://lists.openstack.org:443/hyperkitty/",
|
|
None, "mm3-openstack-archives.png"),
|
|
("https://lists.openstack.org:443"
|
|
"/hyperkitty/list/openstack-discuss@lists.openstack.org/",
|
|
None, "mm3-openstack-list.png"),
|
|
("https://lists.openstack.org:443"
|
|
"/accounts/login/?next=/postorius/lists/",
|
|
None, "mm3-openstack-login.png"),
|
|
)
|
|
|
|
take_screenshots(host, shots)
|