blob: db0a6e3414c7a40002896be6bf7916f39c77c9a7 [file] [log] [blame]
Ash Wilsond5506542014-10-21 09:02:16 -04001package images
2
3import (
4 "fmt"
5 "net/http"
6 "testing"
7
8 "github.com/rackspace/gophercloud/pagination"
9 th "github.com/rackspace/gophercloud/testhelper"
10 "github.com/rackspace/gophercloud/testhelper/client"
11)
12
13func TestListImageDetails(t *testing.T) {
14 th.SetupHTTP()
15 defer th.TeardownHTTP()
16
17 th.Mux.HandleFunc("/images/detail", func(w http.ResponseWriter, r *http.Request) {
18 th.TestMethod(t, r, "GET")
19 th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
20
21 w.Header().Add("Content-Type", "application/json")
22 r.ParseForm()
23 marker := r.Form.Get("marker")
24 switch marker {
25 case "":
26 fmt.Fprintf(w, ListOutput)
27 case "e19a734c-c7e6-443a-830c-242209c4d65d":
28 fmt.Fprintf(w, `{ "images": [] }`)
29 default:
30 t.Fatalf("Unexpected marker: [%s]", marker)
31 }
32 })
33
34 count := 0
35 err := ListDetail(client.ServiceClient(), nil).EachPage(func(page pagination.Page) (bool, error) {
36 count++
37 actual, err := ExtractImages(page)
38 th.AssertNoErr(t, err)
39 th.CheckDeepEquals(t, ExpectedImageSlice, actual)
40
41 return true, nil
42 })
43 th.AssertNoErr(t, err)
Ash Wilsonfa7c7552014-10-21 14:04:14 -040044 th.CheckEquals(t, 1, count)
Ash Wilsond5506542014-10-21 09:02:16 -040045}
Ash Wilson9b762e72014-10-21 09:06:37 -040046
47func TestGetImageDetails(t *testing.T) {
48 th.SetupHTTP()
49 defer th.TeardownHTTP()
50
51 th.Mux.HandleFunc("/images/e19a734c-c7e6-443a-830c-242209c4d65d", func(w http.ResponseWriter, r *http.Request) {
52 th.TestMethod(t, r, "GET")
53 th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
54
55 w.Header().Add("Content-Type", "application/json")
56 fmt.Fprintf(w, GetOutput)
57 })
58
59 actual, err := Get(client.ServiceClient(), "e19a734c-c7e6-443a-830c-242209c4d65d").Extract()
60 th.AssertNoErr(t, err)
61 th.CheckDeepEquals(t, &UbuntuImage, actual)
62}