-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
239 lines (216 loc) · 5.35 KB
/
index.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
const nock = require('nock');
var zlib = require('zlib');
const chai = require('chai');
const chaiSubset = require('chai-subset');
const SqlRestore = require('./index');
chai.use(chaiSubset);
const { expect } = chai;
const sourceProjectId = 'dummy-source-project';
const sourceInstanceId = 'dummy-source-instance';
const targetProjectId = 'dummy-target-project';
const targetInstanceId = 'dummy-target-instance';
const backupList = [
{
id: '1',
startTime: '2020-07-27T14:35:27.206Z',
status: 'SUCCESSFUL',
},
{
// Most recent
id: '2',
startTime: '2020-07-28T14:35:27.206Z',
status: 'SUCCESSFUL',
},
{
id: '3',
startTime: '2020-07-26T14:35:27.206Z',
status: 'SUCCESSFUL',
},
{
// Most recent, but failed
id: '4',
startTime: '2020-07-29T14:35:27.206Z',
status: 'FAILED',
},
];
const errorMessage = 'Something bad happened, your backup was not restored';
const operationInProgress = {
kind: 'restore',
status: 'RUNNING',
error: null,
operationType: 'RESTORE_VOLUME',
selfLink: `https://www.googleapis.com/sql/v1beta4/projects/${targetProjectId}/operations/1234`,
targetProject: targetProjectId,
};
const operationSuccess = {
...operationInProgress,
status: 'DONE',
};
const operationFailed = {
...operationSuccess,
status: 'DONE',
error: [{
"kind": 'sql#operationErrors',
"errors": [{
"kind": 'bad',
"code": 'bad-thing',
"message": errorMessage,
}],
}],
};
describe('CloudSQLRestore', () => {
let restoreHelper;
let nockResult;
let restoreOperation;
before(() => {
restoreHelper = new SqlRestore();
restoreHelper.authorizeJwt('./test-service-account.json');
});
describe('listBackups', () => {
let backups;
before(async () => {
nockList(sourceProjectId, sourceInstanceId);
backups = await restoreHelper.listBackups({
projectId: sourceProjectId,
instanceId: sourceInstanceId,
});
});
it('Retreieves backups', () => {
expect(backups).to.containSubset(backupList);
});
});
describe('restoreBackup', () => {
before(async () => {
nockResult = nockRestore(targetProjectId, targetInstanceId);
restoreOperation = await restoreHelper.restoreBackup({
sourceProjectId,
sourceInstanceId,
targetProjectId,
targetInstanceId,
backupRunId: '1',
});
});
itStartsRestore('1');
});
describe('restoreLatestBackup', () => {
before(async () => {
nockList(sourceProjectId, sourceInstanceId);
nockResult = nockRestore(targetProjectId, targetInstanceId);
restoreOperation = await restoreHelper.restoreLatestBackup({
sourceProjectId,
sourceInstanceId,
targetProjectId,
targetInstanceId,
});
});
itStartsRestore(backupList[1].id);
});
describe('listOperations', () => {
before(async () => {
nockListOperations(targetProjectId, targetInstanceId);
restoreOperation = await restoreHelper.listOperations({
projectId: targetProjectId,
instanceId: targetInstanceId,
});
});
it('lists operations', () => {
expect(restoreOperation).to.deep.eq([
operationSuccess,
operationInProgress,
operationFailed,
]);
});
});
describe('checkOperationStatus', () => {
describe('WHEN operation is complete', () => {
before(async () => {
nockOperation(targetProjectId, operationSuccess);
restoreOperation = await restoreHelper.checkOperationStatus(operationInProgress);
});
itReturnsOperation(operationSuccess);
})
describe('WHEN operation has error', () => {
before(() => {
nockOperation(targetProjectId, operationFailed);
});
it('throws error', async () => {
let error;
try {
await restoreHelper.checkOperationStatus(operationInProgress);
} catch (e) {
console.error(e);
error = e;
}
expect(error.message).to.eq(errorMessage);
});
});
});
function itStartsRestore(backupRunId) {
it('restores specified backup', () => {
expect(nockResult.body).to.deep.eq({
restoreBackupContext: {
backupRunId,
project: sourceProjectId,
instanceId: sourceInstanceId,
},
});
});
itReturnsOperation(operationInProgress);
}
function itReturnsOperation(op) {
it('returns operation', () => {
expect(restoreOperation).to.deep.eq(op);
});
}
});
function nockGoogle() {
return nock('https://www.googleapis.com');
}
function nockRestore(targetProjectId, targetInstanceId) {
nockJwt();
const result = {};
nockGoogle()
.post(`/sql/v1beta4/projects/${targetProjectId}/instances/${targetInstanceId}/restoreBackup`)
.reply((uri, requestBody) => {
result.body = requestBody;
return [200, operationInProgress];
});
return result;
}
function nockList(projectId, instanceId) {
nockJwt();
nockGoogle()
.get(
`/sql/v1beta4/projects/${projectId}/instances/${instanceId}/backupRuns`
)
.reply(200,
{
items: backupList,
},
);
}
function nockJwt() {
nockGoogle()
.post('/oauth2/v4/token')
.reply(200, {
"access_token": "XXXX.c.XXXXXXXX_",
"expires_in": 3599,
"token_type": "Bearer"
});
}
function nockOperation(targetProjectId, returnOperation) {
nockJwt();
nockGoogle()
.get(
`/sql/v1beta4/projects/${targetProjectId}/operations/1234`
)
.reply(200, returnOperation);
}
function nockListOperations(projectId, instanceId) {
nockJwt();
nockGoogle()
.get(
`/sql/v1beta4/projects/${projectId}/operations?maxResults=10&instance=${instanceId}`
)
.reply(200, { items: [operationSuccess, operationInProgress, operationFailed] });
}