-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtestReindex.js
More file actions
221 lines (189 loc) · 7.66 KB
/
testReindex.js
File metadata and controls
221 lines (189 loc) · 7.66 KB
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
const assert = require('assert');
const sinon = require('sinon');
const { v4: uuid } = require('uuid');
const { constants: arsenalConstants, models: arsenalModels } = require('arsenal');
const { Warp10Client } = require('../../../../libV2/warp10');
const { ReindexTask } = require('../../../../libV2/tasks');
const { now } = require('../../../../libV2/utils');
const { BucketD, values } = require('../../../utils/mock/');
const { fetchRecords } = require('../../../utils/v2Data');
const { mpuBucketPrefix } = arsenalConstants;
const { ObjectMD } = arsenalModels;
const { CANONICAL_ID, BUCKET_NAME, OBJECT_KEY } = values;
const bucketCounts = [1, 251];
const bucketRecord = {
sizeD: 2048,
objD: 1,
};
const accountRecord = {
sizeD: 2048,
objD: 1,
};
describe('Test ReindexTask', function () {
this.timeout(120000);
let prefix;
let warp10;
let reindexTask;
const bucketd = new BucketD(true);
before(() => bucketd.start());
beforeEach(() => {
prefix = uuid();
warp10 = new Warp10Client({ nodeId: prefix });
reindexTask = new ReindexTask({ warp10: [warp10] });
reindexTask._program = { opts: () => ({ bucket: [], nodeId: prefix }) };
});
afterEach(() => {
bucketd.reset();
});
async function fetchReindex(labels) {
return fetchRecords(
warp10,
'utapi.repair.reindex',
labels,
{ end: now(), count: -100 },
'@utapi/decodeRecord',
);
}
describe('test different bucket listing lengths', () => {
async function assertResult(labels, value) {
const series = await fetchReindex(labels);
assert.strictEqual(series.length, 1);
assert.strictEqual(series[0].values.length, 1);
assert.deepStrictEqual(series[0].values[0], value);
}
bucketCounts.forEach(count => {
it(`should reindex bucket listing with a length of ${count}`, async () => {
const bucket = `${BUCKET_NAME}-${count}`;
const mpuBucket = `${mpuBucketPrefix}${bucket}`;
bucketd
.setBucketContent({
bucketName: bucket,
contentLength: 1024,
})
.setBucketContent({
bucketName: mpuBucket,
contentLength: 1024,
})
.setBucketCount(count)
.createBuckets();
await reindexTask._execute();
await assertResult({ bck: bucket, node: prefix }, bucketRecord);
await assertResult({ acc: CANONICAL_ID, node: prefix }, accountRecord);
});
});
});
describe('test invalid responses from warp 10', () => {
let warp10Stub;
beforeEach(() => {
warp10Stub = sinon.stub(warp10, 'exec');
});
afterEach(() => sinon.restore());
it('should rethrow an error', async () => {
warp10Stub = warp10Stub.rejects();
assert.rejects(() => reindexTask._fetchCurrentMetrics('bck', BUCKET_NAME));
});
it('should throw if an empty response is returned', async () => {
warp10Stub = warp10Stub.callsFake(async () => ({ result: undefined }));
assert.rejects(() => reindexTask._fetchCurrentMetrics('bck', BUCKET_NAME));
});
it('should throw if an empty stack is returned', async () => {
warp10Stub = warp10Stub.callsFake(async () => ({ result: [] }));
assert.rejects(() => reindexTask._fetchCurrentMetrics('bck', BUCKET_NAME));
});
it('should throw if objD is not an integer', async () => {
warp10Stub = warp10Stub.callsFake(async () => ({ result: [{ objD: null, sizeD: 1 }] }));
assert.rejects(() => reindexTask._fetchCurrentMetrics('bck', BUCKET_NAME));
});
it('should throw if sizeD is not an integer', async () => {
warp10Stub = warp10Stub.callsFake(async () => ({ result: [{ objD: 1, sizeD: null }] }));
assert.rejects(() => reindexTask._fetchCurrentMetrics('bck', BUCKET_NAME));
});
});
describe('test invalid responses from bucketd', () => {
let bucketDStub;
beforeEach(() => {
bucketDStub = sinon.stub(bucketd, '_getBucketResponse');
});
afterEach(() => sinon.restore());
it('should skip object if content-length is not an integer', async () => {
bucketDStub = bucketDStub.callsFake(
() => {
const metadata = new ObjectMD().getValue();
// null value taken from error seen in the field
metadata['content-length'] = null;
return [
{
key: OBJECT_KEY,
value: JSON.stringify(metadata),
},
];
},
);
const resp = await ReindexTask._indexBucket('foo');
assert.deepStrictEqual(resp, { size: 0, count: 0 });
});
});
it('should avoid calculating incorrect reindex diffs', async () => {
const bucketName = `${BUCKET_NAME}-1`;
bucketd
.setBucketContent({
bucketName,
contentLength: 1024,
})
.setBucketContent({
bucketName: `${mpuBucketPrefix}${bucketName}`,
contentLength: 1024,
})
.setBucketCount(2)
.createBuckets();
await reindexTask._execute();
let series = await fetchReindex({ bck: bucketName, node: prefix });
assert.strictEqual(series.length, 1);
assert.strictEqual(series[0].values.length, 1);
assert.deepStrictEqual(series[0].values[0], bucketRecord);
// A second run of reindex should generate the same diff
await reindexTask._execute();
series = await fetchReindex({ bck: bucketName, node: prefix });
assert.strictEqual(series.length, 1);
assert.strictEqual(series[0].values.length, 2);
series[0].values.map(value => assert.deepStrictEqual(value, bucketRecord));
});
describe('exponential backoff', () => {
it('should retry when bucketd is unreachable', done => {
// disable bucketd to simulate downtime
bucketd.end();
const bucketDStub = sinon.stub(bucketd, '_getBucketResponse');
bucketDStub.onFirstCall().callsFake(
// Once the timeout promise resolves, bucketd is able to be called.
// If we make a call after 10 seconds, this shows that retries
// have been occuring during bucketd downtime.
() => ({
key: 'foo',
value: 'bar',
}),
);
const reindexPromise = new Promise((resolve, reject) => {
reindexTask._execute()
.then(() => {
resolve('reindexed');
})
.catch(err => {
reject(err);
});
});
const timeoutPromise = new Promise(resolve => {
const f = () => {
bucketd.start();
resolve();
};
setTimeout(f, 10000);
});
Promise.all([reindexPromise, timeoutPromise])
.then(values => {
assert.strictEqual(values[0], 'reindexed');
sinon.restore();
done();
});
});
});
});