Tighten empty-content acceptance skip conditions

This commit is contained in:
beatz174-bit
2026-04-24 18:01:39 +10:00
parent 39c09f4b03
commit 8a3b549188
+83 -1
View File
@@ -188,7 +188,7 @@ func testAccCreateRecordMaybeSkipUnsupported(t *testing.T, client *dynuclient.Cl
}
var apiErr *dynuclient.APIError
if errors.As(err, &apiErr) && apiErr.StatusCode >= 400 && apiErr.StatusCode < 500 {
if errors.As(err, &apiErr) && isUnsupportedEmptyContentAPIError(apiErr) {
t.Skipf("Dynu account/API does not support %s in this environment (%v)", scenario, err)
}
@@ -217,3 +217,85 @@ func testAccDeleteRecord(t *testing.T, client *dynuclient.Client, domainID int64
t.Fatalf("DeleteDNSRecord() cleanup failed: %v", err)
}
}
func isUnsupportedEmptyContentAPIError(apiErr *dynuclient.APIError) bool {
if apiErr == nil || apiErr.StatusCode != 400 {
return false
}
normalizedType := strings.ToLower(strings.TrimSpace(apiErr.Type))
if normalizedType != "validation exception" {
return false
}
normalizedMessage := strings.ToLower(strings.TrimSpace(apiErr.Message))
knownUnsupportedMessages := []string{
"content is required",
"ipv4address is required",
"ipv6address is required",
}
for _, fragment := range knownUnsupportedMessages {
if strings.Contains(normalizedMessage, fragment) {
return true
}
}
return false
}
func TestIsUnsupportedEmptyContentAPIError(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
err *dynuclient.APIError
expect bool
}{
{
name: "validation message with required content",
err: &dynuclient.APIError{
StatusCode: 400,
Type: "Validation Exception",
Message: "Content is required.",
},
expect: true,
},
{
name: "validation message with ipv4 required",
err: &dynuclient.APIError{
StatusCode: 400,
Type: "Validation Exception",
Message: "IPv4Address is required for A records.",
},
expect: true,
},
{
name: "different validation error should fail",
err: &dynuclient.APIError{
StatusCode: 400,
Type: "Validation Exception",
Message: "recordType is invalid",
},
expect: false,
},
{
name: "transient throttling should fail",
err: &dynuclient.APIError{
StatusCode: 429,
Type: "Too Many Requests",
Message: "rate limit exceeded",
},
expect: false,
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
if got := isUnsupportedEmptyContentAPIError(tc.err); got != tc.expect {
t.Fatalf("unexpected result for %q: got %v, want %v", tc.name, got, tc.expect)
}
})
}
}