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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
package testing
import (
"fmt"
"net/http"
"testing"
"github.com/gophercloud/gophercloud/openstack/objectstorage/v1/containers"
th "github.com/gophercloud/gophercloud/testhelper"
fake "github.com/gophercloud/gophercloud/testhelper/client"
)
type handlerOptions struct {
path string
}
type option func(*handlerOptions)
func WithPath(s string) option {
return func(h *handlerOptions) {
h.path = s
}
}
// ExpectedListInfo is the result expected from a call to `List` when full
// info is requested.
var ExpectedListInfo = []containers.Container{
{
Count: 0,
Bytes: 0,
Name: "janeausten",
},
{
Count: 1,
Bytes: 14,
Name: "marktwain",
},
}
// ExpectedListNames is the result expected from a call to `List` when just
// container names are requested.
var ExpectedListNames = []string{"janeausten", "marktwain"}
// HandleListContainerInfoSuccessfully creates an HTTP handler at `/` on the test handler mux that
// responds with a `List` response when full info is requested.
func HandleListContainerInfoSuccessfully(t *testing.T) {
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 "janeausten":
fmt.Fprintf(w, `[
{
"count": 1,
"bytes": 14,
"name": "marktwain"
}
]`)
case "marktwain":
fmt.Fprintf(w, `[]`)
default:
t.Fatalf("Unexpected marker: [%s]", marker)
}
})
}
// HandleListContainerNamesSuccessfully creates an HTTP handler at `/` on the test handler mux that
// responds with a `ListNames` response when only container names are requested.
func HandleListContainerNamesSuccessfully(t *testing.T) {
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 "janeausten":
fmt.Fprintf(w, "marktwain\n")
case "marktwain":
fmt.Fprintf(w, ``)
default:
t.Fatalf("Unexpected marker: [%s]", marker)
}
})
}
// HandleListZeroContainerNames204 creates an HTTP handler at `/` on the test handler mux that
// responds with "204 No Content" when container names are requested. This happens on some, but not all,
// objectstorage instances. This case is peculiar in that the server sends no `content-type` header.
func HandleListZeroContainerNames204(t *testing.T) {
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.WriteHeader(http.StatusNoContent)
})
}
// HandleCreateContainerSuccessfully creates an HTTP handler at `/testContainer` on the test handler mux that
// responds with a `Create` response.
func HandleCreateContainerSuccessfully(t *testing.T) {
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.Header().Set("Content-Length", "0")
w.Header().Set("Content-Type", "text/html; charset=UTF-8")
w.Header().Set("Date", "Wed, 17 Aug 2016 19:25:43 UTC")
w.Header().Set("X-Trans-Id", "tx554ed59667a64c61866f1-0058b4ba37")
w.Header().Set("X-Storage-Policy", "multi-region-three-replicas")
w.WriteHeader(http.StatusNoContent)
})
}
// HandleDeleteContainerSuccessfully creates an HTTP handler at `/testContainer` on the test handler mux that
// responds with a `Delete` response.
func HandleDeleteContainerSuccessfully(t *testing.T, options ...option) {
ho := handlerOptions{
path: "/testContainer",
}
for _, apply := range options {
apply(&ho)
}
th.Mux.HandleFunc(ho.path, 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)
})
}
const bulkDeleteResponse = `
{
"Response Status": "foo",
"Response Body": "bar",
"Errors": [],
"Number Deleted": 2,
"Number Not Found": 0
}
`
// HandleBulkDeleteSuccessfully creates an HTTP handler at `/` on the test
// handler mux that responds with a `Delete` response.
func HandleBulkDeleteSuccessfully(t *testing.T) {
th.Mux.HandleFunc("/", 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")
th.TestHeader(t, r, "Content-Type", "text/plain")
th.TestFormValues(t, r, map[string]string{
"bulk-delete": "true",
})
th.TestBody(t, r, "testContainer1\ntestContainer2\n")
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, bulkDeleteResponse)
})
}
// HandleUpdateContainerSuccessfully creates an HTTP handler at `/testContainer` on the test handler mux that
// responds with a `Update` response.
func HandleUpdateContainerSuccessfully(t *testing.T, options ...option) {
ho := handlerOptions{
path: "/testContainer",
}
for _, apply := range options {
apply(&ho)
}
th.Mux.HandleFunc(ho.path, 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")
th.TestHeader(t, r, "X-Container-Write", "")
th.TestHeader(t, r, "X-Container-Read", "")
th.TestHeader(t, r, "X-Container-Sync-To", "")
th.TestHeader(t, r, "X-Container-Sync-Key", "")
th.TestHeader(t, r, "Content-Type", "text/plain")
w.WriteHeader(http.StatusNoContent)
})
}
// HandleUpdateContainerVersioningOn creates an HTTP handler at `/testVersioning` on the test handler mux that
// responds with a `Update` response.
func HandleUpdateContainerVersioningOn(t *testing.T, options ...option) {
ho := handlerOptions{
path: "/testVersioning",
}
for _, apply := range options {
apply(&ho)
}
th.Mux.HandleFunc(ho.path, 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")
th.TestHeader(t, r, "X-Container-Write", "")
th.TestHeader(t, r, "X-Container-Read", "")
th.TestHeader(t, r, "X-Container-Sync-To", "")
th.TestHeader(t, r, "X-Container-Sync-Key", "")
th.TestHeader(t, r, "Content-Type", "text/plain")
th.TestHeader(t, r, "X-Versions-Enabled", "true")
w.WriteHeader(http.StatusNoContent)
})
}
// HandleUpdateContainerVersioningOff creates an HTTP handler at `/testVersioning` on the test handler mux that
// responds with a `Update` response.
func HandleUpdateContainerVersioningOff(t *testing.T, options ...option) {
ho := handlerOptions{
path: "/testVersioning",
}
for _, apply := range options {
apply(&ho)
}
th.Mux.HandleFunc(ho.path, 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")
th.TestHeader(t, r, "X-Container-Write", "")
th.TestHeader(t, r, "X-Container-Read", "")
th.TestHeader(t, r, "X-Container-Sync-To", "")
th.TestHeader(t, r, "X-Container-Sync-Key", "")
th.TestHeader(t, r, "Content-Type", "text/plain")
th.TestHeader(t, r, "X-Versions-Enabled", "false")
w.WriteHeader(http.StatusNoContent)
})
}
// HandleGetContainerSuccessfully creates an HTTP handler at `/testContainer` on the test handler mux that
// responds with a `Get` response.
func HandleGetContainerSuccessfully(t *testing.T, options ...option) {
ho := handlerOptions{
path: "/testContainer",
}
for _, apply := range options {
apply(&ho)
}
th.Mux.HandleFunc(ho.path, 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.Header().Set("Accept-Ranges", "bytes")
w.Header().Set("Content-Type", "application/json; charset=utf-8")
w.Header().Set("Date", "Wed, 17 Aug 2016 19:25:43 UTC")
w.Header().Set("X-Container-Bytes-Used", "100")
w.Header().Set("X-Container-Object-Count", "4")
w.Header().Set("X-Container-Read", "test")
w.Header().Set("X-Container-Write", "test2,user4")
w.Header().Set("X-Timestamp", "1471298837.95721")
w.Header().Set("X-Trans-Id", "tx554ed59667a64c61866f1-0057b4ba37")
w.Header().Set("X-Storage-Policy", "test_policy")
w.Header().Set("X-Versions-Enabled", "True")
w.WriteHeader(http.StatusNoContent)
})
}
|