blob: 3c79918d8726d3e9598202d7aa1d5e04395c5dd7 [file] [log] [blame]
package testing
import (
"fmt"
"net/http"
"testing"
th "gerrit.mcp.mirantis.net/debian/gophercloud.git/testhelper"
fake "gerrit.mcp.mirantis.net/debian/gophercloud.git/testhelper/client"
)
func MockListResponse(t *testing.T) {
th.Mux.HandleFunc("/os-availability-zone", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "GET")
th.TestHeader(t, r, "X-Auth-Token", fake.TokenID)
w.Header().Add("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, `
{
"availability_zones": [
{
"name": "nova",
"created_at": "2015-09-18T09:50:55.000000",
"updated_at": null,
"id": "388c983d-258e-4a0e-b1ba-10da37d766db"
}
]
}`)
})
}