83440cf110
The legacy part for now is internal/errorsx. It will stay there until I figure out whether it also needs some extra bug fixing. The good part is now in internal/netxlite/errorsx and contains all the logic for mapping errors. We need to further improve upon this logic by writing more thorough integration tests for QUIC. We also need to copy the various dialer, conn, etc adapters that set errors. We will put them inside netxlite and we will generate errors in a way that is less crazy with respect to the major operation. (The idea is to always wrap, given that now we measure in an incremental way and we don't measure every operation together.) Part of https://github.com/ooni/probe/issues/1591
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
package resolver_test
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/ooni/probe-cli/v3/internal/engine/netx/resolver"
|
|
"github.com/ooni/probe-cli/v3/internal/netxlite/errorsx"
|
|
)
|
|
|
|
func TestResolverIsBogon(t *testing.T) {
|
|
if resolver.IsBogon("antani") != true {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
if resolver.IsBogon("127.0.0.1") != true {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
if resolver.IsBogon("1.1.1.1") != false {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
if resolver.IsBogon("10.0.1.1") != true {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestBogonAwareResolverWithBogon(t *testing.T) {
|
|
r := resolver.BogonResolver{
|
|
Resolver: resolver.NewFakeResolverWithResult([]string{"127.0.0.1"}),
|
|
}
|
|
addrs, err := r.LookupHost(context.Background(), "dns.google.com")
|
|
if !errors.Is(err, errorsx.ErrDNSBogon) {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if len(addrs) > 0 {
|
|
t.Fatal("expected to see nil here")
|
|
}
|
|
}
|
|
|
|
func TestBogonAwareResolverWithoutBogon(t *testing.T) {
|
|
orig := []string{"8.8.8.8"}
|
|
r := resolver.BogonResolver{
|
|
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 error we expected")
|
|
}
|
|
}
|