Files
matchbox/api/server_test.go
Dalton Hubble ccd3c7a839 api: Associate machines' attribute labels to specs by group matchers
* Use YAML group config to match machine labels to groups of zero or
more machines sharing a Specification
* Discontinue using machine.json resources representations which are
repetitive, don't support groups, and don't allow label matching
* Previous "default" special case now handled by a Group with an empty
matcher
2016-01-07 23:24:05 -08:00

34 lines
915 B
Go

package api
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
)
func TestServerSpecRoute(t *testing.T) {
store := &fixedStore{
Specs: map[string]*Spec{"g1h2i3j4": testSpec},
}
h := NewServer(&Config{Store: store}).HTTPHandler()
req, _ := http.NewRequest("GET", "/spec/g1h2i3j4", nil)
w := httptest.NewRecorder()
h.ServeHTTP(w, req)
// assert that:
// - spec is rendered as JSON
assert.Equal(t, http.StatusOK, w.Code)
assert.Equal(t, jsonContentType, w.HeaderMap.Get(contentType))
assert.Equal(t, expectedSpecJSON, w.Body.String())
}
func TestServerSpecRoute_WrongMethod(t *testing.T) {
h := NewServer(&Config{}).HTTPHandler()
req, _ := http.NewRequest("POST", "/spec/g1h2i3j4", nil)
w := httptest.NewRecorder()
h.ServeHTTP(w, req)
assert.Equal(t, http.StatusMethodNotAllowed, w.Code)
assert.Equal(t, "only HTTP GET is supported\n", w.Body.String())
}