Spins up each service's server.py in a real subprocess via a free ephemeral port (PORT env var), connects with real protocol clients, and asserts both correct protocol behavior and RFC 5424 log output. - 44 live tests across 10 services: http, ftp, smtp, redis, mqtt, mysql, postgres, mongodb, pop3, imap - Shared conftest.py: _ServiceProcess (bg reader thread + queue), free_port, live_service fixture, assert_rfc5424 helper - PORT env var added to all 10 targeted server.py templates - New pytest marker `live`; excluded from default addopts run - requirements-live-tests.txt: flask, twisted + protocol clients
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
import ftplib
|
|
|
|
import pytest
|
|
|
|
from tests.live.conftest import assert_rfc5424
|
|
|
|
|
|
@pytest.mark.live
|
|
class TestFTPLive:
|
|
def test_banner_received(self, live_service):
|
|
port, drain = live_service("ftp")
|
|
ftp = ftplib.FTP()
|
|
ftp.connect("127.0.0.1", port, timeout=5)
|
|
welcome = ftp.getwelcome()
|
|
ftp.close()
|
|
assert "220" in welcome or "vsFTPd" in welcome or len(welcome) > 0
|
|
|
|
def test_login_logged(self, live_service):
|
|
port, drain = live_service("ftp")
|
|
ftp = ftplib.FTP()
|
|
ftp.connect("127.0.0.1", port, timeout=5)
|
|
try:
|
|
ftp.login("admin", "hunter2")
|
|
except ftplib.all_errors:
|
|
pass
|
|
finally:
|
|
ftp.close()
|
|
lines = drain()
|
|
assert_rfc5424(lines, service="ftp")
|
|
|
|
def test_connect_logged(self, live_service):
|
|
port, drain = live_service("ftp")
|
|
ftp = ftplib.FTP()
|
|
ftp.connect("127.0.0.1", port, timeout=5)
|
|
ftp.close()
|
|
lines = drain()
|
|
# At least one RFC 5424 line from the ftp service
|
|
rfc_lines = [l for l in lines if "<" in l and ">1 " in l and "ftp" in l]
|
|
assert rfc_lines, f"No ftp RFC 5424 lines found. stdout:\n" + "\n".join(lines[:15])
|