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
|
package testing
import (
"fmt"
"net/http"
"testing"
"github.com/gophercloud/gophercloud/openstack/identity/v3/domains"
th "github.com/gophercloud/gophercloud/testhelper"
"github.com/gophercloud/gophercloud/testhelper/client"
)
// ListAvailableOutput provides a single page of available domain results.
const ListAvailableOutput = `
{
"domains": [
{
"id": "52af04aec5f84182b06959d2775d2000",
"name": "TestDomain",
"description": "Testing domain",
"enabled": false,
"links": {
"self": "https://example.com/v3/domains/52af04aec5f84182b06959d2775d2000"
}
},
{
"id": "a720688fb87f4575a4c000d818061eae",
"name": "ProdDomain",
"description": "Production domain",
"enabled": true,
"links": {
"self": "https://example.com/v3/domains/a720688fb87f4575a4c000d818061eae"
}
}
],
"links": {
"next": null,
"self": "https://example.com/v3/auth/domains",
"previous": null
}
}
`
// ListOutput provides a single page of Domain results.
const ListOutput = `
{
"links": {
"next": null,
"previous": null,
"self": "http://example.com/identity/v3/domains"
},
"domains": [
{
"enabled": true,
"id": "2844b2a08be147a08ef58317d6471f1f",
"links": {
"self": "http://example.com/identity/v3/domains/2844b2a08be147a08ef58317d6471f1f"
},
"name": "domain one",
"description": "some description"
},
{
"enabled": true,
"id": "9fe1d3",
"links": {
"self": "https://example.com/identity/v3/domains/9fe1d3"
},
"name": "domain two"
}
]
}
`
// GetOutput provides a Get result.
const GetOutput = `
{
"domain": {
"enabled": true,
"id": "9fe1d3",
"links": {
"self": "https://example.com/identity/v3/domains/9fe1d3"
},
"name": "domain two"
}
}
`
// CreateRequest provides the input to a Create request.
const CreateRequest = `
{
"domain": {
"name": "domain two"
}
}
`
// UpdateRequest provides the input to as Update request.
const UpdateRequest = `
{
"domain": {
"description": "Staging Domain"
}
}
`
// UpdateOutput provides an update result.
const UpdateOutput = `
{
"domain": {
"enabled": true,
"id": "9fe1d3",
"links": {
"self": "https://example.com/identity/v3/domains/9fe1d3"
},
"name": "domain two",
"description": "Staging Domain"
}
}
`
// ProdDomain is a domain fixture.
var ProdDomain = domains.Domain{
Enabled: true,
ID: "a720688fb87f4575a4c000d818061eae",
Links: map[string]interface{}{
"self": "https://example.com/v3/domains/a720688fb87f4575a4c000d818061eae",
},
Name: "ProdDomain",
Description: "Production domain",
}
// TestDomain is a domain fixture.
var TestDomain = domains.Domain{
Enabled: false,
ID: "52af04aec5f84182b06959d2775d2000",
Links: map[string]interface{}{
"self": "https://example.com/v3/domains/52af04aec5f84182b06959d2775d2000",
},
Name: "TestDomain",
Description: "Testing domain",
}
// FirstDomain is the first domain in the List request.
var FirstDomain = domains.Domain{
Enabled: true,
ID: "2844b2a08be147a08ef58317d6471f1f",
Links: map[string]interface{}{
"self": "http://example.com/identity/v3/domains/2844b2a08be147a08ef58317d6471f1f",
},
Name: "domain one",
Description: "some description",
}
// SecondDomain is the second domain in the List request.
var SecondDomain = domains.Domain{
Enabled: true,
ID: "9fe1d3",
Links: map[string]interface{}{
"self": "https://example.com/identity/v3/domains/9fe1d3",
},
Name: "domain two",
}
// SecondDomainUpdated is how SecondDomain should look after an Update.
var SecondDomainUpdated = domains.Domain{
Enabled: true,
ID: "9fe1d3",
Links: map[string]interface{}{
"self": "https://example.com/identity/v3/domains/9fe1d3",
},
Name: "domain two",
Description: "Staging Domain",
}
// ExpectedAvailableDomainsSlice is the slice of domains expected to be returned
// from ListAvailableOutput.
var ExpectedAvailableDomainsSlice = []domains.Domain{TestDomain, ProdDomain}
// ExpectedDomainsSlice is the slice of domains expected to be returned from ListOutput.
var ExpectedDomainsSlice = []domains.Domain{FirstDomain, SecondDomain}
// HandleListAvailableDomainsSuccessfully creates an HTTP handler at `/auth/domains`
// on the test handler mux that responds with a list of two domains.
func HandleListAvailableDomainsSuccessfully(t *testing.T) {
th.Mux.HandleFunc("/auth/domains", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "GET")
th.TestHeader(t, r, "Accept", "application/json")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, ListAvailableOutput)
})
}
// HandleListDomainsSuccessfully creates an HTTP handler at `/domains` on the
// test handler mux that responds with a list of two domains.
func HandleListDomainsSuccessfully(t *testing.T) {
th.Mux.HandleFunc("/domains", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "GET")
th.TestHeader(t, r, "Accept", "application/json")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, ListOutput)
})
}
// HandleGetDomainSuccessfully creates an HTTP handler at `/domains` on the
// test handler mux that responds with a single domain.
func HandleGetDomainSuccessfully(t *testing.T) {
th.Mux.HandleFunc("/domains/9fe1d3", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "GET")
th.TestHeader(t, r, "Accept", "application/json")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, GetOutput)
})
}
// HandleCreateDomainSuccessfully creates an HTTP handler at `/domains` on the
// test handler mux that tests domain creation.
func HandleCreateDomainSuccessfully(t *testing.T) {
th.Mux.HandleFunc("/domains", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "POST")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
th.TestJSONRequest(t, r, CreateRequest)
w.WriteHeader(http.StatusCreated)
fmt.Fprintf(w, GetOutput)
})
}
// HandleDeleteDomainSuccessfully creates an HTTP handler at `/domains` on the
// test handler mux that tests domain deletion.
func HandleDeleteDomainSuccessfully(t *testing.T) {
th.Mux.HandleFunc("/domains/9fe1d3", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "DELETE")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
w.WriteHeader(http.StatusNoContent)
})
}
// HandleUpdateDomainSuccessfully creates an HTTP handler at `/domains` on the
// test handler mux that tests domain update.
func HandleUpdateDomainSuccessfully(t *testing.T) {
th.Mux.HandleFunc("/domains/9fe1d3", func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "PATCH")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
th.TestJSONRequest(t, r, UpdateRequest)
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, UpdateOutput)
})
}
|