refactor(mlablocate*): move from i/e/internal to internal (#385)
We've been flattening the package structure for some time now. While there, add very basic examples.
This commit is contained in:
parent
d84cf5b69f
commit
85b16c8bd2
9 changed files with 40 additions and 2 deletions
205
internal/mlablocate/mlablocate_test.go
Normal file
205
internal/mlablocate/mlablocate_test.go
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
package mlablocate
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"io"
|
||||
"net/http"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/apex/log"
|
||||
)
|
||||
|
||||
func TestSuccess(t *testing.T) {
|
||||
client := NewClient(
|
||||
http.DefaultClient,
|
||||
log.Log,
|
||||
"miniooni/0.1.0-dev",
|
||||
)
|
||||
result, err := client.Query(context.Background(), "neubot/dash")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if result.FQDN == "" {
|
||||
t.Fatal("unexpected empty fqdn")
|
||||
}
|
||||
}
|
||||
|
||||
func Test404Response(t *testing.T) {
|
||||
client := NewClient(
|
||||
http.DefaultClient,
|
||||
log.Log,
|
||||
"miniooni/0.1.0-dev",
|
||||
)
|
||||
result, err := client.Query(context.Background(), "nonexistent")
|
||||
if err == nil || !strings.Contains(err.Error(), "mlablocate: non-200 status code") {
|
||||
t.Fatal("not the error we expected")
|
||||
}
|
||||
if result.FQDN != "" {
|
||||
t.Fatal("expected empty fqdn")
|
||||
}
|
||||
}
|
||||
|
||||
func TestNewRequestFailure(t *testing.T) {
|
||||
client := NewClient(
|
||||
http.DefaultClient,
|
||||
log.Log,
|
||||
"miniooni/0.1.0-dev",
|
||||
)
|
||||
client.Hostname = "\t"
|
||||
result, err := client.Query(context.Background(), "nonexistent")
|
||||
if err == nil || !strings.Contains(err.Error(), "invalid URL escape") {
|
||||
t.Fatal("not the error we expected")
|
||||
}
|
||||
if result.FQDN != "" {
|
||||
t.Fatal("expected empty fqdn")
|
||||
}
|
||||
}
|
||||
|
||||
func TestHTTPClientDoFailure(t *testing.T) {
|
||||
client := NewClient(
|
||||
http.DefaultClient,
|
||||
log.Log,
|
||||
"miniooni/0.1.0-dev",
|
||||
)
|
||||
expected := errors.New("mocked error")
|
||||
client.HTTPClient = &http.Client{
|
||||
Transport: &roundTripFails{Error: expected},
|
||||
}
|
||||
result, err := client.Query(context.Background(), "nonexistent")
|
||||
if !errors.Is(err, expected) {
|
||||
t.Fatal("not the error we expected")
|
||||
}
|
||||
if result.FQDN != "" {
|
||||
t.Fatal("expected empty fqdn")
|
||||
}
|
||||
}
|
||||
|
||||
type roundTripFails struct {
|
||||
Error error
|
||||
}
|
||||
|
||||
func (txp *roundTripFails) RoundTrip(*http.Request) (*http.Response, error) {
|
||||
return nil, txp.Error
|
||||
}
|
||||
|
||||
func TestCannotReadBody(t *testing.T) {
|
||||
client := NewClient(
|
||||
http.DefaultClient,
|
||||
log.Log,
|
||||
"miniooni/0.1.0-dev",
|
||||
)
|
||||
expected := errors.New("mocked error")
|
||||
client.HTTPClient = &http.Client{
|
||||
Transport: &readingBodyFails{Error: expected},
|
||||
}
|
||||
result, err := client.Query(context.Background(), "nonexistent")
|
||||
if !errors.Is(err, expected) {
|
||||
t.Fatal("not the error we expected")
|
||||
}
|
||||
if result.FQDN != "" {
|
||||
t.Fatal("expected empty fqdn")
|
||||
}
|
||||
}
|
||||
|
||||
type readingBodyFails struct {
|
||||
Error error
|
||||
}
|
||||
|
||||
func (txp *readingBodyFails) RoundTrip(*http.Request) (*http.Response, error) {
|
||||
return &http.Response{
|
||||
StatusCode: 200,
|
||||
Body: &readingBodyFailsBody{Error: txp.Error},
|
||||
}, nil
|
||||
}
|
||||
|
||||
type readingBodyFailsBody struct {
|
||||
Error error
|
||||
}
|
||||
|
||||
func (b *readingBodyFailsBody) Read(p []byte) (int, error) {
|
||||
return 0, b.Error
|
||||
}
|
||||
|
||||
func (b *readingBodyFailsBody) Close() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func TestInvalidJSON(t *testing.T) {
|
||||
client := NewClient(
|
||||
http.DefaultClient,
|
||||
log.Log,
|
||||
"miniooni/0.1.0-dev",
|
||||
)
|
||||
client.HTTPClient = &http.Client{
|
||||
Transport: &invalidJSON{},
|
||||
}
|
||||
result, err := client.Query(context.Background(), "nonexistent")
|
||||
if err == nil || !strings.Contains(err.Error(), "unexpected end of JSON input") {
|
||||
t.Fatal("not the error we expected")
|
||||
}
|
||||
if result.FQDN != "" {
|
||||
t.Fatal("expected empty fqdn")
|
||||
}
|
||||
}
|
||||
|
||||
type invalidJSON struct{}
|
||||
|
||||
func (txp *invalidJSON) RoundTrip(*http.Request) (*http.Response, error) {
|
||||
return &http.Response{
|
||||
StatusCode: 200,
|
||||
Body: &invalidJSONBody{},
|
||||
}, nil
|
||||
}
|
||||
|
||||
type invalidJSONBody struct{}
|
||||
|
||||
func (b *invalidJSONBody) Read(p []byte) (int, error) {
|
||||
if len(p) < 1 {
|
||||
return 0, errors.New("slice too short")
|
||||
}
|
||||
p[0] = '{'
|
||||
return 1, io.EOF
|
||||
}
|
||||
|
||||
func (b *invalidJSONBody) Close() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func TestEmptyFQDN(t *testing.T) {
|
||||
client := NewClient(
|
||||
http.DefaultClient,
|
||||
log.Log,
|
||||
"miniooni/0.1.0-dev",
|
||||
)
|
||||
client.HTTPClient = &http.Client{
|
||||
Transport: &emptyFQDN{},
|
||||
}
|
||||
result, err := client.Query(context.Background(), "nonexistent")
|
||||
if err == nil || !strings.HasSuffix(err.Error(), "returned empty FQDN") {
|
||||
t.Fatal("not the error we expected")
|
||||
}
|
||||
if result.FQDN != "" {
|
||||
t.Fatal("expected empty fqdn")
|
||||
}
|
||||
}
|
||||
|
||||
type emptyFQDN struct{}
|
||||
|
||||
func (txp *emptyFQDN) RoundTrip(*http.Request) (*http.Response, error) {
|
||||
return &http.Response{
|
||||
StatusCode: 200,
|
||||
Body: &emptyFQDNBody{},
|
||||
}, nil
|
||||
}
|
||||
|
||||
type emptyFQDNBody struct{}
|
||||
|
||||
func (b *emptyFQDNBody) Read(p []byte) (int, error) {
|
||||
return copy(p, []byte(`{"fqdn":""}`)), io.EOF
|
||||
}
|
||||
|
||||
func (b *emptyFQDNBody) Close() error {
|
||||
return nil
|
||||
}
|
||||
Loading…
Reference in a new issue