Ruff fixes (20 errors → 0): - F401: Remove unused imports (DeckyConfig, random_hostname, IniConfig, COMPOSE_FILE, sys, patch) across cli.py, mutator/engine.py, templates/ftp, templates/rdp, test_mysql.py, test_postgres.py - F541: Remove extraneous f-prefixes on strings with no placeholders in templates/imap, test_ftp_live, test_http_live - E741: Rename ambiguous variable 'l' to descriptive names (line, entry, part) across conftest.py, test_ftp_live, test_http_live, test_mongodb_live, test_pop3, test_ssh SQLite fix: - Change _initialize_sync() admin seeding from SELECT-then-INSERT to INSERT OR IGNORE, preventing IntegrityError when admin user already exists from a previous run
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 = [line for line in lines if "<" in line and ">1 " in line and "ftp" in line]
|
|
assert rfc_lines, "No ftp RFC 5424 lines found. stdout:\n" + "\n".join(lines[:15])
|