129 lines
3.4 KiB
Python
129 lines
3.4 KiB
Python
import base64
|
|
from email.mime.application import MIMEApplication
|
|
from email.mime.multipart import MIMEMultipart
|
|
|
|
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from app.core.config import get_settings
|
|
from app.models.report import DMARCReport
|
|
|
|
MINIMAL_DMARC_XML = b"""\
|
|
<?xml version="1.0"?>
|
|
<feedback>
|
|
<report_metadata>
|
|
<org_name>Webhook Test</org_name>
|
|
<email>dmarc@example.com</email>
|
|
<report_id>webhook-001</report_id>
|
|
<date_range>
|
|
<begin>1609459200</begin>
|
|
<end>1609545600</end>
|
|
</date_range>
|
|
</report_metadata>
|
|
<policy_published>
|
|
<domain>webhook.example</domain>
|
|
<adkim>r</adkim>
|
|
<aspf>r</aspf>
|
|
<p>none</p>
|
|
<sp>none</sp>
|
|
<pct>100</pct>
|
|
</policy_published>
|
|
<record>
|
|
<row>
|
|
<source_ip>1.2.3.4</source_ip>
|
|
<count>1</count>
|
|
<policy_evaluated>
|
|
<disposition>none</disposition>
|
|
<dkim>pass</dkim>
|
|
<spf>pass</spf>
|
|
</policy_evaluated>
|
|
</row>
|
|
<identifiers>
|
|
<header_from>webhook.example</header_from>
|
|
</identifiers>
|
|
</record>
|
|
</feedback>
|
|
"""
|
|
|
|
|
|
def _raw_email_with_report() -> bytes:
|
|
msg = MIMEMultipart()
|
|
msg["Subject"] = "DMARC report"
|
|
part = MIMEApplication(MINIMAL_DMARC_XML, _subtype="xml")
|
|
part.add_header("Content-Disposition", "attachment", filename="report.xml")
|
|
msg.attach(part)
|
|
return msg.as_bytes()
|
|
|
|
|
|
def _set_webhook_secret(monkeypatch, value="test-webhook-secret"):
|
|
monkeypatch.setenv("WEBHOOK_SECRET", value)
|
|
get_settings.cache_clear()
|
|
return value
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _clear_settings_cache():
|
|
yield
|
|
get_settings.cache_clear()
|
|
|
|
|
|
def test_webhook_requires_configured_secret(client: TestClient, monkeypatch):
|
|
monkeypatch.delenv("WEBHOOK_SECRET", raising=False)
|
|
get_settings.cache_clear()
|
|
|
|
response = client.post(
|
|
"/api/v1/webhook/email",
|
|
json={"raw_email": base64.b64encode(_raw_email_with_report()).decode("ascii")},
|
|
)
|
|
|
|
assert response.status_code == 503
|
|
|
|
|
|
def test_webhook_rejects_invalid_secret(client: TestClient, monkeypatch):
|
|
_set_webhook_secret(monkeypatch)
|
|
|
|
response = client.post(
|
|
"/api/v1/webhook/email",
|
|
headers={"X-Webhook-Secret": "wrong"},
|
|
json={"raw_email": base64.b64encode(_raw_email_with_report()).decode("ascii")},
|
|
)
|
|
|
|
assert response.status_code == 401
|
|
|
|
|
|
def test_webhook_imports_base64_email(client: TestClient, db_session, monkeypatch):
|
|
secret = _set_webhook_secret(monkeypatch)
|
|
|
|
response = client.post(
|
|
"/api/v1/webhook/email",
|
|
headers={"X-Webhook-Secret": secret},
|
|
json={"raw_email": base64.b64encode(_raw_email_with_report()).decode("ascii")},
|
|
)
|
|
|
|
assert response.status_code == 200
|
|
data = response.json()
|
|
assert data["success"] is True
|
|
assert data["reports_found"] == 1
|
|
assert data["imported"] == 1
|
|
assert db_session.query(DMARCReport).count() == 1
|
|
|
|
|
|
def test_webhook_raw_email_marks_duplicate(client: TestClient, monkeypatch):
|
|
secret = _set_webhook_secret(monkeypatch)
|
|
raw_email = _raw_email_with_report()
|
|
|
|
first = client.post(
|
|
"/api/v1/webhook/email/raw",
|
|
headers={"X-Webhook-Secret": secret},
|
|
content=raw_email,
|
|
)
|
|
second = client.post(
|
|
"/api/v1/webhook/email/raw",
|
|
headers={"X-Webhook-Secret": secret},
|
|
content=raw_email,
|
|
)
|
|
|
|
assert first.status_code == 200
|
|
assert second.status_code == 200
|
|
assert second.json()["duplicates"] == 1
|