Replaces LICENSE (GPLv3 -> AGPLv3) and prepends `SPDX-License-Identifier: AGPL-3.0-or-later` to every source file across decnet/, decnet_web/, tests/, scripts/, and tools/. Rationale: closes the GPLv3 ASP loophole so any party operating a modified DECNET as a network service must offer their modified source. Personal copyright (Samuel Paschuan) + inbound=outbound contributions make a future unilateral relicense infeasible. - LICENSE: full AGPL-3.0 text (gnu.org/licenses/agpl-3.0.txt) - COPYRIGHT: project copyright notice - tools/add_spdx_headers.py: idempotent header injector (shebang- and PEP 263-aware) Touches 1565 source files (.py, .ts, .tsx, .js, .jsx, .css, .sh). No behavior change; comments only.
82 lines
2.7 KiB
Python
82 lines
2.7 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
import imaplib
|
|
|
|
import pytest
|
|
|
|
from tests.live.conftest import assert_rfc5424
|
|
|
|
|
|
@pytest.mark.live
|
|
class TestIMAPLive:
|
|
def test_banner_received(self, live_service):
|
|
port, drain = live_service("imap")
|
|
imap = imaplib.IMAP4("127.0.0.1", port)
|
|
welcome = imap.welcome.decode()
|
|
imap.logout()
|
|
assert "OK" in welcome
|
|
|
|
def test_connect_logged(self, live_service):
|
|
port, drain = live_service("imap")
|
|
imap = imaplib.IMAP4("127.0.0.1", port)
|
|
imap.logout()
|
|
lines = drain()
|
|
assert_rfc5424(lines, service="imap", event_type="connect")
|
|
|
|
def test_login_logged(self, live_service):
|
|
port, drain = live_service("imap")
|
|
imap = imaplib.IMAP4("127.0.0.1", port)
|
|
try:
|
|
imap.login("admin", "wrongpass")
|
|
except imaplib.IMAP4.error:
|
|
pass
|
|
lines = drain()
|
|
try:
|
|
imap.logout()
|
|
except Exception:
|
|
pass
|
|
lines += drain()
|
|
assert_rfc5424(lines, service="imap", event_type="auth")
|
|
|
|
def test_auth_success_logged(self, live_service):
|
|
port, drain = live_service("imap")
|
|
imap = imaplib.IMAP4("127.0.0.1", port)
|
|
imap.login("admin", "admin123") # valid cred from IMAP_USERS default
|
|
lines = drain()
|
|
imap.logout()
|
|
lines += drain()
|
|
matched = assert_rfc5424(lines, service="imap", event_type="auth")
|
|
assert "success" in matched, f"Expected auth success in log. Got:\n{matched!r}"
|
|
|
|
def test_auth_fail_logged(self, live_service):
|
|
port, drain = live_service("imap")
|
|
imap = imaplib.IMAP4("127.0.0.1", port)
|
|
try:
|
|
imap.login("hacker", "crackedpassword")
|
|
except imaplib.IMAP4.error:
|
|
pass # expected
|
|
lines = drain()
|
|
try:
|
|
imap.logout()
|
|
except Exception:
|
|
pass
|
|
lines += drain()
|
|
matched = assert_rfc5424(lines, service="imap", event_type="auth")
|
|
assert "failure" in matched, f"Expected auth failure in log. Got:\n{matched!r}"
|
|
|
|
def test_select_inbox_after_login(self, live_service):
|
|
port, drain = live_service("imap")
|
|
imap = imaplib.IMAP4("127.0.0.1", port)
|
|
imap.login("admin", "admin123")
|
|
status, data = imap.select("INBOX")
|
|
imap.logout()
|
|
assert status == "OK", f"SELECT INBOX failed: {data}"
|
|
|
|
def test_capability_command(self, live_service):
|
|
port, drain = live_service("imap")
|
|
imap = imaplib.IMAP4("127.0.0.1", port)
|
|
status, caps = imap.capability()
|
|
imap.logout()
|
|
assert status == "OK"
|
|
cap_str = b" ".join(caps).decode()
|
|
assert "IMAP4rev1" in cap_str
|