(self, mock_cert_manager, mock_connector, mock_interceptor, mock_path)
| 37 | |
| 38 | @pytest.fixture |
| 39 | def server(self, mock_cert_manager, mock_connector, mock_interceptor, mock_path): |
| 40 | return ProxyServer(intercept_domains=["example.com", "*.google.com"]) |
| 41 | |
| 42 | def test_should_intercept(self, server): |
| 43 | """Test domain interception matching (exact, wildcard, subdomain logic).""" |
nothing calls this directly
no test coverage detected