1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
package testing
import (
"fmt"
"net/http"
"testing"
"time"
"github.com/gophercloud/gophercloud/openstack/imageservice/v2/tasks"
"github.com/gophercloud/gophercloud/pagination"
th "github.com/gophercloud/gophercloud/testhelper"
fakeclient "github.com/gophercloud/gophercloud/testhelper/client"
)
func TestList(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
th.Mux.HandleFunc("/tasks", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "GET")
th.TestHeader(t, r, "X-Auth-Token", fakeclient.TokenID)
w.Header().Add("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, TasksListResult)
})
count := 0
tasks.List(fakeclient.ServiceClient(), tasks.ListOpts{}).EachPage(func(page pagination.Page) (bool, error) {
count++
actual, err := tasks.ExtractTasks(page)
if err != nil {
t.Errorf("Failed to extract tasks: %v", err)
return false, nil
}
expected := []tasks.Task{
Task1,
Task2,
}
th.CheckDeepEquals(t, expected, actual)
return true, nil
})
if count != 1 {
t.Errorf("Expected 1 page, got %d", count)
}
}
func TestGet(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
th.Mux.HandleFunc("/tasks/1252f636-1246-4319-bfba-c47cde0efbe0", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "GET")
th.TestHeader(t, r, "X-Auth-Token", fakeclient.TokenID)
w.Header().Add("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, TasksGetResult)
})
s, err := tasks.Get(fakeclient.ServiceClient(), "1252f636-1246-4319-bfba-c47cde0efbe0").Extract()
th.AssertNoErr(t, err)
th.AssertEquals(t, s.Status, string(tasks.TaskStatusPending))
th.AssertEquals(t, s.CreatedAt, time.Date(2018, 7, 25, 8, 59, 13, 0, time.UTC))
th.AssertEquals(t, s.UpdatedAt, time.Date(2018, 7, 25, 8, 59, 14, 0, time.UTC))
th.AssertEquals(t, s.Self, "/v2/tasks/1252f636-1246-4319-bfba-c47cde0efbe0")
th.AssertEquals(t, s.Owner, "424e7cf0243c468ca61732ba45973b3e")
th.AssertEquals(t, s.Message, "")
th.AssertEquals(t, s.Type, "import")
th.AssertEquals(t, s.ID, "1252f636-1246-4319-bfba-c47cde0efbe0")
th.AssertEquals(t, s.Schema, "/v2/schemas/task")
th.AssertDeepEquals(t, s.Result, map[string]interface{}(nil))
th.AssertDeepEquals(t, s.Input, map[string]interface{}{
"import_from": "http://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.img",
"import_from_format": "raw",
"image_properties": map[string]interface{}{
"container_format": "bare",
"disk_format": "raw",
},
})
}
func TestCreate(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
th.Mux.HandleFunc("/tasks", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "POST")
th.TestHeader(t, r, "X-Auth-Token", fakeclient.TokenID)
th.TestJSONRequest(t, r, TaskCreateRequest)
w.Header().Add("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)
fmt.Fprintf(w, TaskCreateResult)
})
opts := tasks.CreateOpts{
Type: "import",
Input: map[string]interface{}{
"image_properties": map[string]interface{}{
"container_format": "bare",
"disk_format": "raw",
},
"import_from_format": "raw",
"import_from": "https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img",
},
}
s, err := tasks.Create(fakeclient.ServiceClient(), opts).Extract()
th.AssertNoErr(t, err)
th.AssertEquals(t, s.Status, string(tasks.TaskStatusPending))
th.AssertEquals(t, s.CreatedAt, time.Date(2018, 7, 25, 11, 7, 54, 0, time.UTC))
th.AssertEquals(t, s.UpdatedAt, time.Date(2018, 7, 25, 11, 7, 54, 0, time.UTC))
th.AssertEquals(t, s.Self, "/v2/tasks/d550c87d-86ed-430a-9895-c7a1f5ce87e9")
th.AssertEquals(t, s.Owner, "fb57277ef2f84a0e85b9018ec2dedbf7")
th.AssertEquals(t, s.Message, "")
th.AssertEquals(t, s.Type, "import")
th.AssertEquals(t, s.ID, "d550c87d-86ed-430a-9895-c7a1f5ce87e9")
th.AssertEquals(t, s.Schema, "/v2/schemas/task")
th.AssertDeepEquals(t, s.Result, map[string]interface{}(nil))
th.AssertDeepEquals(t, s.Input, map[string]interface{}{
"import_from": "https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img",
"import_from_format": "raw",
"image_properties": map[string]interface{}{
"container_format": "bare",
"disk_format": "raw",
},
})
}
|