terraform/state/remote/http_test.go

84 lines
1.5 KiB
Go
Raw Normal View History

2015-02-22 03:09:46 +01:00
package remote
import (
2015-02-23 17:32:55 +01:00
"bytes"
"fmt"
"io"
"net/http"
"net/http/httptest"
"net/url"
2015-02-22 03:09:46 +01:00
"testing"
2015-10-22 20:03:25 +02:00
"github.com/hashicorp/go-cleanhttp"
2015-02-22 03:09:46 +01:00
)
func TestHTTPClient_impl(t *testing.T) {
var _ Client = new(HTTPClient)
2017-08-13 18:16:42 +02:00
var _ ClientLocker = new(HTTPClient)
2015-02-22 03:09:46 +01:00
}
func TestHTTPClient(t *testing.T) {
2015-02-23 17:32:55 +01:00
handler := new(testHTTPHandler)
ts := httptest.NewServer(http.HandlerFunc(handler.Handle))
defer ts.Close()
url, err := url.Parse(ts.URL)
if err != nil {
t.Fatalf("err: %s", err)
}
2015-10-22 20:03:25 +02:00
client := &HTTPClient{URL: url, Client: cleanhttp.DefaultClient()}
2015-02-23 17:32:55 +01:00
testClient(t, client)
2017-08-13 18:16:42 +02:00
a := &HTTPClient{
URL: url,
LockURL: url,
LockMethod: "LOCK",
UnlockURL: url,
UnlockMethod: "UNLOCK",
Client: cleanhttp.DefaultClient(),
}
b := &HTTPClient{
URL: url,
LockURL: url,
LockMethod: "LOCK",
UnlockURL: url,
UnlockMethod: "UNLOCK",
Client: cleanhttp.DefaultClient(),
}
2017-08-13 18:16:42 +02:00
TestRemoteLocks(t, a, b)
2015-02-23 17:32:55 +01:00
}
type testHTTPHandler struct {
2017-08-13 18:16:42 +02:00
Data []byte
Locked bool
2015-02-23 17:32:55 +01:00
}
func (h *testHTTPHandler) Handle(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
w.Write(h.Data)
case "POST":
buf := new(bytes.Buffer)
if _, err := io.Copy(buf, r.Body); err != nil {
w.WriteHeader(500)
2015-02-23 17:32:55 +01:00
}
h.Data = buf.Bytes()
case "LOCK":
if h.Locked {
w.WriteHeader(409)
} else {
h.Locked = true
}
case "UNLOCK":
h.Locked = false
2015-02-23 17:32:55 +01:00
case "DELETE":
h.Data = nil
w.WriteHeader(200)
default:
w.WriteHeader(500)
w.Write([]byte(fmt.Sprintf("Unknown method: %s", r.Method)))
}
2015-02-22 03:09:46 +01:00
}