Jamie Hannaford | 0ca076c | 2014-10-30 13:12:35 +0100 | [diff] [blame^] | 1 | package roles |
| 2 | |
| 3 | import ( |
| 4 | "fmt" |
| 5 | "net/http" |
| 6 | "testing" |
| 7 | |
| 8 | th "github.com/rackspace/gophercloud/testhelper" |
| 9 | fake "github.com/rackspace/gophercloud/testhelper/client" |
| 10 | ) |
| 11 | |
| 12 | func MockListRoleResponse(t *testing.T) { |
| 13 | th.Mux.HandleFunc("/OS-KSADMN/roles", func(w http.ResponseWriter, r *http.Request) { |
| 14 | th.TestMethod(t, r, "GET") |
| 15 | th.TestHeader(t, r, "X-Auth-Token", fake.TokenID) |
| 16 | |
| 17 | w.Header().Add("Content-Type", "application/json") |
| 18 | w.WriteHeader(http.StatusOK) |
| 19 | |
| 20 | fmt.Fprintf(w, ` |
| 21 | { |
| 22 | "roles": [ |
| 23 | { |
| 24 | "id": "123", |
| 25 | "name": "compute:admin", |
| 26 | "description": "Nova Administrator" |
| 27 | } |
| 28 | ] |
| 29 | } |
| 30 | `) |
| 31 | }) |
| 32 | } |