test_printer_models.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. """Unit tests for printer model utilities."""
  2. import pytest
  3. from backend.app.services.camera import get_camera_port, supports_rtsp
  4. from backend.app.utils.printer_models import (
  5. CARBON_ROD_MODELS,
  6. STEEL_ROD_MODELS,
  7. get_rod_type,
  8. has_ethernet,
  9. is_dual_nozzle_model,
  10. normalize_printer_model,
  11. normalize_printer_model_id,
  12. )
  13. class TestGetRodType:
  14. """Tests for get_rod_type() rod/rail classification."""
  15. @pytest.mark.parametrize("model", ["X1C", "X1", "X1E", "P1P", "P1S"])
  16. def test_carbon_rod_models(self, model: str):
  17. assert get_rod_type(model) == "carbon"
  18. @pytest.mark.parametrize("model", ["C11", "C12", "C13"])
  19. def test_carbon_rod_internal_codes(self, model: str):
  20. assert get_rod_type(model) == "carbon"
  21. def test_p2s_is_steel_rod(self):
  22. """P2S uses hardened steel rods, not carbon rods (#640)."""
  23. assert get_rod_type("P2S") == "steel_rod"
  24. def test_p2s_internal_code_is_steel_rod(self):
  25. """N7 (P2S internal code) uses steel rods."""
  26. assert get_rod_type("N7") == "steel_rod"
  27. @pytest.mark.parametrize("model", ["A1", "A1 Mini", "H2D", "H2D Pro", "H2C", "H2S"])
  28. def test_linear_rail_models(self, model: str):
  29. assert get_rod_type(model) == "linear_rail"
  30. @pytest.mark.parametrize("model", ["N1", "N2S", "A11", "A12", "O1D", "O1E", "O2D", "O1C", "O1C2", "O1S"])
  31. def test_linear_rail_internal_codes(self, model: str):
  32. assert get_rod_type(model) == "linear_rail"
  33. def test_unknown_model_returns_none(self):
  34. assert get_rod_type("UNKNOWN") is None
  35. def test_none_returns_none(self):
  36. assert get_rod_type(None) is None
  37. def test_case_insensitive(self):
  38. assert get_rod_type("p2s") == "steel_rod"
  39. assert get_rod_type("x1c") == "carbon"
  40. assert get_rod_type("a1") == "linear_rail"
  41. def test_strips_whitespace_and_dashes(self):
  42. assert get_rod_type(" P2S ") == "steel_rod"
  43. assert get_rod_type("A1-Mini") == "linear_rail"
  44. class TestX2DModel:
  45. """X2D printer support (issue #988).
  46. The X2D is a dual-nozzle enclosed printer launched April 2026. It shares
  47. the hardened steel rod hardware with P2S (NOT carbon rods) and uses
  48. RTSP on port 322 like other X/H series printers. Internal SSDP/MQTT
  49. model code is "N6"; serial numbers begin with "20P9".
  50. """
  51. def test_x2d_is_steel_rod_display_name(self):
  52. assert get_rod_type("X2D") == "steel_rod"
  53. def test_x2d_is_steel_rod_internal_code(self):
  54. assert get_rod_type("N6") == "steel_rod"
  55. def test_x2d_model_id_map(self):
  56. assert normalize_printer_model_id("N6") == "X2D"
  57. def test_x2d_model_map(self):
  58. assert normalize_printer_model("Bambu Lab X2D") == "X2D"
  59. def test_x2d_has_ethernet_display_name(self):
  60. assert has_ethernet("X2D") is True
  61. def test_x2d_has_ethernet_internal_code(self):
  62. assert has_ethernet("N6") is True
  63. def test_x2d_supports_rtsp_display_name(self):
  64. assert supports_rtsp("X2D") is True
  65. def test_x2d_supports_rtsp_internal_code(self):
  66. assert supports_rtsp("N6") is True
  67. def test_x2d_camera_port_is_rtsp(self):
  68. assert get_camera_port("N6") == 322
  69. assert get_camera_port("X2D") == 322
  70. def test_x2d_not_in_carbon_rod_set(self):
  71. """Regression guard: X2D has hardened steel rods, not carbon (#988).
  72. A prior PR classified X2D as carbon; the reporter confirmed it uses
  73. the same stainless steel rod gantry as P2S. This assertion pins the
  74. classification so a future change that reverts it will fail loudly.
  75. """
  76. assert "X2D" not in CARBON_ROD_MODELS
  77. assert "N6" not in CARBON_ROD_MODELS
  78. assert "X2D" in STEEL_ROD_MODELS
  79. assert "N6" in STEEL_ROD_MODELS
  80. class TestDualNozzleModel:
  81. """is_dual_nozzle_model — the single source of truth for nozzle class,
  82. consumed by start_print, the K-profile routes, and the re-slice guard."""
  83. def test_h2d_and_pro_are_dual(self):
  84. # Takes a normalized model code (like has_ethernet) — "H2D Pro" with a
  85. # space is accepted; full "Bambu Lab …" names are normalized by callers.
  86. assert is_dual_nozzle_model("H2D") is True
  87. assert is_dual_nozzle_model("H2D Pro") is True
  88. assert is_dual_nozzle_model("H2DPRO") is True
  89. def test_internal_codes_are_dual(self):
  90. assert is_dual_nozzle_model("O1D") is True # H2D
  91. assert is_dual_nozzle_model("O1E") is True # H2D Pro
  92. def test_single_nozzle_models_are_not_dual(self):
  93. # H2S is in the H2 family but single-nozzle (#1386) — must be False.
  94. for model in ("X1C", "X1E", "P1S", "P1P", "A1", "A1 Mini", "P2S", "H2S"):
  95. assert is_dual_nozzle_model(model) is False, model
  96. def test_none_and_empty_are_not_dual(self):
  97. assert is_dual_nozzle_model(None) is False
  98. assert is_dual_nozzle_model("") is False