2020-11-18 00:55:31 +01:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2020-12-29 23:31:43 +01:00
|
|
|
|
|
|
|
"github.com/TwinProduction/gatus/pattern"
|
2020-11-18 00:55:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestIntegrationQuery(t *testing.T) {
|
2020-11-18 18:51:22 +01:00
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
inputDNS DNS
|
|
|
|
inputURL string
|
|
|
|
expectedDNSCode string
|
|
|
|
expectedBody string
|
2020-11-18 23:07:38 +01:00
|
|
|
isErrExpected bool
|
2020-11-18 18:51:22 +01:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "test DNS with type A",
|
|
|
|
inputDNS: DNS{
|
|
|
|
QueryType: "A",
|
2020-11-18 23:07:38 +01:00
|
|
|
QueryName: "example.com.",
|
2020-11-18 18:51:22 +01:00
|
|
|
},
|
|
|
|
inputURL: "8.8.8.8",
|
|
|
|
expectedDNSCode: "NOERROR",
|
|
|
|
expectedBody: "93.184.216.34",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "test DNS with type AAAA",
|
|
|
|
inputDNS: DNS{
|
|
|
|
QueryType: "AAAA",
|
2020-11-18 23:07:38 +01:00
|
|
|
QueryName: "example.com.",
|
2020-11-18 18:51:22 +01:00
|
|
|
},
|
|
|
|
inputURL: "8.8.8.8",
|
|
|
|
expectedDNSCode: "NOERROR",
|
|
|
|
expectedBody: "2606:2800:220:1:248:1893:25c8:1946",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "test DNS with type CNAME",
|
|
|
|
inputDNS: DNS{
|
|
|
|
QueryType: "CNAME",
|
2020-11-18 23:07:38 +01:00
|
|
|
QueryName: "doc.google.com.",
|
2020-11-18 18:51:22 +01:00
|
|
|
},
|
|
|
|
inputURL: "8.8.8.8",
|
|
|
|
expectedDNSCode: "NOERROR",
|
2020-11-18 23:07:38 +01:00
|
|
|
expectedBody: "writely.l.google.com.",
|
2020-11-18 18:51:22 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "test DNS with type MX",
|
|
|
|
inputDNS: DNS{
|
|
|
|
QueryType: "MX",
|
2020-11-18 23:07:38 +01:00
|
|
|
QueryName: "example.com.",
|
2020-11-18 18:51:22 +01:00
|
|
|
},
|
|
|
|
inputURL: "8.8.8.8",
|
|
|
|
expectedDNSCode: "NOERROR",
|
|
|
|
expectedBody: ".",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "test DNS with type NS",
|
|
|
|
inputDNS: DNS{
|
|
|
|
QueryType: "NS",
|
2020-11-18 23:07:38 +01:00
|
|
|
QueryName: "example.com.",
|
2020-11-18 18:51:22 +01:00
|
|
|
},
|
|
|
|
inputURL: "8.8.8.8",
|
|
|
|
expectedDNSCode: "NOERROR",
|
2020-12-29 23:31:43 +01:00
|
|
|
expectedBody: "*.iana-servers.net.",
|
2020-11-18 18:51:22 +01:00
|
|
|
},
|
2020-11-18 23:07:38 +01:00
|
|
|
{
|
|
|
|
name: "test DNS with fake type and retrieve error",
|
|
|
|
inputDNS: DNS{
|
|
|
|
QueryType: "B",
|
|
|
|
QueryName: "google",
|
|
|
|
},
|
|
|
|
inputURL: "8.8.8.8",
|
|
|
|
isErrExpected: true,
|
|
|
|
},
|
2020-11-18 00:55:31 +01:00
|
|
|
}
|
2020-11-18 18:51:22 +01:00
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
test := test
|
|
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
dns := test.inputDNS
|
|
|
|
result := &Result{}
|
|
|
|
dns.query(test.inputURL, result)
|
2020-11-18 23:07:38 +01:00
|
|
|
if test.isErrExpected && len(result.Errors) == 0 {
|
|
|
|
t.Errorf("there should be errors")
|
2020-11-18 18:51:22 +01:00
|
|
|
}
|
|
|
|
if result.DNSRCode != test.expectedDNSCode {
|
2020-11-19 09:31:30 +01:00
|
|
|
t.Errorf("DNSRCodePlaceholder '%s' should have been %s", result.DNSRCode, test.expectedDNSCode)
|
2020-11-18 18:51:22 +01:00
|
|
|
}
|
|
|
|
|
2020-12-29 23:31:43 +01:00
|
|
|
if test.inputDNS.QueryType == "NS" {
|
|
|
|
// Because there are often multiple nameservers backing a single domain, we'll only look at the suffix
|
|
|
|
if !pattern.Match(test.expectedBody, string(result.Body)) {
|
|
|
|
t.Errorf("got %s, expected result %s,", string(result.Body), test.expectedBody)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if string(result.Body) != test.expectedBody {
|
|
|
|
t.Errorf("got %s, expected result %s,", string(result.Body), test.expectedBody)
|
|
|
|
}
|
2020-11-18 18:51:22 +01:00
|
|
|
}
|
|
|
|
})
|
2020-11-18 00:55:31 +01:00
|
|
|
}
|
2020-11-18 18:51:22 +01:00
|
|
|
}
|
2020-11-18 00:55:31 +01:00
|
|
|
|
2020-11-18 18:51:22 +01:00
|
|
|
func TestService_ValidateAndSetDefaultsWithNoDNSQueryName(t *testing.T) {
|
|
|
|
defer func() { recover() }()
|
|
|
|
dns := &DNS{
|
|
|
|
QueryType: "A",
|
|
|
|
QueryName: "",
|
2020-11-18 00:55:31 +01:00
|
|
|
}
|
2020-11-18 18:51:22 +01:00
|
|
|
dns.validateAndSetDefault()
|
|
|
|
t.Fatal("Should've panicked because service`s dns didn't have a query name, which is a mandatory field for dns")
|
|
|
|
}
|
2020-11-18 00:55:31 +01:00
|
|
|
|
2020-11-18 18:51:22 +01:00
|
|
|
func TestService_ValidateAndSetDefaultsWithInvalidDNSQueryType(t *testing.T) {
|
|
|
|
defer func() { recover() }()
|
|
|
|
dns := &DNS{
|
|
|
|
QueryType: "B",
|
|
|
|
QueryName: "example.com",
|
2020-11-18 00:55:31 +01:00
|
|
|
}
|
2020-11-18 18:51:22 +01:00
|
|
|
dns.validateAndSetDefault()
|
|
|
|
t.Fatal("Should've panicked because service`s dns query type is invalid, it needs to be a valid query name like A, AAAA, CNAME...")
|
2020-11-18 00:55:31 +01:00
|
|
|
}
|