Files
@ 35fff2909917
Branch filter:
Location: majic-ansible-roles/roles/mail_server/molecule/default/tests/test_mandatory.py
35fff2909917
10.8 KiB
text/x-python
MAR-157: Added parameter to mail_server role for specifying maximum incoming mail size.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('parameters-mandatory')
def test_smtp_tls_files(host):
"""
Tests if SMTP TLS private key has been deployed correctly.
"""
hostname = host.run('hostname').stdout.strip()
with host.sudo():
tls_file = host.file('/etc/ssl/private/%s_smtp.key' % hostname)
assert tls_file.is_file
assert tls_file.user == 'root'
assert tls_file.group == 'root'
assert tls_file.mode == 0o640
assert tls_file.content_string == open("tests/data/x509/%s_smtp.key" % hostname, "r").read().rstrip()
tls_file = host.file('/etc/ssl/certs/%s_smtp.pem' % hostname)
assert tls_file.is_file
assert tls_file.user == 'root'
assert tls_file.group == 'root'
assert tls_file.mode == 0o644
assert tls_file.content_string == open("tests/data/x509/%s_smtp.pem" % hostname, "r").read().rstrip()
tls_file = host.file('/etc/ssl/private/%s_imap.key' % hostname)
assert tls_file.is_file
assert tls_file.user == 'root'
assert tls_file.group == 'root'
assert tls_file.mode == 0o640
assert tls_file.content_string == open("tests/data/x509/%s_imap.key" % hostname, "r").read().rstrip()
tls_file = host.file('/etc/ssl/certs/%s_imap.pem' % hostname)
assert tls_file.is_file
assert tls_file.user == 'root'
assert tls_file.group == 'root'
assert tls_file.mode == 0o644
assert tls_file.content_string == open("tests/data/x509/%s_imap.pem" % hostname, "r").read().rstrip()
def test_certificate_validity_check_configuration(host):
"""
Tests if certificate validity check configuration file has been deployed
correctly.
"""
hostname = host.run('hostname').stdout.strip()
config = host.file('/etc/check_certificate/%s_smtp.conf' % hostname)
assert config.is_file
assert config.user == 'root'
assert config.group == 'root'
assert config.mode == 0o644
assert config.content_string == "/etc/ssl/certs/%s_smtp.pem" % hostname
config = host.file('/etc/check_certificate/%s_imap.conf' % hostname)
assert config.is_file
assert config.user == 'root'
assert config.group == 'root'
assert config.mode == 0o644
assert config.content_string == "/etc/ssl/certs/%s_imap.pem" % hostname
def test_mailname_file_content(host):
"""
Tests the system mail name file content.
"""
mailname = host.file('/etc/mailname')
hostname = host.run('hostname').stdout.strip()
assert mailname.content_string == hostname
def test_postfix_main_cf_file_content(host):
"""
Tests if the Postfix main configuration file content is correct.
"""
hostname = host.run('hostname').stdout.strip()
config = host.file('/etc/postfix/main.cf')
config_lines = config.content_string.split("\n")
assert "myhostname = %s" % hostname in config_lines
assert "mydestination = %s, %s, localhost.localdomain, localhost" % (hostname, hostname) in config_lines
assert "mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128" in config_lines
assert "smtpd_tls_cert_file = /etc/ssl/certs/%s_smtp.pem" % hostname in config_lines
assert "smtpd_tls_key_file = /etc/ssl/private/%s_smtp.key" % hostname in config_lines
assert "reject_rbl" not in config_lines
assert "smtp_host_lookup = dns, native" in config_lines
def test_dovecot_mailbox_directories(host):
"""
Tests if mailbox directories are created correctly.
"""
# Deliver two mails in order to make sure the directory structure is
# created.
send = host.run('swaks --suppress-data --to john.doe@domain1 --server localhost')
assert send.rc == 0
send = host.run('swaks --suppress-data --to jane.doe@domain2 --server localhost')
assert send.rc == 0
with host.sudo():
for directory_path in ["/var/vmail/domain1",
"/var/vmail/domain1/john.doe",
"/var/vmail/domain1/john.doe/Maildir",
"/var/vmail/domain2",
"/var/vmail/domain2/jane.doe",
"/var/vmail/domain2/jane.doe/Maildir"]:
directory = host.file(directory_path)
assert directory.is_directory
assert directory.user == "vmail"
assert directory.group == "vmail"
assert directory.mode == 0o700
def test_mail_owner(host):
"""
Tests creation of mail owner group and user.
"""
group = host.group("vmail")
assert group.exists
assert group.gid == 1002
user = host.user("vmail")
assert user.exists
assert user.uid == 1002
assert user.home == "/var/vmail"
assert user.group == "vmail"
assert user.groups == ["vmail"]
def test_imap_tls_configuration(host):
"""
Tests TLS configuration for IMAP in Dovecot.
"""
# Test plain connectivity first.
starttls = host.run('echo "a0001 LOGOUT" | openssl s_client -quiet -starttls imap -connect parameters-mandatory:143')
assert starttls.rc == 0
assert '* BYE Logging out' in starttls.stdout
tls = host.run('echo "a0001 LOGOUT" | openssl s_client -quiet -connect parameters-mandatory:993')
assert tls.rc == 0
assert '* BYE Logging out' in starttls.stdout
# Test TLS protocol versions.
starttls_old_tls_versions_disabled = host.run("echo 'a0001 LOGOUT' | openssl s_client -quiet -starttls imap -no_tls1_2 -connect parameters-mandatory:143")
assert starttls_old_tls_versions_disabled.rc != 0
assert "write:errno=104" in starttls_old_tls_versions_disabled.stderr or 'SSL alert number 70' in starttls_old_tls_versions_disabled.stderr
tls_old_tls_versions_disabled = host.run("echo 'a0001 LOGOUT' | openssl s_client -quiet -no_tls1_2 -connect parameters-mandatory:993")
assert tls_old_tls_versions_disabled.rc != 0
assert "write:errno=104" in tls_old_tls_versions_disabled.stderr or 'SSL alert number 70' in tls_old_tls_versions_disabled.stderr
# Test at least one strong TLS cipher.
starttls_cipher = host.run("echo 'a0001 LOGOUT' | openssl s_client -starttls imap -cipher ECDHE-RSA-AES128-SHA256 -connect parameters-mandatory:143")
assert starttls_cipher.rc == 0
assert "ECDHE-RSA-AES128-SHA256" in starttls_cipher.stdout
tls_cipher = host.run("echo 'a0001 LOGOUT' | openssl s_client -cipher ECDHE-RSA-AES128-SHA256 -connect parameters-mandatory:993")
assert tls_cipher.rc == 0
assert "ECDHE-RSA-AES128-SHA256" in tls_cipher.stdout
# Test weaker TLS cipher are disabled.
starttls_cipher = host.run("echo 'a0001 LOGOUT' | openssl s_client -starttls imap -cipher ECDHE-RSA-AES128-SHA -connect parameters-mandatory:143")
assert starttls_cipher.rc != 0
assert "CONNECTED" in starttls_cipher.stdout
assert "ECDHE-RSA-AES128-SHA" not in starttls_cipher.stdout
tls_cipher = host.run("echo 'a0001 LOGOUT' | openssl s_client -cipher ECDHE-RSA-AES128-SHA -connect parameters-mandatory:993")
assert tls_cipher.rc != 0
assert "CONNECTED" in tls_cipher.stdout
assert "ECDHE-RSA-AES128-SHA" not in tls_cipher.stdout
def test_dovecot_postmaster(host):
"""
Tests if Dovecot postmaster has been correctly configured.
"""
with host.sudo():
config = host.run("doveadm config")
assert config.rc == 0
assert " postmaster_address = postmaster@" in config.stdout
def test_imap_max_user_connections_per_ip(host):
"""
Tests if Dovecot per-user connection limit has been set-up correctly.
"""
with host.sudo():
config = host.run("doveadm config")
assert config.rc == 0
assert " mail_max_userip_connections = 10" in config.stdout
def test_postfix_tls_configuration(host):
"""
Tests TLS configuration for SMTP in Postfix.
"""
# Test TLS protocol versions for default port (all should be enabled).
starttls = host.run("echo 'QUIT' | openssl s_client -quiet -starttls smtp -no_tls1 -no_tls1_1 -connect parameters-mandatory:25")
assert starttls.rc == 0
assert '221 2.0.0 Bye' in starttls.stdout
starttls = host.run("echo 'QUIT' | openssl s_client -quiet -starttls smtp -no_tls1_2 -connect parameters-mandatory:25")
assert starttls.rc == 0
assert '221 2.0.0 Bye' in starttls.stdout
starttls = host.run("echo 'QUIT' | openssl s_client -quiet -starttls smtp -no_tls1_2 -no_tls1_1 -connect parameters-mandatory:25")
assert starttls.rc == 0
assert '221 2.0.0 Bye' in starttls.stdout
# Test TLS protocol versions for submission port (only TLS 1.2 should be enabled).
starttls = host.run("echo 'QUIT' | openssl s_client -quiet -starttls smtp -connect parameters-mandatory:587")
assert starttls.rc == 0
assert '221 2.0.0 Bye' in starttls.stdout
starttls = host.run("echo 'QUIT' | openssl s_client -quiet -starttls smtp -no_tls1_2 -connect parameters-mandatory:587")
assert starttls.rc != 0
assert 'write:errno=104' in starttls.stderr or 'SSL alert number 70' in starttls.stderr
# Test ciphers for default port (less restrictive).
starttls_cipher = host.run("echo 'QUIT' | openssl s_client -starttls smtp -cipher ECDHE-RSA-AES128-SHA256 -connect parameters-mandatory:25")
assert starttls_cipher.rc == 0
assert "ECDHE-RSA-AES128-SHA256" in starttls_cipher.stdout
starttls_cipher = host.run("echo 'QUIT' | openssl s_client -starttls smtp -cipher ECDHE-RSA-AES128-SHA -connect parameters-mandatory:25")
assert starttls_cipher.rc == 0
assert "ECDHE-RSA-AES128-SHA" in starttls_cipher.stdout
# Test ciphers for submission port (weak ciphers not available).
starttls_cipher = host.run("echo 'QUIT' | openssl s_client -starttls smtp -cipher ECDHE-RSA-AES128-SHA256 -connect parameters-mandatory:587")
assert starttls_cipher.rc == 0
assert "ECDHE-RSA-AES128-SHA256" in starttls_cipher.stdout
starttls_cipher = host.run("echo 'QUIT' | openssl s_client -starttls smtp -cipher ECDHE-RSA-AES128-SHA -connect parameters-mandatory:587")
assert starttls_cipher.rc != 0
assert "CONNECTED" in starttls_cipher.stdout
assert "ECDHE-RSA-AES128-SHA" not in starttls_cipher.stdout
def test_sieve_tls_configuration(host):
"""
Tests TLS configuration for SIEVE in Dovecot
"""
# @TODO: Currently not possible to test since openssl s_client does not
# support STARTTLS for Sieve.
pass
def test_mail_message_size_limit(host):
"""
Tests if the mail message size limit advertised by the SMTP server
is correct.
"""
capabilities = host.run("(echo 'ehlo localhost' && sleep 2) | telnet localhost 25")
begin = capabilities.stdout.find("250-SIZE")
end = capabilities.stdout.find("\n", begin)
mail_message_size_limit = capabilities.stdout[begin:end]
assert mail_message_size_limit == "250-SIZE 10240000"
|