We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17ea930 commit 02de36fCopy full SHA for 02de36f
1 file changed
va/va_test.go
@@ -157,6 +157,14 @@ func TestValidateDNSPersist01(t *testing.T) {
157
expectHTTPStatus: 403,
158
expectDetailSubstr: `No valid TXT record found`,
159
},
160
+ {
161
+ name: "non-matching issuer-domain-name record is ignored",
162
+ challIssuerNames: []string{"authority.example"},
163
+ challTXTRecords: []string{"other.example;accounturi=https://ca.example/acct/123"},
164
+ expectErr: true,
165
+ expectHTTPStatus: 403,
166
+ expectDetailSubstr: `No valid TXT record found`,
167
+ },
168
{
169
name: "missing equals is malformed",
170
challIssuerNames: []string{"authority.example"},
0 commit comments