2021-09-09 21:24:27 +02:00
|
|
|
package dnsx
|
2021-02-02 12:05:47 +01:00
|
|
|
|
|
|
|
import (
|
2021-09-09 21:24:27 +02:00
|
|
|
"bytes"
|
2021-02-02 12:05:47 +01:00
|
|
|
"context"
|
2021-09-09 21:24:27 +02:00
|
|
|
"crypto/tls"
|
2021-02-02 12:05:47 +01:00
|
|
|
"errors"
|
2021-09-09 21:24:27 +02:00
|
|
|
"io"
|
2021-02-02 12:05:47 +01:00
|
|
|
"net"
|
|
|
|
"testing"
|
2021-09-09 21:24:27 +02:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ooni/probe-cli/v3/internal/netxlite/mocks"
|
2021-02-02 12:05:47 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDNSOverTCPTransportQueryTooLarge(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:53"
|
2021-09-09 20:49:12 +02:00
|
|
|
txp := NewDNSOverTCP(new(net.Dialer).DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
reply, err := txp.RoundTrip(context.Background(), make([]byte, 1<<18))
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("expected an error here")
|
|
|
|
}
|
|
|
|
if reply != nil {
|
|
|
|
t.Fatal("expected nil reply here")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDNSOverTCPTransportDialFailure(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:53"
|
|
|
|
mocked := errors.New("mocked error")
|
2021-09-09 21:24:27 +02:00
|
|
|
fakedialer := &mocks.Dialer{
|
|
|
|
MockDialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
|
|
return nil, mocked
|
|
|
|
},
|
|
|
|
}
|
2021-09-09 20:49:12 +02:00
|
|
|
txp := NewDNSOverTCP(fakedialer.DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
reply, err := txp.RoundTrip(context.Background(), make([]byte, 1<<11))
|
|
|
|
if !errors.Is(err, mocked) {
|
|
|
|
t.Fatal("not the error we expected")
|
|
|
|
}
|
|
|
|
if reply != nil {
|
|
|
|
t.Fatal("expected nil reply here")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDNSOverTCPTransportSetDealineFailure(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:53"
|
|
|
|
mocked := errors.New("mocked error")
|
2021-09-09 21:24:27 +02:00
|
|
|
fakedialer := &mocks.Dialer{
|
|
|
|
MockDialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
|
|
return &mocks.Conn{
|
|
|
|
MockSetDeadline: func(t time.Time) error {
|
|
|
|
return mocked
|
|
|
|
},
|
|
|
|
MockClose: func() error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
}
|
2021-09-09 20:49:12 +02:00
|
|
|
txp := NewDNSOverTCP(fakedialer.DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
reply, err := txp.RoundTrip(context.Background(), make([]byte, 1<<11))
|
|
|
|
if !errors.Is(err, mocked) {
|
|
|
|
t.Fatal("not the error we expected")
|
|
|
|
}
|
|
|
|
if reply != nil {
|
|
|
|
t.Fatal("expected nil reply here")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDNSOverTCPTransportWriteFailure(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:53"
|
|
|
|
mocked := errors.New("mocked error")
|
2021-09-09 21:24:27 +02:00
|
|
|
fakedialer := &mocks.Dialer{
|
|
|
|
MockDialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
|
|
return &mocks.Conn{
|
|
|
|
MockSetDeadline: func(t time.Time) error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
MockWrite: func(b []byte) (int, error) {
|
|
|
|
return 0, mocked
|
|
|
|
},
|
|
|
|
MockClose: func() error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
}
|
2021-09-09 20:49:12 +02:00
|
|
|
txp := NewDNSOverTCP(fakedialer.DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
reply, err := txp.RoundTrip(context.Background(), make([]byte, 1<<11))
|
|
|
|
if !errors.Is(err, mocked) {
|
|
|
|
t.Fatal("not the error we expected")
|
|
|
|
}
|
|
|
|
if reply != nil {
|
|
|
|
t.Fatal("expected nil reply here")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDNSOverTCPTransportReadFailure(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:53"
|
|
|
|
mocked := errors.New("mocked error")
|
2021-09-09 21:24:27 +02:00
|
|
|
fakedialer := &mocks.Dialer{
|
|
|
|
MockDialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
|
|
return &mocks.Conn{
|
|
|
|
MockSetDeadline: func(t time.Time) error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
MockWrite: func(b []byte) (int, error) {
|
|
|
|
return len(b), nil
|
|
|
|
},
|
|
|
|
MockRead: func(b []byte) (int, error) {
|
|
|
|
return 0, mocked
|
|
|
|
},
|
|
|
|
MockClose: func() error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
}
|
2021-09-09 20:49:12 +02:00
|
|
|
txp := NewDNSOverTCP(fakedialer.DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
reply, err := txp.RoundTrip(context.Background(), make([]byte, 1<<11))
|
|
|
|
if !errors.Is(err, mocked) {
|
|
|
|
t.Fatal("not the error we expected")
|
|
|
|
}
|
|
|
|
if reply != nil {
|
|
|
|
t.Fatal("expected nil reply here")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDNSOverTCPTransportSecondReadFailure(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:53"
|
|
|
|
mocked := errors.New("mocked error")
|
2021-09-09 21:24:27 +02:00
|
|
|
input := io.MultiReader(
|
|
|
|
bytes.NewReader([]byte{byte(0), byte(2)}),
|
|
|
|
&mocks.Reader{
|
|
|
|
MockRead: func(b []byte) (int, error) {
|
|
|
|
return 0, mocked
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
fakedialer := &mocks.Dialer{
|
|
|
|
MockDialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
|
|
return &mocks.Conn{
|
|
|
|
MockSetDeadline: func(t time.Time) error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
MockWrite: func(b []byte) (int, error) {
|
|
|
|
return len(b), nil
|
|
|
|
},
|
|
|
|
MockRead: input.Read,
|
|
|
|
MockClose: func() error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
}
|
2021-09-09 20:49:12 +02:00
|
|
|
txp := NewDNSOverTCP(fakedialer.DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
reply, err := txp.RoundTrip(context.Background(), make([]byte, 1<<11))
|
|
|
|
if !errors.Is(err, mocked) {
|
|
|
|
t.Fatal("not the error we expected")
|
|
|
|
}
|
|
|
|
if reply != nil {
|
|
|
|
t.Fatal("expected nil reply here")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDNSOverTCPTransportAllGood(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:53"
|
2021-09-09 21:24:27 +02:00
|
|
|
input := bytes.NewReader([]byte{byte(0), byte(1), byte(1)})
|
|
|
|
fakedialer := &mocks.Dialer{
|
|
|
|
MockDialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
|
|
return &mocks.Conn{
|
|
|
|
MockSetDeadline: func(t time.Time) error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
MockWrite: func(b []byte) (int, error) {
|
|
|
|
return len(b), nil
|
|
|
|
},
|
|
|
|
MockRead: input.Read,
|
|
|
|
MockClose: func() error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
}
|
2021-09-09 20:49:12 +02:00
|
|
|
txp := NewDNSOverTCP(fakedialer.DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
reply, err := txp.RoundTrip(context.Background(), make([]byte, 1<<11))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(reply) != 1 || reply[0] != 1 {
|
|
|
|
t.Fatal("not the response we expected")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDNSOverTCPTransportOK(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:53"
|
2021-09-09 20:49:12 +02:00
|
|
|
txp := NewDNSOverTCP(new(net.Dialer).DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
if txp.RequiresPadding() != false {
|
|
|
|
t.Fatal("invalid RequiresPadding")
|
|
|
|
}
|
|
|
|
if txp.Network() != "tcp" {
|
|
|
|
t.Fatal("invalid Network")
|
|
|
|
}
|
|
|
|
if txp.Address() != address {
|
|
|
|
t.Fatal("invalid Address")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDNSOverTLSTransportOK(t *testing.T) {
|
|
|
|
const address = "9.9.9.9:853"
|
2021-09-09 21:24:27 +02:00
|
|
|
txp := NewDNSOverTLS((&tls.Dialer{}).DialContext, address)
|
2021-02-02 12:05:47 +01:00
|
|
|
if txp.RequiresPadding() != true {
|
|
|
|
t.Fatal("invalid RequiresPadding")
|
|
|
|
}
|
|
|
|
if txp.Network() != "dot" {
|
|
|
|
t.Fatal("invalid Network")
|
|
|
|
}
|
|
|
|
if txp.Address() != address {
|
|
|
|
t.Fatal("invalid Address")
|
|
|
|
}
|
|
|
|
}
|