test(dns): Fix case with inconsistent results

This commit is contained in:
TwiN 2022-06-16 20:09:25 -04:00
parent 43e8c57701
commit dfcdc57a18

View File

@ -2,6 +2,7 @@ package core
import ( import (
"testing" "testing"
"time"
"github.com/TwiN/gatus/v3/pattern" "github.com/TwiN/gatus/v3/pattern"
) )
@ -21,7 +22,7 @@ func TestIntegrationQuery(t *testing.T) {
QueryType: "A", QueryType: "A",
QueryName: "example.com.", QueryName: "example.com.",
}, },
inputURL: "8.8.8.8", inputURL: "1.1.1.1",
expectedDNSCode: "NOERROR", expectedDNSCode: "NOERROR",
expectedBody: "93.184.216.34", expectedBody: "93.184.216.34",
}, },
@ -31,7 +32,7 @@ func TestIntegrationQuery(t *testing.T) {
QueryType: "AAAA", QueryType: "AAAA",
QueryName: "example.com.", QueryName: "example.com.",
}, },
inputURL: "8.8.8.8", inputURL: "1.1.1.1",
expectedDNSCode: "NOERROR", expectedDNSCode: "NOERROR",
expectedBody: "2606:2800:220:1:248:1893:25c8:1946", expectedBody: "2606:2800:220:1:248:1893:25c8:1946",
}, },
@ -51,7 +52,7 @@ func TestIntegrationQuery(t *testing.T) {
QueryType: "MX", QueryType: "MX",
QueryName: "example.com.", QueryName: "example.com.",
}, },
inputURL: "8.8.8.8", inputURL: "1.1.1.1",
expectedDNSCode: "NOERROR", expectedDNSCode: "NOERROR",
expectedBody: ".", expectedBody: ".",
}, },
@ -61,7 +62,7 @@ func TestIntegrationQuery(t *testing.T) {
QueryType: "NS", QueryType: "NS",
QueryName: "example.com.", QueryName: "example.com.",
}, },
inputURL: "8.8.8.8", inputURL: "1.1.1.1",
expectedDNSCode: "NOERROR", expectedDNSCode: "NOERROR",
expectedBody: "*.iana-servers.net.", expectedBody: "*.iana-servers.net.",
}, },
@ -71,7 +72,7 @@ func TestIntegrationQuery(t *testing.T) {
QueryType: "B", QueryType: "B",
QueryName: "example", QueryName: "example",
}, },
inputURL: "8.8.8.8", inputURL: "1.1.1.1",
isErrExpected: true, isErrExpected: true,
}, },
} }
@ -98,6 +99,7 @@ func TestIntegrationQuery(t *testing.T) {
} }
} }
}) })
time.Sleep(5 * time.Millisecond)
} }
} }