| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- """Test fixtures for FTP service tests.
- Provides a real implicit FTPS server (via mock_ftp_server) and client factory
- for integration-style testing of BambuFTPClient against a live server.
- """
- import socket
- from unittest.mock import patch
- import pytest
- from backend.app.services.bambu_ftp import BambuFTPClient
- from backend.app.services.virtual_printer.certificate import CertificateService
- from backend.tests.unit.services.mock_ftp_server import MockBambuFTPServer
- @pytest.fixture(scope="session")
- def ftp_certs(tmp_path_factory):
- """Generate self-signed TLS certificates once per test session."""
- cert_dir = tmp_path_factory.mktemp("ftp_certs")
- svc = CertificateService(cert_dir, serial="TEST_FTP_SERVER")
- cert_path, key_path = svc.generate_certificates()
- return str(cert_path), str(key_path)
- def _find_free_port() -> int:
- """Find a free TCP port on localhost."""
- with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
- s.bind(("127.0.0.1", 0))
- return s.getsockname()[1]
- @pytest.fixture()
- def ftp_root(tmp_path):
- """Create temp directory with standard Bambu printer directory structure."""
- for d in ("cache", "timelapse", "model", "data", "data/Metadata"):
- (tmp_path / d).mkdir(parents=True, exist_ok=True)
- return tmp_path
- @pytest.fixture()
- def ftp_server(ftp_certs, ftp_root):
- """Start a mock implicit FTPS server, yield it, stop on cleanup."""
- cert_path, key_path = ftp_certs
- port = _find_free_port()
- server = MockBambuFTPServer(
- host="127.0.0.1",
- port=port,
- root_dir=str(ftp_root),
- cert_path=cert_path,
- key_path=key_path,
- access_code="12345678",
- )
- server.start()
- yield server
- server.stop()
- @pytest.fixture()
- def ftp_client_factory(ftp_server):
- """Factory that creates BambuFTPClient instances pointed at the mock server."""
- def _make_client(
- printer_model: str = "X1C",
- force_prot_c: bool = False,
- access_code: str = "12345678",
- timeout: float = 10.0,
- ) -> BambuFTPClient:
- client = BambuFTPClient(
- ip_address="127.0.0.1",
- access_code=access_code,
- timeout=timeout,
- printer_model=printer_model,
- force_prot_c=force_prot_c,
- )
- # Override port to point at mock server
- client.FTP_PORT = ftp_server.port
- return client
- return _make_client
- @pytest.fixture(autouse=True)
- def clear_ftp_mode_cache():
- """Clear BambuFTPClient mode cache before and after each test."""
- BambuFTPClient._mode_cache.clear()
- yield
- BambuFTPClient._mode_cache.clear()
- @pytest.fixture()
- def patch_ftp_port(ftp_server):
- """Patch FTP_PORT at class level for async wrapper tests.
- Async wrappers create their own BambuFTPClient instances internally,
- so we need to patch the class-level default port.
- """
- with patch.object(BambuFTPClient, "FTP_PORT", ftp_server.port):
- yield ftp_server
|