Go to file
Jürgen Edelbluth baf774f669
Wrong xUnit test result filename
2023-12-03 10:58:44 +01:00
.idea In a test context, the special list is not required 2023-11-29 21:28:44 +01:00
smtp_test_server Minor refactoring 2023-11-29 21:33:56 +01:00
tests Initial Commit 2023-11-29 20:33:27 +01:00
.gitignore Initial Commit 2023-11-29 20:33:27 +01:00
.pylintrc Initial Commit 2023-11-29 20:33:27 +01:00
CHANGELOG.md Preparing initial publishing 2023-12-03 10:14:13 +01:00
LICENSE.txt Preparing initial publishing 2023-12-03 10:14:13 +01:00
README.md Preparing initial publishing 2023-12-03 10:14:13 +01:00
poetry.lock Preparing initial publishing 2023-12-03 10:14:13 +01:00
poetry.toml Initial Commit 2023-11-29 20:33:27 +01:00
pyproject.toml Wrong xUnit test result filename 2023-12-03 10:58:44 +01:00

README.md

smtp-test-server

Based on the aiosmtpd, this packages offers you a simple way to integrate a SMTP server into your test code.

Currently, the server does not support authentication, TLS or anything special instead of sending mails.

All mails are collected in the messages property of the mock and can be evaluated there.

Looking for a pytest SMTP mock fixture? Take a look at this project: git.codebau.dev/pytest-plugins/pytest-smtp-test-server.

Installation

Installation with "pip"

pip install smtp-test-server

Installation with "poetry"

poetry add --group dev smtp-test-server

Usage

Simple usage, with auto assigning a free port number on 127.0.0.1:

from smtp_test_server.context import SmtpMockServer

def test_send_mail():
    with SmtpMockServer() as smtp_mock:
        my_mail_method(smtp_host=smtp_mock.host, smtp_port=smtp_mock.port)
    assert len(smtp_mock.messages) == 1
    assert smtp_mock.messages[0]["from"] == "my-test@sender.org"

Want to have more control over host and port? Use it like this:

with SmtpMockServer(bind_host="223.12.9.177", bind_port=2525):
    ...

Ports are automatically closed when leaving the context.