fd5405ade1
Spotted while working on https://github.com/ooni/probe/issues/1417 See https://golang.org/pkg/io/ioutil/
179 lines
4.6 KiB
Go
179 lines
4.6 KiB
Go
package dash
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestNegotiateJSONMarshalError(t *testing.T) {
|
|
expected := errors.New("mocked error")
|
|
deps := FakeDeps{jsonMarshalErr: expected}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if !errors.Is(err, expected) {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if result.Authorization != "" || result.Unchoked != 0 {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestNegotiateNewHTTPRequestFailure(t *testing.T) {
|
|
expected := errors.New("mocked error")
|
|
deps := FakeDeps{newHTTPRequestErr: expected}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if !errors.Is(err, expected) {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if result.Authorization != "" || result.Unchoked != 0 {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestNegotiateHTTPClientDoFailure(t *testing.T) {
|
|
expected := errors.New("mocked error")
|
|
txp := FakeHTTPTransport{err: expected}
|
|
deps := FakeDeps{httpTransport: txp, newHTTPRequestResult: &http.Request{
|
|
Header: http.Header{},
|
|
URL: &url.URL{},
|
|
}}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if !errors.Is(err, expected) {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if result.Authorization != "" || result.Unchoked != 0 {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestNegotiateInternalError(t *testing.T) {
|
|
txp := FakeHTTPTransport{resp: &http.Response{StatusCode: 500}}
|
|
deps := FakeDeps{httpTransport: txp, newHTTPRequestResult: &http.Request{
|
|
Header: http.Header{},
|
|
URL: &url.URL{},
|
|
}}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if !errors.Is(err, errHTTPRequestFailed) {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if result.Authorization != "" || result.Unchoked != 0 {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestNegotiateReadAllFailure(t *testing.T) {
|
|
expected := errors.New("mocked error")
|
|
txp := FakeHTTPTransport{resp: &http.Response{
|
|
Body: io.NopCloser(bytes.NewReader(nil)),
|
|
StatusCode: 200,
|
|
}}
|
|
deps := FakeDeps{
|
|
httpTransport: txp,
|
|
newHTTPRequestResult: &http.Request{
|
|
Header: http.Header{},
|
|
URL: &url.URL{},
|
|
},
|
|
readAllErr: expected,
|
|
}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if !errors.Is(err, expected) {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if result.Authorization != "" || result.Unchoked != 0 {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestNegotiateInvalidJSON(t *testing.T) {
|
|
txp := FakeHTTPTransport{resp: &http.Response{
|
|
Body: io.NopCloser(bytes.NewReader(nil)),
|
|
StatusCode: 200,
|
|
}}
|
|
deps := FakeDeps{
|
|
httpTransport: txp,
|
|
newHTTPRequestResult: &http.Request{
|
|
Header: http.Header{},
|
|
URL: &url.URL{},
|
|
},
|
|
readAllResult: []byte("["),
|
|
}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if err == nil || !strings.HasSuffix(err.Error(), "unexpected end of JSON input") {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if result.Authorization != "" || result.Unchoked != 0 {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestNegotiateServerBusyFirstCase(t *testing.T) {
|
|
txp := FakeHTTPTransport{resp: &http.Response{
|
|
Body: io.NopCloser(bytes.NewReader(nil)),
|
|
StatusCode: 200,
|
|
}}
|
|
deps := FakeDeps{
|
|
httpTransport: txp,
|
|
newHTTPRequestResult: &http.Request{
|
|
Header: http.Header{},
|
|
URL: &url.URL{},
|
|
},
|
|
readAllResult: []byte(`{"authorization": ""}`),
|
|
}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if !errors.Is(err, errServerBusy) {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if result.Authorization != "" || result.Unchoked != 0 {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestNegotiateServerBusyThirdCase(t *testing.T) {
|
|
txp := FakeHTTPTransport{resp: &http.Response{
|
|
Body: io.NopCloser(bytes.NewReader(nil)),
|
|
StatusCode: 200,
|
|
}}
|
|
deps := FakeDeps{
|
|
httpTransport: txp,
|
|
newHTTPRequestResult: &http.Request{
|
|
Header: http.Header{},
|
|
URL: &url.URL{},
|
|
},
|
|
readAllResult: []byte(`{}`),
|
|
}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if !errors.Is(err, errServerBusy) {
|
|
t.Fatal("not the error we expected")
|
|
}
|
|
if result.Authorization != "" || result.Unchoked != 0 {
|
|
t.Fatal("unexpected result")
|
|
}
|
|
}
|
|
|
|
func TestNegotiateSuccess(t *testing.T) {
|
|
txp := FakeHTTPTransport{resp: &http.Response{
|
|
Body: io.NopCloser(bytes.NewReader(nil)),
|
|
StatusCode: 200,
|
|
}}
|
|
deps := FakeDeps{
|
|
httpTransport: txp,
|
|
newHTTPRequestResult: &http.Request{
|
|
Header: http.Header{},
|
|
URL: &url.URL{},
|
|
},
|
|
readAllResult: []byte(`{"authorization": "xx", "unchoked": 1}`),
|
|
}
|
|
result, err := negotiate(context.Background(), "", deps)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if result.Authorization != "xx" || result.Unchoked != 1 {
|
|
t.Fatal("invalid result")
|
|
}
|
|
}
|