{% extends 'generic/_base.html' %} {% block title %}Test {{ provider_account }} Connection{% endblock %} {% block content %}
{% csrf_token %} {% for field in form.hidden_fields %} {{ field }} {% endfor %}

Test Provider Connection

Run a safe read-only credential test for {{ provider_account }}. This probe verifies credential wiring, provider reachability, and permission posture without mutating provider state.

Provider Type
{{ provider_account.get_provider_type_display }}
Transport
{{ provider_account.transport }}
Sync Enabled
{{ provider_account.sync_enabled }}
ROA Write Mode
{{ provider_account.roa_write_mode }}
ASPA Write Mode
{{ provider_account.aspa_write_mode }}
{% if validation_result %}
Result Kind
{{ validation_result.result_kind }}

Validation Checks

{% for check in validation_result.checks %} {% endfor %}
Check Status Summary Remediation
{{ check.code }} {{ check.status }}
{{ check.summary }}
{% if check.endpoint_label %}
{{ check.endpoint_label }} via {{ check.method }} {{ check.url }}
{% endif %} {% if check.missing_fields %} {% for issue in check.missing_fields %}
{{ issue.issue_text }}
{% endfor %} {% endif %}
{{ check.remediation|default:'—' }}
{% endif %}
{% endblock %}