2021-02-02 12:05:47 +01:00
|
|
|
package resolver_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/ooni/probe-cli/v3/internal/engine/netx/resolver"
|
2021-07-01 16:34:36 +02:00
|
|
|
"github.com/ooni/probe-cli/v3/internal/errorsx"
|
2021-02-02 12:05:47 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestErrorWrapperSuccess(t *testing.T) {
|
|
|
|
orig := []string{"8.8.8.8"}
|
|
|
|
r := resolver.ErrorWrapperResolver{
|
|
|
|
Resolver: resolver.NewFakeResolverWithResult(orig),
|
|
|
|
}
|
|
|
|
addrs, err := r.LookupHost(context.Background(), "dns.google.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(addrs) != len(orig) || addrs[0] != orig[0] {
|
|
|
|
t.Fatal("not the result we expected")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestErrorWrapperFailure(t *testing.T) {
|
|
|
|
r := resolver.ErrorWrapperResolver{
|
|
|
|
Resolver: resolver.NewFakeResolverThatFails(),
|
|
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
addrs, err := r.LookupHost(ctx, "dns.google.com")
|
|
|
|
if addrs != nil {
|
|
|
|
t.Fatal("expected nil addr here")
|
|
|
|
}
|
2021-07-01 16:34:36 +02:00
|
|
|
var errWrapper *errorsx.ErrWrapper
|
2021-02-02 12:05:47 +01:00
|
|
|
if !errors.As(err, &errWrapper) {
|
|
|
|
t.Fatal("cannot properly cast the returned error")
|
|
|
|
}
|
2021-07-01 16:34:36 +02:00
|
|
|
if errWrapper.Failure != errorsx.FailureDNSNXDOMAINError {
|
2021-02-02 12:05:47 +01:00
|
|
|
t.Fatal("unexpected failure")
|
|
|
|
}
|
2021-07-01 16:34:36 +02:00
|
|
|
if errWrapper.Operation != errorsx.ResolveOperation {
|
2021-02-02 12:05:47 +01:00
|
|
|
t.Fatal("unexpected Operation")
|
|
|
|
}
|
|
|
|
}
|