faas/gateway/tests/reader_test.go
Alex Young 0248a5ea1d Return 500 if GET /system/functions fails
Signed-off-by: Alex Young <alex@heuris.io>
2017-10-27 15:38:03 +01:00

209 lines
5.6 KiB
Go

package tests
import (
"encoding/json"
"errors"
"io"
"net/http"
"net/http/httptest"
"testing"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/swarm"
"github.com/openfaas/faas/gateway/handlers"
"github.com/openfaas/faas/gateway/metrics"
"github.com/openfaas/faas/gateway/requests"
"golang.org/x/net/context"
)
type testServiceApiClient struct {
serviceListServices []swarm.Service
serviceListError error
}
func (c testServiceApiClient) ServiceCreate(ctx context.Context, service swarm.ServiceSpec, options types.ServiceCreateOptions) (types.ServiceCreateResponse, error) {
return types.ServiceCreateResponse{}, nil
}
func (c testServiceApiClient) ServiceInspectWithRaw(ctx context.Context, serviceID string, options types.ServiceInspectOptions) (swarm.Service, []byte, error) {
return swarm.Service{}, []byte{}, nil
}
func (c testServiceApiClient) ServiceList(ctx context.Context, options types.ServiceListOptions) ([]swarm.Service, error) {
return c.serviceListServices, c.serviceListError
}
func (c testServiceApiClient) ServiceRemove(ctx context.Context, serviceID string) error {
return nil
}
func (c testServiceApiClient) ServiceUpdate(ctx context.Context, serviceID string, version swarm.Version, service swarm.ServiceSpec, options types.ServiceUpdateOptions) (types.ServiceUpdateResponse, error) {
return types.ServiceUpdateResponse{}, nil
}
func (c testServiceApiClient) ServiceLogs(ctx context.Context, serviceID string, options types.ContainerLogsOptions) (io.ReadCloser, error) {
return nil, nil
}
func (c testServiceApiClient) TaskLogs(ctx context.Context, taskID string, options types.ContainerLogsOptions) (io.ReadCloser, error) {
return nil, nil
}
func (c testServiceApiClient) TaskInspectWithRaw(ctx context.Context, taskID string) (swarm.Task, []byte, error) {
return swarm.Task{}, []byte{}, nil
}
func (c testServiceApiClient) TaskList(ctx context.Context, options types.TaskListOptions) ([]swarm.Task, error) {
return []swarm.Task{}, nil
}
func TestReaderSuccessReturnsOK(t *testing.T) {
m := metrics.MetricOptions{}
c := &testServiceApiClient{
serviceListServices: []swarm.Service{},
serviceListError: nil,
}
handler := handlers.MakeFunctionReader(m, c)
w := httptest.NewRecorder()
r := &http.Request{}
handler.ServeHTTP(w, r)
expected := http.StatusOK
if status := w.Code; status != expected {
t.Errorf("handler returned wrong status code: got %v want %v",
status, expected)
}
}
func TestReaderSuccessReturnsJsonContent(t *testing.T) {
m := metrics.MetricOptions{}
c := &testServiceApiClient{
serviceListServices: []swarm.Service{},
serviceListError: nil,
}
handler := handlers.MakeFunctionReader(m, c)
w := httptest.NewRecorder()
r := &http.Request{}
handler.ServeHTTP(w, r)
expected := "application/json"
if contentType := w.Header().Get("Content-Type"); contentType != expected {
t.Errorf("content type header does not match: got %v want %v",
contentType, expected)
}
}
func TestReaderSuccessReturnsCorrectBodyWithZeroFunctions(t *testing.T) {
m := metrics.MetricOptions{}
c := &testServiceApiClient{
serviceListServices: []swarm.Service{},
serviceListError: nil,
}
handler := handlers.MakeFunctionReader(m, c)
w := httptest.NewRecorder()
r := &http.Request{}
handler.ServeHTTP(w, r)
expected := "[]"
if w.Body.String() != expected {
t.Errorf("handler returned wrong body: got %v want %v",
w.Body.String(), expected)
}
}
func TestReaderSuccessReturnsCorrectBodyWithOneFunction(t *testing.T) {
replicas := uint64(5)
services := []swarm.Service{
swarm.Service{
Spec: swarm.ServiceSpec{
Mode: swarm.ServiceMode{
Replicated: &swarm.ReplicatedService{
Replicas: &replicas,
},
},
Annotations: swarm.Annotations{
Name: "bar",
},
TaskTemplate: swarm.TaskSpec{
ContainerSpec: swarm.ContainerSpec{
Env: []string{
"fprocess=bar",
},
Image: "foo/bar:latest",
Labels: map[string]string{
"function": "bar",
},
},
},
},
},
}
m := metrics.MetricOptions{}
c := &testServiceApiClient{
serviceListServices: services,
serviceListError: nil,
}
handler := handlers.MakeFunctionReader(m, c)
w := httptest.NewRecorder()
r := &http.Request{}
handler.ServeHTTP(w, r)
functions := []requests.Function{
requests.Function{
Name: "bar",
Image: "foo/bar:latest",
InvocationCount: 0,
Replicas: 5,
EnvProcess: "bar",
},
}
marshalled, _ := json.Marshal(functions)
expected := string(marshalled)
if w.Body.String() != expected {
t.Errorf("handler returned wrong body: got %v want %v",
w.Body.String(), expected)
}
}
func TestReaderErrorReturnsInternalServerError(t *testing.T) {
m := metrics.MetricOptions{}
c := &testServiceApiClient{
serviceListServices: nil,
serviceListError: errors.New("error"),
}
handler := handlers.MakeFunctionReader(m, c)
w := httptest.NewRecorder()
r := &http.Request{}
handler.ServeHTTP(w, r)
expected := http.StatusInternalServerError
if status := w.Code; status != expected {
t.Errorf("handler returned wrong status code: got %v want %v",
status, expected)
}
}
func TestReaderErrorReturnsCorrectBody(t *testing.T) {
m := metrics.MetricOptions{}
c := &testServiceApiClient{
serviceListServices: nil,
serviceListError: errors.New("error"),
}
handler := handlers.MakeFunctionReader(m, c)
w := httptest.NewRecorder()
r := &http.Request{}
handler.ServeHTTP(w, r)
expected := "Error getting service list"
if w.Body.String() != expected {
t.Errorf("handler returned wrong body: got %v want %v",
w.Body.String(), expected)
}
}