| package containers |
| |
| import ( |
| "fmt" |
| "net/http" |
| "testing" |
| |
| "github.com/rackspace/gophercloud/pagination" |
| th "github.com/rackspace/gophercloud/testhelper" |
| fake "github.com/rackspace/gophercloud/testhelper/client" |
| ) |
| |
| var metadata = map[string]string{"gophercloud-test": "containers"} |
| |
| func TestListContainerInfo(t *testing.T) { |
| th.SetupHTTP() |
| defer th.TeardownHTTP() |
| |
| th.Mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
| th.TestMethod(t, r, "GET") |
| th.TestHeader(t, r, "X-Auth-Token", fake.TokenID) |
| th.TestHeader(t, r, "Accept", "application/json") |
| |
| w.Header().Set("Content-Type", "application/json") |
| r.ParseForm() |
| marker := r.Form.Get("marker") |
| switch marker { |
| case "": |
| fmt.Fprintf(w, `[ |
| { |
| "count": 0, |
| "bytes": 0, |
| "name": "janeausten" |
| }, |
| { |
| "count": 1, |
| "bytes": 14, |
| "name": "marktwain" |
| } |
| ]`) |
| case "marktwain": |
| fmt.Fprintf(w, `[]`) |
| default: |
| t.Fatalf("Unexpected marker: [%s]", marker) |
| } |
| }) |
| |
| count := 0 |
| |
| List(fake.ServiceClient(), &ListOpts{Full: true}).EachPage(func(page pagination.Page) (bool, error) { |
| count++ |
| actual, err := ExtractInfo(page) |
| if err != nil { |
| t.Errorf("Failed to extract container info: %v", err) |
| return false, err |
| } |
| |
| expected := []Container{ |
| Container{ |
| Count: 0, |
| Bytes: 0, |
| Name: "janeausten", |
| }, |
| Container{ |
| Count: 1, |
| Bytes: 14, |
| Name: "marktwain", |
| }, |
| } |
| |
| th.CheckDeepEquals(t, expected, actual) |
| |
| return true, nil |
| }) |
| |
| if count != 1 { |
| t.Errorf("Expected 1 page, got %d", count) |
| } |
| } |
| |
| func TestListContainerNames(t *testing.T) { |
| th.SetupHTTP() |
| defer th.TeardownHTTP() |
| |
| th.Mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
| th.TestMethod(t, r, "GET") |
| th.TestHeader(t, r, "X-Auth-Token", fake.TokenID) |
| th.TestHeader(t, r, "Accept", "text/plain") |
| |
| w.Header().Set("Content-Type", "text/plain") |
| r.ParseForm() |
| marker := r.Form.Get("marker") |
| switch marker { |
| case "": |
| fmt.Fprintf(w, "janeausten\nmarktwain\n") |
| case "marktwain": |
| fmt.Fprintf(w, ``) |
| default: |
| t.Fatalf("Unexpected marker: [%s]", marker) |
| } |
| }) |
| |
| count := 0 |
| |
| List(fake.ServiceClient(), &ListOpts{Full: false}).EachPage(func(page pagination.Page) (bool, error) { |
| count++ |
| actual, err := ExtractNames(page) |
| if err != nil { |
| t.Errorf("Failed to extract container names: %v", err) |
| return false, err |
| } |
| |
| expected := []string{"janeausten", "marktwain"} |
| |
| th.CheckDeepEquals(t, expected, actual) |
| |
| return true, nil |
| }) |
| |
| if count != 1 { |
| t.Errorf("Expected 1 page, got %d", count) |
| } |
| } |
| |
| func TestCreateContainer(t *testing.T) { |
| th.SetupHTTP() |
| defer th.TeardownHTTP() |
| |
| th.Mux.HandleFunc("/testContainer", func(w http.ResponseWriter, r *http.Request) { |
| th.TestMethod(t, r, "PUT") |
| th.TestHeader(t, r, "X-Auth-Token", fake.TokenID) |
| th.TestHeader(t, r, "Accept", "application/json") |
| |
| w.Header().Add("X-Container-Meta-Foo", "bar") |
| w.WriteHeader(http.StatusNoContent) |
| }) |
| |
| options := CreateOpts{ContentType: "application/json", Metadata: map[string]string{"foo": "bar"}} |
| headers, err := Create(fake.ServiceClient(), "testContainer", options).Extract() |
| if err != nil { |
| t.Fatalf("Unexpected error creating container: %v", err) |
| } |
| th.CheckEquals(t, "bar", headers["X-Container-Meta-Foo"][0]) |
| } |
| |
| func TestDeleteContainer(t *testing.T) { |
| th.SetupHTTP() |
| defer th.TeardownHTTP() |
| |
| th.Mux.HandleFunc("/testContainer", func(w http.ResponseWriter, r *http.Request) { |
| th.TestMethod(t, r, "DELETE") |
| th.TestHeader(t, r, "X-Auth-Token", fake.TokenID) |
| th.TestHeader(t, r, "Accept", "application/json") |
| w.WriteHeader(http.StatusNoContent) |
| }) |
| |
| _, err := Delete(fake.ServiceClient(), "testContainer").Extract() |
| if err != nil { |
| t.Fatalf("Unexpected error deleting container: %v", err) |
| } |
| } |
| |
| func TestUpateContainer(t *testing.T) { |
| th.SetupHTTP() |
| defer th.TeardownHTTP() |
| |
| th.Mux.HandleFunc("/testContainer", func(w http.ResponseWriter, r *http.Request) { |
| th.TestMethod(t, r, "POST") |
| th.TestHeader(t, r, "X-Auth-Token", fake.TokenID) |
| th.TestHeader(t, r, "Accept", "application/json") |
| w.WriteHeader(http.StatusNoContent) |
| }) |
| |
| options := &UpdateOpts{Metadata: map[string]string{"foo": "bar"}} |
| _, err := Update(fake.ServiceClient(), "testContainer", options).Extract() |
| if err != nil { |
| t.Fatalf("Unexpected error updating container metadata: %v", err) |
| } |
| } |
| |
| func TestGetContainer(t *testing.T) { |
| th.SetupHTTP() |
| defer th.TeardownHTTP() |
| |
| th.Mux.HandleFunc("/testContainer", func(w http.ResponseWriter, r *http.Request) { |
| th.TestMethod(t, r, "HEAD") |
| th.TestHeader(t, r, "X-Auth-Token", fake.TokenID) |
| th.TestHeader(t, r, "Accept", "application/json") |
| w.WriteHeader(http.StatusNoContent) |
| }) |
| |
| _, err := Get(fake.ServiceClient(), "testContainer").ExtractMetadata() |
| if err != nil { |
| t.Fatalf("Unexpected error getting container metadata: %v", err) |
| } |
| } |