This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
253 lines (211 loc) · 6.45 KB
/
test.js
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
import { uuidv4 } from "https://jslib.k6.io/k6-utils/1.0.0/index.js";
import { check, fail, sleep } from "k6";
import http from "k6/http";
import { Counter } from "k6/metrics";
const TERMINATED_RUN_STATUSES = [
"applied",
"canceled",
"discarded",
"errored",
"forced_canceled",
];
const TFE_API_URL = `${__ENV.TFE_URL}/api/v2`;
const TFE_EMAIL = __ENV.TFE_EMAIL;
const TFE_ORG_NAME = __ENV.TFE_ORG_NAME;
const TFE_PARAMS = {
headers: {
Authorization: `Bearer ${__ENV.TFE_API_TOKEN}`,
"Content-Type": "application/vnd.api+json",
},
};
const TFE_UPLOAD_PARAMS = {
headers: {
Authorization: `Bearer ${__ENV.TFE_API_TOKEN}`,
"Content-Type": "application/octet-stream",
},
};
const TFE_URL = __ENV.TFE_URL;
let tfConfigArchive = open("./terraform.tar.gz", "b");
let tfRunStatusCounters = {
applied: new Counter("tf_runs_applied"),
canceled: new Counter("tf_runs_canceled"),
discarded: new Counter("tf_runs_discarded"),
errored: new Counter("tf_runs_errored"),
forced_canceled: new Counter("tf_runs_forced_canceled"),
};
export function setup() {
// This data object is passed to default and teardown.
let data = {};
// https://www.terraform.io/docs/cloud/api/admin/settings.html#update-general-settings
let updateGeneralSettingsBody = JSON.stringify({
data: {
attributes: {
"api-rate-limiting-enabled": false,
},
},
});
let updateGeneralSettings = http.patch(
`${TFE_API_URL}/admin/general-settings`,
updateGeneralSettingsBody,
TFE_PARAMS
);
if (updateGeneralSettings.status != 200) {
fail(
`general settings not updated: HTTP response status ${updateGeneralSettings.status}`
);
}
// https://www.terraform.io/docs/cloud/api/organizations.html#create-an-organization
let createOrganizationBody = JSON.stringify({
data: {
type: "organizations",
attributes: {
name: TFE_ORG_NAME,
email: TFE_EMAIL,
},
},
});
let createOrganization = http.post(
`${TFE_API_URL}/organizations`,
createOrganizationBody,
TFE_PARAMS
);
if (createOrganization.status != 201) {
fail(
`test organization ${TFE_ORG_NAME} not created: HTTP response status ${createOrganization.status}`
);
}
data.organizationURL = `${TFE_URL}/${
JSON.parse(createOrganization.body).data.links.self
}`;
sleep(1);
return data;
}
export default (data) => {
// https://www.terraform.io/docs/cloud/api/workspaces.html#create-a-workspace
let workspaceName = `${__ITER}-${uuidv4()}`;
let createWorkspaceBody = JSON.stringify({
data: {
type: "workspaces",
attributes: {
name: workspaceName,
"auto-apply": true,
"queue-all-runs": true,
"terraform-version": "0.13.0",
},
},
});
let createWorkspace = http.post(
`${data.organizationURL}/workspaces`,
createWorkspaceBody,
TFE_PARAMS
);
if (
!check(createWorkspace, {
"workspace is created": (response) => response.status == 201,
})
) {
fail(
`workspace ${workspaceName} was not created: HTTP response status ${createWorkspace.status}`
);
}
let workspaceID = JSON.parse(createWorkspace.body).data.id;
let workspaceURL = `${TFE_API_URL}/workspaces/${workspaceID}`;
sleep(1);
// https://www.terraform.io/docs/cloud/api/configuration-versions.html#create-a-configuration-version
let createConfigurationVersionBody = JSON.stringify({
data: {
type: "configuration-versions",
attributes: {
"auto-queue-runs": false,
},
},
});
let createConfigurationVersion = http.post(
`${workspaceURL}/configuration-versions`,
createConfigurationVersionBody,
TFE_PARAMS
);
if (
!check(createConfigurationVersion, {
"configuration version is created": (response) => response.status == 201,
})
) {
fail(
`configuration version was not created: HTTP response status ${createConfigurationVersion.status}`
);
}
let configurationUploadData = JSON.parse(createConfigurationVersion.body)
.data;
let configurationUploadURL = configurationUploadData.attributes["upload-url"];
let configurationVersionID = configurationUploadData.id;
sleep(1);
// https://www.terraform.io/docs/cloud/api/configuration-versions.html#upload-configuration-files
let uploadConfigurationFiles = http.put(
configurationUploadURL,
tfConfigArchive,
TFE_UPLOAD_PARAMS
);
if (
!check(uploadConfigurationFiles, {
"configuration files uploaded": (response) => response.status == 200,
})
) {
fail(
`configuration files were not uploaded: HTTP response status ${uploadConfigurationFiles.status}`
);
}
sleep(1);
// https://www.terraform.io/docs/cloud/api/run.html#create-a-run
let createRunBody = JSON.stringify({
data: {
type: "runs",
relationships: {
workspace: {
data: {
type: "workspaces",
id: workspaceID,
},
},
"configuration-version": {
data: {
type: "configuration-versions",
id: configurationVersionID,
},
},
},
},
});
let createRun = http.post(`${TFE_API_URL}/runs`, createRunBody, TFE_PARAMS);
if (
!check(createRun, {
"run is created": (response) => response.status == 201,
})
) {
fail(
`run for workspace ${workspaceName} and configuration version ${configurationVersionID} not created: HTTP response status ${createRun.status}`
);
}
let runID = JSON.parse(createRun.body).data.id;
sleep(1);
// https://www.terraform.io/docs/cloud/api/run.html#get-run-details
let runStatus = "";
let runSleepDuration = 1;
while (!TERMINATED_RUN_STATUSES.includes(runStatus)) {
sleep(runSleepDuration);
// binary exponential backoff
runSleepDuration = runSleepDuration * 2;
let getRunDetails = http.get(`${TFE_API_URL}/runs/${runID}`, TFE_PARAMS);
runStatus = JSON.parse(getRunDetails.body).data.attributes.status;
}
tfRunStatusCounters[runStatus].add(1);
};
export function teardown(data) {
// https://www.terraform.io/docs/cloud/api/organizations.html#destroy-an-organization
// k6 documentation says the body is optional, but omitting it causes the request to be unauthorized
let destroyOrganization = http.del(data.organizationURL, "", TFE_PARAMS);
if (destroyOrganization.status != 204) {
fail(
`test organization ${TFE_ORG_NAME} not destroyed: HTTP response status ${destroyOrganization.status}`
);
}
}