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
|
// +build fixtures
package policies
import (
"fmt"
"net/http"
"testing"
"time"
th "github.com/rackspace/gophercloud/testhelper"
"github.com/rackspace/gophercloud/testhelper/client"
)
// PolicyListBody contains the canned body of a policies.List response.
const PolicyListBody = `
{
"policies_links": [],
"policies": [
{
"name": "webhook policy",
"links": [
{
"href": "https://dfw.autoscale.api.rackspacecloud.com/v1.0/123456/groups/60b15dad-5ea1-43fa-9a12-a1d737b4da07/policies/2b48d247-0282-4b9d-8775-5c4b67e8e649/",
"rel": "self"
}
],
"changePercent": 3.3,
"cooldown": 300,
"type": "webhook",
"id": "2b48d247-0282-4b9d-8775-5c4b67e8e649"
},
{
"cooldown": 0,
"name": "one time",
"links": [
{
"href": "https://dfw.autoscale.api.rackspacecloud.com/v1.0/123456/groups/60b15dad-5ea1-43fa-9a12-a1d737b4da07/policies/c175c31e-65f9-41de-8b15-918420d3253e/",
"rel": "self"
}
],
"args": {
"at": "2020-04-01T23:00:00.000Z"
},
"type": "schedule",
"id": "c175c31e-65f9-41de-8b15-918420d3253e",
"change": -1
},
{
"cooldown": 0,
"name": "sunday afternoon",
"links": [
{
"href": "https://dfw.autoscale.api.rackspacecloud.com/v1.0/123456/groups/60b15dad-5ea1-43fa-9a12-a1d737b4da07/policies/e785e3e7-af9e-4f3c-99ae-b80a532e1663/",
"rel": "self"
}
],
"args": {
"cron": "59 15 * * 0"
},
"type": "schedule",
"id": "e785e3e7-af9e-4f3c-99ae-b80a532e1663",
"desiredCapacity": 2
}
]
}
`
// PolicyCreateBody contains the canned body of a policies.Create response.
const PolicyCreateBody = PolicyListBody
// PolicyCreateRequest contains the canned body of a policies.Create request.
const PolicyCreateRequest = `
[
{
"name": "webhook policy",
"changePercent": 3.3,
"cooldown": 300,
"type": "webhook"
},
{
"cooldown": 0,
"name": "one time",
"args": {
"at": "2020-04-01T23:00:00Z"
},
"type": "schedule",
"change": -1
},
{
"cooldown": 0,
"name": "sunday afternoon",
"args": {
"cron": "59 15 * * 0"
},
"type": "schedule",
"desiredCapacity": 2
}
]
`
// PolicyGetBody contains the canned body of a policies.Get response.
const PolicyGetBody = `
{
"policy": {
"name": "webhook policy",
"links": [
{
"href": "https://dfw.autoscale.api.rackspacecloud.com/v1.0/123456/groups/60b15dad-5ea1-43fa-9a12-a1d737b4da07/policies/2b48d247-0282-4b9d-8775-5c4b67e8e649/",
"rel": "self"
}
],
"changePercent": 3.3,
"cooldown": 300,
"type": "webhook",
"id": "2b48d247-0282-4b9d-8775-5c4b67e8e649"
}
}
`
// PolicyUpdateRequest contains the canned body of a policies.Update request.
const PolicyUpdateRequest = `
{
"name": "updated webhook policy",
"type": "webhook",
"cooldown": 600,
"changePercent": 6.6
}
`
var (
// WebhookPolicy is a Policy corresponding to the first result in PolicyListBody.
WebhookPolicy = Policy{
ID: "2b48d247-0282-4b9d-8775-5c4b67e8e649",
Name: "webhook policy",
Type: Webhook,
Cooldown: 300,
AdjustmentType: ChangePercent,
AdjustmentValue: 3.3,
}
// OneTimePolicy is a Policy corresponding to the second result in PolicyListBody.
OneTimePolicy = Policy{
ID: "c175c31e-65f9-41de-8b15-918420d3253e",
Name: "one time",
Type: Schedule,
AdjustmentType: Change,
AdjustmentValue: float64(-1),
Schedule: At(time.Date(2020, time.April, 01, 23, 0, 0, 0, time.UTC)),
}
// SundayAfternoonPolicy is a Policy corresponding to the third result in PolicyListBody.
SundayAfternoonPolicy = Policy{
ID: "e785e3e7-af9e-4f3c-99ae-b80a532e1663",
Name: "sunday afternoon",
Type: Schedule,
AdjustmentType: DesiredCapacity,
AdjustmentValue: float64(2),
Schedule: Cron("59 15 * * 0"),
}
)
// HandlePolicyListSuccessfully sets up the test server to respond to a policies List request.
func HandlePolicyListSuccessfully(t *testing.T) {
path := "/groups/60b15dad-5ea1-43fa-9a12-a1d737b4da07/policies"
th.Mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "GET")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
w.Header().Add("Content-Type", "application/json")
fmt.Fprintf(w, PolicyListBody)
})
}
// HandlePolicyCreateSuccessfully sets up the test server to respond to a policies Create request.
func HandlePolicyCreateSuccessfully(t *testing.T) {
path := "/groups/60b15dad-5ea1-43fa-9a12-a1d737b4da07/policies"
th.Mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "POST")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
th.TestHeader(t, r, "Content-Type", "application/json")
th.TestHeader(t, r, "Accept", "application/json")
th.TestJSONRequest(t, r, PolicyCreateRequest)
w.Header().Add("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)
fmt.Fprintf(w, PolicyCreateBody)
})
}
// HandlePolicyGetSuccessfully sets up the test server to respond to a policies Get request.
func HandlePolicyGetSuccessfully(t *testing.T) {
groupID := "60b15dad-5ea1-43fa-9a12-a1d737b4da07"
policyID := "2b48d247-0282-4b9d-8775-5c4b67e8e649"
path := fmt.Sprintf("/groups/%s/policies/%s", groupID, policyID)
th.Mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "GET")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
w.Header().Add("Content-Type", "application/json")
fmt.Fprintf(w, PolicyGetBody)
})
}
// HandlePolicyUpdateSuccessfully sets up the test server to respond to a policies Update request.
func HandlePolicyUpdateSuccessfully(t *testing.T) {
groupID := "60b15dad-5ea1-43fa-9a12-a1d737b4da07"
policyID := "2b48d247-0282-4b9d-8775-5c4b67e8e649"
path := fmt.Sprintf("/groups/%s/policies/%s", groupID, policyID)
th.Mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "PUT")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
th.TestJSONRequest(t, r, PolicyUpdateRequest)
w.WriteHeader(http.StatusNoContent)
})
}
// HandlePolicyDeleteSuccessfully sets up the test server to respond to a policies Delete request.
func HandlePolicyDeleteSuccessfully(t *testing.T) {
groupID := "60b15dad-5ea1-43fa-9a12-a1d737b4da07"
policyID := "2b48d247-0282-4b9d-8775-5c4b67e8e649"
path := fmt.Sprintf("/groups/%s/policies/%s", groupID, policyID)
th.Mux.HandleFunc(path, 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)
})
}
// HandlePolicyExecuteSuccessfully sets up the test server to respond to a policies Execute request.
func HandlePolicyExecuteSuccessfully(t *testing.T) {
groupID := "60b15dad-5ea1-43fa-9a12-a1d737b4da07"
policyID := "2b48d247-0282-4b9d-8775-5c4b67e8e649"
path := fmt.Sprintf("/groups/%s/policies/%s/execute", groupID, policyID)
th.Mux.HandleFunc(path, func(w http.ResponseWriter, r *http.Request) {
th.TestMethod(t, r, "POST")
th.TestHeader(t, r, "X-Auth-Token", client.TokenID)
w.WriteHeader(http.StatusAccepted)
fmt.Fprintf(w, "{}")
})
}
|