refactor(httpx): improve and modernize (1/n) (#647)

This PR starts to implement the refactoring described at https://github.com/ooni/probe/issues/1951. I originally wrote more patches than the ones in this PR, but overall they were not readable. Since I want to squash and merge, here's a reasonable subset of the original patches that will still be readable and understandable in the future.
This commit is contained in:
Simone Basso 2022-01-05 12:48:32 +01:00 committed by GitHub
parent 0a630c1716
commit 7b7df2c6af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 173 additions and 294 deletions

View File

@ -28,7 +28,7 @@ func newclient() probeservices.Client {
txp := netxlite.NewHTTPTransportStdlib(log.Log) txp := netxlite.NewHTTPTransportStdlib(log.Log)
ua := fmt.Sprintf("apitool/%s ooniprobe-engine/%s", version.Version, version.Version) ua := fmt.Sprintf("apitool/%s ooniprobe-engine/%s", version.Version, version.Version)
return probeservices.Client{ return probeservices.Client{
Client: httpx.Client{ APIClient: httpx.APIClient{
BaseURL: "https://ams-pg.ooni.org/", BaseURL: "https://ams-pg.ooni.org/",
HTTPClient: &http.Client{Transport: txp}, HTTPClient: &http.Client{Transport: txp},
Logger: log.Log, Logger: log.Log,

View File

@ -53,7 +53,7 @@ type ControlResponse struct {
func Control( func Control(
ctx context.Context, sess model.ExperimentSession, ctx context.Context, sess model.ExperimentSession,
thAddr string, creq ControlRequest) (out ControlResponse, err error) { thAddr string, creq ControlRequest) (out ControlResponse, err error) {
clnt := httpx.Client{ clnt := &httpx.APIClient{
BaseURL: thAddr, BaseURL: thAddr,
HTTPClient: sess.DefaultHTTPClient(), HTTPClient: sess.DefaultHTTPClient(),
Logger: sess.Logger(), Logger: sess.Logger(),

View File

@ -13,7 +13,7 @@ import (
func Control( func Control(
ctx context.Context, sess model.ExperimentSession, ctx context.Context, sess model.ExperimentSession,
thAddr string, resourcePath string, creq CtrlRequest) (out CtrlResponse, err error) { thAddr string, resourcePath string, creq CtrlRequest) (out CtrlResponse, err error) {
clnt := httpx.Client{ clnt := &httpx.APIClient{
BaseURL: thAddr, BaseURL: thAddr,
HTTPClient: sess.DefaultHTTPClient(), HTTPClient: sess.DefaultHTTPClient(),
Logger: sess.Logger(), Logger: sess.Logger(),

View File

@ -19,7 +19,7 @@ func avastIPLookup(
userAgent string, userAgent string,
) (string, error) { ) (string, error) {
var v avastResponse var v avastResponse
err := (httpx.Client{ err := (&httpx.APIClient{
BaseURL: "https://ip-info.ff.avast.com", BaseURL: "https://ip-info.ff.avast.com",
HTTPClient: httpClient, HTTPClient: httpClient,
Logger: logger, Logger: logger,

View File

@ -16,7 +16,7 @@ func ipConfigIPLookup(
logger model.Logger, logger model.Logger,
userAgent string, userAgent string,
) (string, error) { ) (string, error) {
data, err := (httpx.Client{ data, err := (&httpx.APIClient{
BaseURL: "https://ipconfig.io", BaseURL: "https://ipconfig.io",
HTTPClient: httpClient, HTTPClient: httpClient,
Logger: logger, Logger: logger,

View File

@ -20,7 +20,7 @@ func ipInfoIPLookup(
userAgent string, userAgent string,
) (string, error) { ) (string, error) {
var v ipInfoResponse var v ipInfoResponse
err := (httpx.Client{ err := (&httpx.APIClient{
Accept: "application/json", Accept: "application/json",
BaseURL: "https://ipinfo.io", BaseURL: "https://ipinfo.io",
HTTPClient: httpClient, HTTPClient: httpClient,

View File

@ -20,7 +20,7 @@ func ubuntuIPLookup(
logger model.Logger, logger model.Logger,
userAgent string, userAgent string,
) (string, error) { ) (string, error) {
data, err := (httpx.Client{ data, err := (&httpx.APIClient{
BaseURL: "https://geoip.ubuntu.com/", BaseURL: "https://geoip.ubuntu.com/",
HTTPClient: httpClient, HTTPClient: httpClient,
Logger: logger, Logger: logger,

View File

@ -1,31 +0,0 @@
package httpx
import (
"context"
"crypto/sha256"
"fmt"
)
// FetchResource fetches the specified resource and returns it.
func (c Client) FetchResource(ctx context.Context, URLPath string) ([]byte, error) {
request, err := c.NewRequest(ctx, "GET", URLPath, nil, nil)
if err != nil {
return nil, err
}
return c.Do(request)
}
// FetchResourceAndVerify fetches and verifies a specific resource.
func (c Client) FetchResourceAndVerify(ctx context.Context, URL, SHA256Sum string) ([]byte, error) {
c.Logger.Debugf("httpx: expected SHA256: %s", SHA256Sum)
data, err := c.FetchResource(ctx, URL)
if err != nil {
return nil, err
}
s := fmt.Sprintf("%x", sha256.Sum256(data))
c.Logger.Debugf("httpx: real SHA256: %s", s)
if SHA256Sum != s {
return nil, fmt.Errorf("httpx: SHA256 mismatch: got %s and expected %s", s, SHA256Sum)
}
return data, nil
}

View File

@ -1,154 +0,0 @@
package httpx_test
import (
"context"
"errors"
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/apex/log"
"github.com/ooni/probe-cli/v3/internal/engine/httpx"
)
func TestFetchResourceIntegration(t *testing.T) {
log.SetLevel(log.DebugLevel)
ctx := context.Background()
data, err := (httpx.Client{
BaseURL: "http://facebook.com/",
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResource(ctx, "/robots.txt")
if err != nil {
t.Fatal(err)
}
if len(data) <= 0 {
t.Fatal("Did not expect an empty resource")
}
}
func TestFetchResourceExpiredContext(t *testing.T) {
log.SetLevel(log.DebugLevel)
ctx, cancel := context.WithCancel(context.Background())
cancel()
data, err := (httpx.Client{
BaseURL: "http://facebook.com/",
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResource(ctx, "/robots.txt")
if !errors.Is(err, context.Canceled) {
t.Fatal("not the error we expected")
}
if len(data) != 0 {
t.Fatal("expected an empty resource")
}
}
func TestFetchResourceAndVerifyIntegration(t *testing.T) {
log.SetLevel(log.DebugLevel)
ctx := context.Background()
data, err := (httpx.Client{
BaseURL: "https://github.com/",
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResourceAndVerify(
ctx,
"/measurement-kit/generic-assets/releases/download/20190426155936/generic-assets-20190426155936.tar.gz",
"34d8a9c8ab30c242469482dc280be832d8a06b4400f8927604dd361bf979b795",
)
if err != nil {
t.Fatal(err)
}
if len(data) <= 0 {
t.Fatal("Did not expect an empty resource")
}
}
func TestFetchResourceInvalidURL(t *testing.T) {
log.SetLevel(log.DebugLevel)
ctx := context.Background()
data, err := (httpx.Client{
BaseURL: "http://\t/",
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResource(ctx, "/robots.txt")
if err == nil || !strings.HasSuffix(err.Error(), "invalid control character in URL") {
t.Fatal("not the error we expected")
}
if len(data) != 0 {
t.Fatal("expected an empty resource")
}
}
func TestFetchResource400(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(400)
},
))
defer server.Close()
log.SetLevel(log.DebugLevel)
ctx := context.Background()
data, err := (httpx.Client{
Authorization: "foobar",
BaseURL: server.URL,
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResource(ctx, "")
if err == nil || !strings.HasSuffix(err.Error(), "400 Bad Request") {
t.Fatal("not the error we expected")
}
if len(data) != 0 {
t.Fatal("expected an empty resource")
}
}
func TestFetchResourceAndVerify400(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(400)
},
))
defer server.Close()
log.SetLevel(log.DebugLevel)
ctx := context.Background()
data, err := (httpx.Client{
BaseURL: server.URL,
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResourceAndVerify(ctx, "", "abcde")
if err == nil || !strings.HasSuffix(err.Error(), "400 Bad Request") {
t.Fatal("not the error we expected")
}
if len(data) != 0 {
t.Fatal("expected an empty resource")
}
}
func TestFetchResourceAndVerifyInvalidSHA256(t *testing.T) {
log.SetLevel(log.DebugLevel)
ctx := context.Background()
data, err := (httpx.Client{
BaseURL: "https://github.com/",
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResourceAndVerify(
ctx,
"/measurement-kit/generic-assets/releases/download/20190426155936/generic-assets-20190426155936.tar.gz",
"34d8a9ceeb30c242469482dc280be832d8a06b4400f8927604dd361bf979b795",
)
if err == nil || !strings.HasPrefix(err.Error(), "httpx: SHA256 mismatch:") {
t.Fatal("not the error we expected")
}
if len(data) != 0 {
t.Fatal("expected an empty resource")
}
}

View File

@ -5,6 +5,7 @@ import (
"bytes" "bytes"
"context" "context"
"encoding/json" "encoding/json"
"errors"
"fmt" "fmt"
"io" "io"
"net/http" "net/http"
@ -14,33 +15,38 @@ import (
"github.com/ooni/probe-cli/v3/internal/netxlite" "github.com/ooni/probe-cli/v3/internal/netxlite"
) )
// Client is an extended client. // DefaultMaxBodySize is the default value for the maximum
type Client struct { // body size you can fetch using an APIClient.
// Accept contains the accept header. const DefaultMaxBodySize = 1 << 22
// APIClient is an extended HTTP client. To construct this APIClient, make
// sure you initialize all fields marked as MANDATORY.
type APIClient struct {
// Accept contains the OPTIONAL accept header.
Accept string Accept string
// Authorization contains the authorization header. // Authorization contains the OPTIONAL authorization header.
Authorization string Authorization string
// BaseURL is the base URL of the API. // BaseURL is the MANDATORY base URL of the API.
BaseURL string BaseURL string
// HTTPClient is the real http client to use. // HTTPClient is the MANDATORY underlying http client to use.
HTTPClient *http.Client HTTPClient model.HTTPClient
// Host allows to set a specific host header. This is useful // Host allows to OPTIONALLY set a specific host header. This is useful
// to implement, e.g., cloudfronting. // to implement, e.g., cloudfronting.
Host string Host string
// Logger is the logger to use. // Logger is MANDATORY the logger to use.
Logger model.DebugLogger Logger model.DebugLogger
// UserAgent is the user agent to use. // UserAgent is the OPTIONAL user agent to use.
UserAgent string UserAgent string
} }
// NewRequestWithJSONBody creates a new request with a JSON body // newRequestWithJSONBody creates a new request with a JSON body
func (c Client) NewRequestWithJSONBody( func (c *APIClient) newRequestWithJSONBody(
ctx context.Context, method, resourcePath string, ctx context.Context, method, resourcePath string,
query url.Values, body interface{}) (*http.Request, error) { query url.Values, body interface{}) (*http.Request, error) {
data, err := json.Marshal(body) data, err := json.Marshal(body)
@ -48,7 +54,7 @@ func (c Client) NewRequestWithJSONBody(
return nil, err return nil, err
} }
c.Logger.Debugf("httpx: request body: %d bytes", len(data)) c.Logger.Debugf("httpx: request body: %d bytes", len(data))
request, err := c.NewRequest( request, err := c.newRequest(
ctx, method, resourcePath, query, bytes.NewReader(data)) ctx, method, resourcePath, query, bytes.NewReader(data))
if err != nil { if err != nil {
return nil, err return nil, err
@ -59,8 +65,8 @@ func (c Client) NewRequestWithJSONBody(
return request, nil return request, nil
} }
// NewRequest creates a new request. // newRequest creates a new request.
func (c Client) NewRequest(ctx context.Context, method, resourcePath string, func (c *APIClient) newRequest(ctx context.Context, method, resourcePath string,
query url.Values, body io.Reader) (*http.Request, error) { query url.Values, body io.Reader) (*http.Request, error) {
URL, err := url.Parse(c.BaseURL) URL, err := url.Parse(c.BaseURL)
if err != nil { if err != nil {
@ -70,8 +76,6 @@ func (c Client) NewRequest(ctx context.Context, method, resourcePath string,
if query != nil { if query != nil {
URL.RawQuery = query.Encode() URL.RawQuery = query.Encode()
} }
c.Logger.Debugf("httpx: method: %s", method)
c.Logger.Debugf("httpx: URL: %s", URL.String())
request, err := http.NewRequest(method, URL.String(), body) request, err := http.NewRequest(method, URL.String(), body)
if err != nil { if err != nil {
return nil, err return nil, err
@ -87,23 +91,31 @@ func (c Client) NewRequest(ctx context.Context, method, resourcePath string,
return request.WithContext(ctx), nil return request.WithContext(ctx), nil
} }
// Do performs the provided request and returns the response body or an error. // ErrRequestFailed indicates that the server returned >= 400.
func (c Client) Do(request *http.Request) ([]byte, error) { var ErrRequestFailed = errors.New("httpx: request failed")
// do performs the provided request and returns the response body or an error.
func (c *APIClient) do(request *http.Request) ([]byte, error) {
response, err := c.HTTPClient.Do(request) response, err := c.HTTPClient.Do(request)
if err != nil { if err != nil {
return nil, err return nil, err
} }
defer response.Body.Close() defer response.Body.Close()
if response.StatusCode >= 400 { if response.StatusCode >= 400 {
return nil, fmt.Errorf("httpx: request failed: %s", response.Status) return nil, fmt.Errorf("%w: %s", ErrRequestFailed, response.Status)
} }
return netxlite.ReadAllContext(request.Context(), response.Body) r := io.LimitReader(response.Body, DefaultMaxBodySize)
data, err := netxlite.ReadAllContext(request.Context(), r)
if err != nil {
return nil, err
}
return data, nil
} }
// DoJSON performs the provided request and unmarshals the JSON response body // doJSON performs the provided request and unmarshals the JSON response body
// into the provided output variable. // into the provided output variable.
func (c Client) DoJSON(request *http.Request, output interface{}) error { func (c *APIClient) doJSON(request *http.Request, output interface{}) error {
data, err := c.Do(request) data, err := c.do(request)
if err != nil { if err != nil {
return err return err
} }
@ -114,41 +126,39 @@ func (c Client) DoJSON(request *http.Request, output interface{}) error {
// GetJSON reads the JSON resource at resourcePath and unmarshals the // GetJSON reads the JSON resource at resourcePath and unmarshals the
// results into output. The request is bounded by the lifetime of the // results into output. The request is bounded by the lifetime of the
// context passed as argument. Returns the error that occurred. // context passed as argument. Returns the error that occurred.
func (c Client) GetJSON(ctx context.Context, resourcePath string, output interface{}) error { func (c *APIClient) GetJSON(ctx context.Context, resourcePath string, output interface{}) error {
return c.GetJSONWithQuery(ctx, resourcePath, nil, output) return c.GetJSONWithQuery(ctx, resourcePath, nil, output)
} }
// GetJSONWithQuery is like GetJSON but also has a query. // GetJSONWithQuery is like GetJSON but also has a query.
func (c Client) GetJSONWithQuery( func (c *APIClient) GetJSONWithQuery(
ctx context.Context, resourcePath string, ctx context.Context, resourcePath string,
query url.Values, output interface{}) error { query url.Values, output interface{}) error {
request, err := c.NewRequest(ctx, "GET", resourcePath, query, nil) request, err := c.newRequest(ctx, "GET", resourcePath, query, nil)
if err != nil { if err != nil {
return err return err
} }
return c.DoJSON(request, output) return c.doJSON(request, output)
} }
// PostJSON creates a JSON subresource of the resource at resourcePath // PostJSON creates a JSON subresource of the resource at resourcePath
// using the JSON document at input and returning the result into the // using the JSON document at input and returning the result into the
// JSON document at output. The request is bounded by the context's // JSON document at output. The request is bounded by the context's
// lifetime. Returns the error that occurred. // lifetime. Returns the error that occurred.
func (c Client) PostJSON( func (c *APIClient) PostJSON(
ctx context.Context, resourcePath string, input, output interface{}) error { ctx context.Context, resourcePath string, input, output interface{}) error {
request, err := c.NewRequestWithJSONBody(ctx, "POST", resourcePath, nil, input) request, err := c.newRequestWithJSONBody(ctx, "POST", resourcePath, nil, input)
if err != nil { if err != nil {
return err return err
} }
return c.DoJSON(request, output) return c.doJSON(request, output)
} }
// PutJSON updates a JSON resource at a specific path and returns // FetchResource fetches the specified resource and returns it.
// the error that occurred and possibly an output document func (c *APIClient) FetchResource(ctx context.Context, URLPath string) ([]byte, error) {
func (c Client) PutJSON( request, err := c.newRequest(ctx, "GET", URLPath, nil, nil)
ctx context.Context, resourcePath string, input, output interface{}) error {
request, err := c.NewRequestWithJSONBody(ctx, "PUT", resourcePath, nil, input)
if err != nil { if err != nil {
return err return nil, err
} }
return c.DoJSON(request, output) return c.do(request)
} }

View File

@ -1,22 +1,22 @@
package httpx_test package httpx
import ( import (
"context" "context"
"errors" "errors"
"io" "io"
"net/http" "net/http"
"net/http/httptest"
"net/url" "net/url"
"strings" "strings"
"testing" "testing"
"github.com/apex/log" "github.com/apex/log"
"github.com/ooni/probe-cli/v3/internal/engine/httpx"
) )
const userAgent = "miniooni/0.1.0-dev" const userAgent = "miniooni/0.1.0-dev"
func newClient() httpx.Client { func newClient() *APIClient {
return httpx.Client{ return &APIClient{
BaseURL: "https://httpbin.org", BaseURL: "https://httpbin.org",
HTTPClient: http.DefaultClient, HTTPClient: http.DefaultClient,
Logger: log.Log, Logger: log.Log,
@ -26,7 +26,7 @@ func newClient() httpx.Client {
func TestNewRequestWithJSONBodyJSONMarshalFailure(t *testing.T) { func TestNewRequestWithJSONBodyJSONMarshalFailure(t *testing.T) {
client := newClient() client := newClient()
req, err := client.NewRequestWithJSONBody( req, err := client.newRequestWithJSONBody(
context.Background(), "GET", "/", nil, make(chan interface{}), context.Background(), "GET", "/", nil, make(chan interface{}),
) )
if err == nil || !strings.HasPrefix(err.Error(), "json: unsupported type") { if err == nil || !strings.HasPrefix(err.Error(), "json: unsupported type") {
@ -40,7 +40,7 @@ func TestNewRequestWithJSONBodyJSONMarshalFailure(t *testing.T) {
func TestNewRequestWithJSONBodyNewRequestFailure(t *testing.T) { func TestNewRequestWithJSONBodyNewRequestFailure(t *testing.T) {
client := newClient() client := newClient()
client.BaseURL = "\t\t\t" // cause URL parse error client.BaseURL = "\t\t\t" // cause URL parse error
req, err := client.NewRequestWithJSONBody( req, err := client.newRequestWithJSONBody(
context.Background(), "GET", "/", nil, nil, context.Background(), "GET", "/", nil, nil,
) )
if err == nil || !strings.HasSuffix(err.Error(), "invalid control character in URL") { if err == nil || !strings.HasSuffix(err.Error(), "invalid control character in URL") {
@ -56,7 +56,7 @@ func TestNewRequestWithQuery(t *testing.T) {
q := url.Values{} q := url.Values{}
q.Add("antani", "mascetti") q.Add("antani", "mascetti")
q.Add("melandri", "conte") q.Add("melandri", "conte")
req, err := client.NewRequest( req, err := client.newRequest(
context.Background(), "GET", "/", q, nil, context.Background(), "GET", "/", q, nil,
) )
if err != nil { if err != nil {
@ -72,7 +72,7 @@ func TestNewRequestWithQuery(t *testing.T) {
func TestNewRequestNewRequestFailure(t *testing.T) { func TestNewRequestNewRequestFailure(t *testing.T) {
client := newClient() client := newClient()
req, err := client.NewRequest( req, err := client.newRequest(
context.Background(), "\t\t\t", "/", nil, nil, context.Background(), "\t\t\t", "/", nil, nil,
) )
if err == nil || !strings.HasPrefix(err.Error(), "net/http: invalid method") { if err == nil || !strings.HasPrefix(err.Error(), "net/http: invalid method") {
@ -86,7 +86,7 @@ func TestNewRequestNewRequestFailure(t *testing.T) {
func TestNewRequestCloudfronting(t *testing.T) { func TestNewRequestCloudfronting(t *testing.T) {
client := newClient() client := newClient()
client.Host = "www.x.org" client.Host = "www.x.org"
req, err := client.NewRequest( req, err := client.newRequest(
context.Background(), "GET", "/", nil, nil, context.Background(), "GET", "/", nil, nil,
) )
if err != nil { if err != nil {
@ -100,7 +100,7 @@ func TestNewRequestCloudfronting(t *testing.T) {
func TestNewRequestAcceptIsSet(t *testing.T) { func TestNewRequestAcceptIsSet(t *testing.T) {
client := newClient() client := newClient()
client.Accept = "application/xml" client.Accept = "application/xml"
req, err := client.NewRequestWithJSONBody( req, err := client.newRequestWithJSONBody(
context.Background(), "GET", "/", nil, []string{}, context.Background(), "GET", "/", nil, []string{},
) )
if err != nil { if err != nil {
@ -113,7 +113,7 @@ func TestNewRequestAcceptIsSet(t *testing.T) {
func TestNewRequestContentTypeIsSet(t *testing.T) { func TestNewRequestContentTypeIsSet(t *testing.T) {
client := newClient() client := newClient()
req, err := client.NewRequestWithJSONBody( req, err := client.newRequestWithJSONBody(
context.Background(), "GET", "/", nil, []string{}, context.Background(), "GET", "/", nil, []string{},
) )
if err != nil { if err != nil {
@ -127,7 +127,7 @@ func TestNewRequestContentTypeIsSet(t *testing.T) {
func TestNewRequestAuthorizationHeader(t *testing.T) { func TestNewRequestAuthorizationHeader(t *testing.T) {
client := newClient() client := newClient()
client.Authorization = "deadbeef" client.Authorization = "deadbeef"
req, err := client.NewRequest( req, err := client.newRequest(
context.Background(), "GET", "/", nil, nil, context.Background(), "GET", "/", nil, nil,
) )
if err != nil { if err != nil {
@ -140,7 +140,7 @@ func TestNewRequestAuthorizationHeader(t *testing.T) {
func TestNewRequestUserAgentIsSet(t *testing.T) { func TestNewRequestUserAgentIsSet(t *testing.T) {
client := newClient() client := newClient()
req, err := client.NewRequest( req, err := client.newRequest(
context.Background(), "GET", "/", nil, nil, context.Background(), "GET", "/", nil, nil,
) )
if err != nil { if err != nil {
@ -154,10 +154,10 @@ func TestNewRequestUserAgentIsSet(t *testing.T) {
func TestClientDoJSONClientDoFailure(t *testing.T) { func TestClientDoJSONClientDoFailure(t *testing.T) {
expected := errors.New("mocked error") expected := errors.New("mocked error")
client := newClient() client := newClient()
client.HTTPClient = &http.Client{Transport: httpx.FakeTransport{ client.HTTPClient = &http.Client{Transport: FakeTransport{
Err: expected, Err: expected,
}} }}
err := client.DoJSON(&http.Request{URL: &url.URL{Scheme: "https", Host: "x.org"}}, nil) err := client.doJSON(&http.Request{URL: &url.URL{Scheme: "https", Host: "x.org"}}, nil)
if !errors.Is(err, expected) { if !errors.Is(err, expected) {
t.Fatal("not the error we expected") t.Fatal("not the error we expected")
} }
@ -165,13 +165,13 @@ func TestClientDoJSONClientDoFailure(t *testing.T) {
func TestClientDoJSONResponseNotSuccessful(t *testing.T) { func TestClientDoJSONResponseNotSuccessful(t *testing.T) {
client := newClient() client := newClient()
client.HTTPClient = &http.Client{Transport: httpx.FakeTransport{ client.HTTPClient = &http.Client{Transport: FakeTransport{
Resp: &http.Response{ Resp: &http.Response{
StatusCode: 401, StatusCode: 401,
Body: httpx.FakeBody{}, Body: FakeBody{},
}, },
}} }}
err := client.DoJSON(&http.Request{URL: &url.URL{Scheme: "https", Host: "x.org"}}, nil) err := client.doJSON(&http.Request{URL: &url.URL{Scheme: "https", Host: "x.org"}}, nil)
if err == nil || !strings.HasPrefix(err.Error(), "httpx: request failed") { if err == nil || !strings.HasPrefix(err.Error(), "httpx: request failed") {
t.Fatal("not the error we expected") t.Fatal("not the error we expected")
} }
@ -180,15 +180,15 @@ func TestClientDoJSONResponseNotSuccessful(t *testing.T) {
func TestClientDoJSONResponseReadingBodyError(t *testing.T) { func TestClientDoJSONResponseReadingBodyError(t *testing.T) {
expected := errors.New("mocked error") expected := errors.New("mocked error")
client := newClient() client := newClient()
client.HTTPClient = &http.Client{Transport: httpx.FakeTransport{ client.HTTPClient = &http.Client{Transport: FakeTransport{
Resp: &http.Response{ Resp: &http.Response{
StatusCode: 200, StatusCode: 200,
Body: httpx.FakeBody{ Body: FakeBody{
Err: expected, Err: expected,
}, },
}, },
}} }}
err := client.DoJSON(&http.Request{URL: &url.URL{Scheme: "https", Host: "x.org"}}, nil) err := client.doJSON(&http.Request{URL: &url.URL{Scheme: "https", Host: "x.org"}}, nil)
if !errors.Is(err, expected) { if !errors.Is(err, expected) {
t.Fatal("not the error we expected") t.Fatal("not the error we expected")
} }
@ -196,15 +196,15 @@ func TestClientDoJSONResponseReadingBodyError(t *testing.T) {
func TestClientDoJSONResponseIsNotJSON(t *testing.T) { func TestClientDoJSONResponseIsNotJSON(t *testing.T) {
client := newClient() client := newClient()
client.HTTPClient = &http.Client{Transport: httpx.FakeTransport{ client.HTTPClient = &http.Client{Transport: FakeTransport{
Resp: &http.Response{ Resp: &http.Response{
StatusCode: 200, StatusCode: 200,
Body: httpx.FakeBody{ Body: FakeBody{
Err: io.EOF, Err: io.EOF,
}, },
}, },
}} }}
err := client.DoJSON(&http.Request{URL: &url.URL{Scheme: "https", Host: "x.org"}}, nil) err := client.doJSON(&http.Request{URL: &url.URL{Scheme: "https", Host: "x.org"}}, nil)
if err == nil || err.Error() != "unexpected end of JSON input" { if err == nil || err.Error() != "unexpected end of JSON input" {
t.Fatal("not the error we expected") t.Fatal("not the error we expected")
} }
@ -248,22 +248,6 @@ func TestCreateJSONSuccess(t *testing.T) {
} }
} }
func TestUpdateJSONSuccess(t *testing.T) {
headers := httpbinheaders{
Headers: map[string]string{
"Foo": "bar",
},
}
var response httpbinpost
err := newClient().PutJSON(context.Background(), "/put", &headers, &response)
if err != nil {
t.Fatal(err)
}
if response.Data != `{"headers":{"Foo":"bar"}}` {
t.Fatal(response.Data)
}
}
func TestReadJSONFailure(t *testing.T) { func TestReadJSONFailure(t *testing.T) {
var headers httpbinheaders var headers httpbinheaders
client := newClient() client := newClient()
@ -284,12 +268,78 @@ func TestCreateJSONFailure(t *testing.T) {
} }
} }
func TestUpdateJSONFailure(t *testing.T) { func TestFetchResourceIntegration(t *testing.T) {
var headers httpbinheaders log.SetLevel(log.DebugLevel)
client := newClient() ctx := context.Background()
client.BaseURL = "\t\t\t\t" data, err := (&APIClient{
err := client.PutJSON(context.Background(), "/headers", &headers, &headers) BaseURL: "http://facebook.com/",
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResource(ctx, "/robots.txt")
if err != nil {
t.Fatal(err)
}
if len(data) <= 0 {
t.Fatal("Did not expect an empty resource")
}
}
func TestFetchResourceExpiredContext(t *testing.T) {
log.SetLevel(log.DebugLevel)
ctx, cancel := context.WithCancel(context.Background())
cancel()
data, err := (&APIClient{
BaseURL: "http://facebook.com/",
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResource(ctx, "/robots.txt")
if !errors.Is(err, context.Canceled) {
t.Fatal("not the error we expected")
}
if len(data) != 0 {
t.Fatal("expected an empty resource")
}
}
func TestFetchResourceInvalidURL(t *testing.T) {
log.SetLevel(log.DebugLevel)
ctx := context.Background()
data, err := (&APIClient{
BaseURL: "http://\t/",
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResource(ctx, "/robots.txt")
if err == nil || !strings.HasSuffix(err.Error(), "invalid control character in URL") { if err == nil || !strings.HasSuffix(err.Error(), "invalid control character in URL") {
t.Fatal("not the error we expected") t.Fatal("not the error we expected")
} }
if len(data) != 0 {
t.Fatal("expected an empty resource")
}
}
func TestFetchResource400(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(400)
},
))
defer server.Close()
log.SetLevel(log.DebugLevel)
ctx := context.Background()
data, err := (&APIClient{
Authorization: "foobar",
BaseURL: server.URL,
HTTPClient: http.DefaultClient,
Logger: log.Log,
UserAgent: "ooniprobe-engine/0.1.0",
}).FetchResource(ctx, "")
if err == nil || !strings.HasSuffix(err.Error(), "400 Bad Request") {
t.Fatal("not the error we expected")
}
if len(data) != 0 {
t.Fatal("expected an empty resource")
}
} }

View File

@ -9,6 +9,6 @@ import (
// GetTestHelpers is like GetCollectors but for test helpers. // GetTestHelpers is like GetCollectors but for test helpers.
func (c Client) GetTestHelpers( func (c Client) GetTestHelpers(
ctx context.Context) (output map[string][]model.OOAPIService, err error) { ctx context.Context) (output map[string][]model.OOAPIService, err error) {
err = c.Client.GetJSON(ctx, "/api/v1/test-helpers", &output) err = c.APIClient.GetJSON(ctx, "/api/v1/test-helpers", &output)
return return
} }

View File

@ -16,7 +16,7 @@ type checkInResult struct {
// Returns the list of tests to run and the URLs, on success, or an explanatory error, in case of failure. // Returns the list of tests to run and the URLs, on success, or an explanatory error, in case of failure.
func (c Client) CheckIn(ctx context.Context, config model.OOAPICheckInConfig) (*model.OOAPICheckInInfo, error) { func (c Client) CheckIn(ctx context.Context, config model.OOAPICheckInConfig) (*model.OOAPICheckInInfo, error) {
var response checkInResult var response checkInResult
if err := c.Client.PostJSON(ctx, "/api/v1/check-in", config, &response); err != nil { if err := c.APIClient.PostJSON(ctx, "/api/v1/check-in", config, &response); err != nil {
return nil, err return nil, err
} }
return &response.Tests, nil return &response.Tests, nil

View File

@ -16,7 +16,7 @@ func (c Client) CheckReportID(ctx context.Context, reportID string) (bool, error
query := url.Values{} query := url.Values{}
query.Add("report_id", reportID) query.Add("report_id", reportID)
var response checkReportIDResponse var response checkReportIDResponse
err := (httpx.Client{ err := (&httpx.APIClient{
BaseURL: c.BaseURL, BaseURL: c.BaseURL,
HTTPClient: c.HTTPClient, HTTPClient: c.HTTPClient,
Logger: c.Logger, Logger: c.Logger,

View File

@ -15,7 +15,7 @@ import (
func TestCheckReportIDWorkingAsIntended(t *testing.T) { func TestCheckReportIDWorkingAsIntended(t *testing.T) {
client := probeservices.Client{ client := probeservices.Client{
Client: httpx.Client{ APIClient: httpx.APIClient{
BaseURL: "https://ams-pg.ooni.org/", BaseURL: "https://ams-pg.ooni.org/",
HTTPClient: http.DefaultClient, HTTPClient: http.DefaultClient,
Logger: log.Log, Logger: log.Log,
@ -38,7 +38,7 @@ func TestCheckReportIDWorkingAsIntended(t *testing.T) {
func TestCheckReportIDWorkingWithCancelledContext(t *testing.T) { func TestCheckReportIDWorkingWithCancelledContext(t *testing.T) {
client := probeservices.Client{ client := probeservices.Client{
Client: httpx.Client{ APIClient: httpx.APIClient{
BaseURL: "https://ams-pg.ooni.org/", BaseURL: "https://ams-pg.ooni.org/",
HTTPClient: http.DefaultClient, HTTPClient: http.DefaultClient,
Logger: log.Log, Logger: log.Log,

View File

@ -105,7 +105,7 @@ func (c Client) OpenReport(ctx context.Context, rt ReportTemplate) (ReportChanne
return nil, ErrUnsupportedFormat return nil, ErrUnsupportedFormat
} }
var cor collectorOpenResponse var cor collectorOpenResponse
if err := c.Client.PostJSON(ctx, "/report", rt, &cor); err != nil { if err := c.APIClient.PostJSON(ctx, "/report", rt, &cor); err != nil {
return nil, err return nil, err
} }
for _, format := range cor.SupportedFormats { for _, format := range cor.SupportedFormats {
@ -144,7 +144,7 @@ func (r reportChan) CanSubmit(m *model.Measurement) bool {
func (r reportChan) SubmitMeasurement(ctx context.Context, m *model.Measurement) error { func (r reportChan) SubmitMeasurement(ctx context.Context, m *model.Measurement) error {
var updateResponse collectorUpdateResponse var updateResponse collectorUpdateResponse
m.ReportID = r.ID m.ReportID = r.ID
err := r.client.Client.PostJSON( err := r.client.APIClient.PostJSON(
ctx, fmt.Sprintf("/report/%s", r.ID), collectorUpdateRequest{ ctx, fmt.Sprintf("/report/%s", r.ID), collectorUpdateRequest{
Format: "json", Format: "json",
Content: m, Content: m,

View File

@ -29,7 +29,7 @@ func (c Client) MaybeLogin(ctx context.Context) error {
} }
c.LoginCalls.Add(1) c.LoginCalls.Add(1)
var auth LoginAuth var auth LoginAuth
if err := c.Client.PostJSON(ctx, "/api/v1/login", *creds, &auth); err != nil { if err := c.APIClient.PostJSON(ctx, "/api/v1/login", *creds, &auth); err != nil {
return err return err
} }
state.Expire = auth.Expire state.Expire = auth.Expire

View File

@ -54,7 +54,7 @@ func (c Client) GetMeasurementMeta(
query.Add("full", "true") query.Add("full", "true")
} }
var response MeasurementMeta var response MeasurementMeta
err := (httpx.Client{ err := (&httpx.APIClient{
BaseURL: c.BaseURL, BaseURL: c.BaseURL,
HTTPClient: c.HTTPClient, HTTPClient: c.HTTPClient,
Logger: c.Logger, Logger: c.Logger,

View File

@ -16,7 +16,7 @@ import (
func TestGetMeasurementMetaWorkingAsIntended(t *testing.T) { func TestGetMeasurementMetaWorkingAsIntended(t *testing.T) {
client := probeservices.Client{ client := probeservices.Client{
Client: httpx.Client{ APIClient: httpx.APIClient{
BaseURL: "https://ams-pg.ooni.org/", BaseURL: "https://ams-pg.ooni.org/",
HTTPClient: http.DefaultClient, HTTPClient: http.DefaultClient,
Logger: log.Log, Logger: log.Log,
@ -84,7 +84,7 @@ func TestGetMeasurementMetaWorkingAsIntended(t *testing.T) {
func TestGetMeasurementMetaWorkingWithCancelledContext(t *testing.T) { func TestGetMeasurementMetaWorkingWithCancelledContext(t *testing.T) {
client := probeservices.Client{ client := probeservices.Client{
Client: httpx.Client{ APIClient: httpx.APIClient{
BaseURL: "https://ams-pg.ooni.org/", BaseURL: "https://ams-pg.ooni.org/",
HTTPClient: http.DefaultClient, HTTPClient: http.DefaultClient,
Logger: log.Log, Logger: log.Log,

View File

@ -65,7 +65,7 @@ type Session interface {
// Client is a client for the OONI probe services API. // Client is a client for the OONI probe services API.
type Client struct { type Client struct {
httpx.Client httpx.APIClient
LoginCalls *atomicx.Int64 LoginCalls *atomicx.Int64
RegisterCalls *atomicx.Int64 RegisterCalls *atomicx.Int64
StateFile StateFile StateFile StateFile
@ -91,7 +91,7 @@ func (c Client) GetCredsAndAuth() (*LoginCredentials, *LoginAuth, error) {
// function fails, e.g., we don't support the specified endpoint. // function fails, e.g., we don't support the specified endpoint.
func NewClient(sess Session, endpoint model.OOAPIService) (*Client, error) { func NewClient(sess Session, endpoint model.OOAPIService) (*Client, error) {
client := &Client{ client := &Client{
Client: httpx.Client{ APIClient: httpx.APIClient{
BaseURL: endpoint.Address, BaseURL: endpoint.Address,
HTTPClient: sess.DefaultHTTPClient(), HTTPClient: sess.DefaultHTTPClient(),
Logger: sess.Logger(), Logger: sess.Logger(),
@ -115,7 +115,7 @@ func NewClient(sess Session, endpoint model.OOAPIService) (*Client, error) {
if URL.Scheme != "https" || URL.Host != URL.Hostname() { if URL.Scheme != "https" || URL.Host != URL.Hostname() {
return nil, ErrUnsupportedCloudFrontAddress return nil, ErrUnsupportedCloudFrontAddress
} }
client.Client.Host = URL.Hostname() client.APIClient.Host = URL.Hostname()
URL.Host = endpoint.Front URL.Host = endpoint.Front
client.BaseURL = URL.String() client.BaseURL = URL.String()
if _, err := url.Parse(client.BaseURL); err != nil { if _, err := url.Parse(client.BaseURL); err != nil {

View File

@ -11,7 +11,9 @@ func (c Client) FetchPsiphonConfig(ctx context.Context) ([]byte, error) {
if err != nil { if err != nil {
return nil, err return nil, err
} }
client := c.Client // Note: the following code is very bad: it copies the original
// API client and then overrides one of its fields. Bleah...
client := c.APIClient
client.Authorization = fmt.Sprintf("Bearer %s", auth.Token) client.Authorization = fmt.Sprintf("Bearer %s", auth.Token)
return client.FetchResource(ctx, "/api/v1/test-list/psiphon-config") return client.FetchResource(ctx, "/api/v1/test-list/psiphon-config")
} }

View File

@ -33,7 +33,7 @@ func (c Client) MaybeRegister(ctx context.Context, metadata Metadata) error {
Password: pwd, Password: pwd,
} }
var resp registerResult var resp registerResult
if err := c.Client.PostJSON(ctx, "/api/v1/register", req, &resp); err != nil { if err := c.APIClient.PostJSON(ctx, "/api/v1/register", req, &resp); err != nil {
return err return err
} }
state.ClientID = resp.ClientID state.ClientID = resp.ClientID

View File

@ -14,7 +14,9 @@ func (c Client) FetchTorTargets(ctx context.Context, cc string) (result map[stri
if err != nil { if err != nil {
return nil, err return nil, err
} }
client := c.Client // Note: the following code is very bad: it copies the original
// API client and then overrides one of its fields. Bleah...
client := c.APIClient
client.Authorization = fmt.Sprintf("Bearer %s", auth.Token) client.Authorization = fmt.Sprintf("Bearer %s", auth.Token)
query := url.Values{} query := url.Values{}
query.Add("country_code", cc) query.Add("country_code", cc)

View File

@ -61,7 +61,7 @@ func (clnt *FetchTorTargetsHTTPTransport) RoundTrip(req *http.Request) (*http.Re
func TestFetchTorTargetsSetsQueryString(t *testing.T) { func TestFetchTorTargetsSetsQueryString(t *testing.T) {
clnt := newclient() clnt := newclient()
txp := new(FetchTorTargetsHTTPTransport) txp := new(FetchTorTargetsHTTPTransport)
clnt.HTTPClient.Transport = txp clnt.HTTPClient = &http.Client{Transport: txp}
if err := clnt.MaybeRegister(context.Background(), testorchestra.MetadataFixture()); err != nil { if err := clnt.MaybeRegister(context.Background(), testorchestra.MetadataFixture()); err != nil {
t.Fatal(err) t.Fatal(err)
} }

View File

@ -28,7 +28,7 @@ func (c Client) FetchURLList(ctx context.Context, config model.OOAPIURLListConfi
query.Set("category_codes", strings.Join(config.Categories, ",")) query.Set("category_codes", strings.Join(config.Categories, ","))
} }
var response urlListResult var response urlListResult
err := c.Client.GetJSONWithQuery(ctx, "/api/v1/test-list/urls", query, &response) err := c.APIClient.GetJSONWithQuery(ctx, "/api/v1/test-list/urls", query, &response)
if err != nil { if err != nil {
return nil, err return nil, err
} }