influxdb/http/api_handler_test.go

187 lines
3.8 KiB
Go
Raw Permalink Normal View History

package http
import (
"encoding/json"
"fmt"
2022-04-13 20:24:27 +00:00
"io"
"net/http"
"net/http/httptest"
"testing"
"github.com/google/go-cmp/cmp"
kithttp "github.com/influxdata/influxdb/v2/kit/transport/http"
"github.com/influxdata/influxdb/v2/pkg/httpc"
"github.com/stretchr/testify/require"
"github.com/yudai/gojsondiff"
"github.com/yudai/gojsondiff/formatter"
"go.uber.org/zap/zaptest"
)
func TestAPIHandlerServeLinks(t *testing.T) {
tests := []struct {
name string
path string
method string
want int
}{
{
name: "correct path - GET",
path: "/api/v2",
method: "GET",
want: http.StatusOK,
},
{
name: "correct path with slash - GET",
path: "/api/v2/",
method: "GET",
want: http.StatusOK,
},
{
name: "correct path - POST",
path: "/api/v2",
method: "POST",
want: http.StatusOK,
},
{
name: "incorrect arbitrary path",
path: "/api/v2/asdf",
method: "GET",
want: http.StatusNotFound,
},
{
// regression test for https://github.com/influxdata/influxdb/issues/21620
name: "incorrect path at a subroute",
path: "/api/v2/query&foo=bar",
method: "GET",
want: http.StatusNotFound,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
r := httptest.NewRequest(tt.method, tt.path, nil)
w := httptest.NewRecorder()
h := NewAPIHandler(&APIBackend{Logger: zaptest.NewLogger(t)})
h.ServeHTTP(w, r)
res := w.Result()
require.Equal(t, tt.want, res.StatusCode)
})
}
}
func TestAPIHandler_NotFound(t *testing.T) {
type args struct {
method string
path string
}
type wants struct {
statusCode int
contentType string
body string
}
tests := []struct {
name string
args args
wants wants
}{
{
name: "path not found",
args: args{
method: "GET",
path: "/404",
},
wants: wants{
statusCode: http.StatusNotFound,
contentType: "application/json; charset=utf-8",
body: `
{
"code": "not found",
"message": "path not found"
}`,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
r := httptest.NewRequest(tt.args.method, tt.args.path, nil)
w := httptest.NewRecorder()
b := &APIBackend{
HTTPErrorHandler: kithttp.NewErrorHandler(zaptest.NewLogger(t)),
Logger: zaptest.NewLogger(t),
}
h := NewAPIHandler(b)
h.ServeHTTP(w, r)
res := w.Result()
content := res.Header.Get("Content-Type")
2022-04-13 20:24:27 +00:00
body, _ := io.ReadAll(res.Body)
if res.StatusCode != tt.wants.statusCode {
t.Errorf("%q. get %v, want %v", tt.name, res.StatusCode, tt.wants.statusCode)
}
if tt.wants.contentType != "" && content != tt.wants.contentType {
t.Errorf("%q. get %v, want %v", tt.name, content, tt.wants.contentType)
}
if eq, diff, err := jsonEqual(string(body), tt.wants.body); err != nil {
t.Errorf("%q, error unmarshalling json %v", tt.name, err)
} else if tt.wants.body != "" && !eq {
t.Errorf("%q. ***%s***", tt.name, diff)
}
})
}
}
func jsonEqual(s1, s2 string) (eq bool, diff string, err error) {
if s1 == s2 {
return true, "", nil
}
if s1 == "" {
return false, s2, fmt.Errorf("s1 is empty")
}
if s2 == "" {
return false, s1, fmt.Errorf("s2 is empty")
}
var o1 interface{}
if err = json.Unmarshal([]byte(s1), &o1); err != nil {
return
}
var o2 interface{}
if err = json.Unmarshal([]byte(s2), &o2); err != nil {
return
}
differ := gojsondiff.New()
d, err := differ.Compare([]byte(s1), []byte(s2))
if err != nil {
return
}
config := formatter.AsciiFormatterConfig{}
formatter := formatter.NewAsciiFormatter(o1, config)
diff, err = formatter.Format(d)
return cmp.Equal(o1, o2), diff, err
}
func mustNewHTTPClient(t *testing.T, addr, token string) *httpc.Client {
t.Helper()
httpClient, err := NewHTTPClient(addr, token, false)
if err != nil {
t.Fatal(err)
}
return httpClient
}