2019-03-11 16:56:48 +00:00
|
|
|
package route53
|
2016-03-26 03:34:31 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// MockResponse represents a predefined response used by a mock server.
|
2016-03-26 03:34:31 +00:00
|
|
|
type MockResponse struct {
|
|
|
|
StatusCode int
|
|
|
|
Body string
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// MockResponseMap maps request paths to responses.
|
2016-03-26 03:34:31 +00:00
|
|
|
type MockResponseMap map[string]MockResponse
|
|
|
|
|
|
|
|
func newMockServer(t *testing.T, responses MockResponseMap) *httptest.Server {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
path := r.URL.Path
|
|
|
|
resp, ok := responses[path]
|
|
|
|
if !ok {
|
2018-10-09 17:03:07 +00:00
|
|
|
resp, ok = responses[r.RequestURI]
|
|
|
|
if !ok {
|
|
|
|
msg := fmt.Sprintf("Requested path not found in response map: %s", path)
|
|
|
|
require.FailNow(t, msg)
|
|
|
|
}
|
2016-03-26 03:34:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/xml")
|
|
|
|
w.WriteHeader(resp.StatusCode)
|
2018-09-24 19:07:20 +00:00
|
|
|
_, err := w.Write([]byte(resp.Body))
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
2016-03-26 03:34:31 +00:00
|
|
|
}))
|
|
|
|
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
return ts
|
|
|
|
}
|