forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
videoCache_spec.js
402 lines (355 loc) · 12.1 KB
/
videoCache_spec.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
import chai from 'chai';
import { getCacheUrl, store } from 'src/videoCache.js';
import { config } from 'src/config.js';
import { server } from 'test/mocks/xhr.js';
import {auctionManager} from '../../src/auctionManager.js';
import {AuctionIndex} from '../../src/auctionIndex.js';
import { batchingCache } from '../../src/auction.js';
const should = chai.should();
function getMockBid(bidder, auctionId, bidderRequestId) {
return {
'bidder': bidder,
'params': {
'placementId': '10433394',
'member': 123,
'keywords': {
'foo': ['bar', 'baz'],
'fizz': ['buzz']
}
},
'bid_id': '12345abc',
'adUnitCode': 'div-gpt-ad-1460505748561-0',
'mediaTypes': {
'banner': {
'sizes': [[300, 250]]
}
},
'transactionId': '4ef956ad-fd83-406d-bd35-e4bb786ab86c',
'sizes': [300, 250],
'bidId': '123',
'bidderRequestId': bidderRequestId,
'auctionId': auctionId
};
}
describe('The video cache', function () {
function assertError(callbackSpy) {
callbackSpy.calledOnce.should.equal(true);
callbackSpy.firstCall.args[0].should.be.an('error');
}
function assertSuccess(callbackSpy) {
callbackSpy.calledOnce.should.equal(true);
should.not.exist(callbackSpy.firstCall.args[0]);
}
describe('when the cache server is unreachable', function () {
it('should execute the callback with an error when store() is called', function () {
const callback = sinon.spy();
store([{ vastUrl: 'my-mock-url.com' }], callback);
server.requests[0].respond(503, {
'Content-Type': 'plain/text',
}, 'The server could not save anything at the moment.');
assertError(callback);
callback.firstCall.args[1].should.deep.equal([]);
});
});
describe('when the cache server is available', function () {
beforeEach(function () {
config.setConfig({
cache: {
url: 'https://prebid.adnxs.com/pbc/v1/cache'
}
})
});
afterEach(function () {
config.resetConfig();
});
describe('cache.timeout', () => {
let getAjax, cb;
beforeEach(() => {
getAjax = sinon.stub().callsFake(() => sinon.stub());
cb = sinon.stub();
});
it('should be respected', () => {
config.setConfig({
cache: {
timeout: 1
}
});
store([{ vastUrl: 'my-mock-url.com' }], cb, getAjax);
sinon.assert.calledWith(getAjax, 1);
});
it('should use default when not specified', () => {
store([], cb, getAjax);
sinon.assert.calledWith(getAjax, undefined);
})
});
it('should execute the callback with a successful result when store() is called', function () {
const uuid = 'c488b101-af3e-4a99-b538-00423e5a3371';
const callback = fakeServerCall(
{ vastUrl: 'my-mock-url.com' },
`{"responses":[{"uuid":"${uuid}"}]}`);
assertSuccess(callback);
callback.firstCall.args[1].should.deep.equal([{ uuid: uuid }]);
});
it('should execute the callback with an error if the cache server response has no responses property', function () {
const callback = fakeServerCall(
{ vastUrl: 'my-mock-url.com' },
'{"broken":[{"uuid":"c488b101-af3e-4a99-b538-00423e5a3371"}]}');
assertError(callback);
callback.firstCall.args[1].should.deep.equal([]);
});
it('should execute the callback with an error if the cache server responds with malformed JSON', function () {
const callback = fakeServerCall(
{ vastUrl: 'my-mock-url.com' },
'Not JSON here');
assertError(callback);
callback.firstCall.args[1].should.deep.equal([]);
});
it('should make the expected request when store() is called on an ad with a vastUrl', function () {
const expectedValue = `<VAST version="3.0">
<Ad>
<Wrapper>
<AdSystem>prebid.org wrapper</AdSystem>
<VASTAdTagURI><![CDATA[my-mock-url.com]]></VASTAdTagURI>
<Impression></Impression>
<Creatives></Creatives>
</Wrapper>
</Ad>
</VAST>`;
assertRequestMade({ vastUrl: 'my-mock-url.com', ttl: 25 }, expectedValue)
});
it('should make the expected request when store() is called on an ad with a vastUrl and a vastImpUrl', function () {
const expectedValue = `<VAST version="3.0">
<Ad>
<Wrapper>
<AdSystem>prebid.org wrapper</AdSystem>
<VASTAdTagURI><![CDATA[my-mock-url.com]]></VASTAdTagURI>
<Impression><![CDATA[imptracker.com]]></Impression>
<Creatives></Creatives>
</Wrapper>
</Ad>
</VAST>`;
assertRequestMade({ vastUrl: 'my-mock-url.com', vastImpUrl: 'imptracker.com', ttl: 25 }, expectedValue)
});
it('should make the expected request when store() is called on an ad with vastXml', function () {
const vastXml = '<VAST version="3.0"></VAST>';
assertRequestMade({ vastXml: vastXml, ttl: 25 }, vastXml);
});
it('should make the expected request when store() is called while supplying a custom key param', function () {
const customKey1 = 'keyword_abc_123';
const customKey2 = 'other_xyz_789';
const vastXml1 = '<VAST version="3.0">test1</VAST>';
const vastXml2 = '<VAST version="3.0">test2</VAST>';
const bids = [{
vastXml: vastXml1,
ttl: 25,
customCacheKey: customKey1
}, {
vastXml: vastXml2,
ttl: 25,
customCacheKey: customKey2
}];
store(bids, function () { });
const request = server.requests[0];
request.method.should.equal('POST');
request.url.should.equal('https://prebid.adnxs.com/pbc/v1/cache');
request.requestHeaders['Content-Type'].should.equal('text/plain;charset=utf-8');
let payload = {
puts: [{
type: 'xml',
value: vastXml1,
ttlseconds: 40,
key: customKey1
}, {
type: 'xml',
value: vastXml2,
ttlseconds: 40,
key: customKey2
}]
};
JSON.parse(request.requestBody).should.deep.equal(payload);
});
it('should include additional params in request payload should config.cache.vasttrack be true', () => {
config.setConfig({
cache: {
url: 'https://prebid.adnxs.com/pbc/v1/cache',
vasttrack: true
}
});
const customKey1 = 'vasttrack_123';
const customKey2 = 'vasttrack_abc';
const vastXml1 = '<VAST version="3.0">testvast1</VAST>';
const vastXml2 = '<VAST version="3.0">testvast2</VAST>';
const bids = [{
vastXml: vastXml1,
ttl: 25,
customCacheKey: customKey1,
requestId: '12345abc',
bidder: 'appnexus',
auctionId: '1234-56789-abcde'
}, {
vastXml: vastXml2,
ttl: 25,
customCacheKey: customKey2,
requestId: 'cba54321',
bidder: 'rubicon',
auctionId: '1234-56789-abcde'
}];
store(bids, function () { });
const request = server.requests[0];
request.method.should.equal('POST');
request.url.should.equal('https://prebid.adnxs.com/pbc/v1/cache');
request.requestHeaders['Content-Type'].should.equal('text/plain;charset=utf-8');
let payload = {
puts: [{
type: 'xml',
value: vastXml1,
ttlseconds: 40,
key: customKey1,
bidid: '12345abc',
aid: '1234-56789-abcde',
bidder: 'appnexus'
}, {
type: 'xml',
value: vastXml2,
ttlseconds: 40,
key: customKey2,
bidid: 'cba54321',
aid: '1234-56789-abcde',
bidder: 'rubicon'
}]
};
JSON.parse(request.requestBody).should.deep.equal(payload);
});
it('should include additional params in request payload should config.cache.vasttrack be true - with timestamp', () => {
config.setConfig({
cache: {
url: 'https://prebid.adnxs.com/pbc/v1/cache',
vasttrack: true
}
});
const customKey1 = 'vasttrack_123';
const customKey2 = 'vasttrack_abc';
const vastXml1 = '<VAST version="3.0">testvast1</VAST>';
const vastXml2 = '<VAST version="3.0">testvast2</VAST>';
const bids = [{
vastXml: vastXml1,
ttl: 25,
customCacheKey: customKey1,
requestId: '12345abc',
bidder: 'appnexus',
auctionId: '1234-56789-abcde'
}, {
vastXml: vastXml2,
ttl: 25,
customCacheKey: customKey2,
requestId: 'cba54321',
bidder: 'rubicon',
auctionId: '1234-56789-abcde'
}];
const stub = sinon.stub(auctionManager, 'index');
stub.get(() => new AuctionIndex(() => [{
getAuctionId() {
return '1234-56789-abcde';
},
getAuctionStart() {
return 1510852447530;
}
}]))
try {
store(bids, function () { });
} finally {
stub.restore();
}
const request = server.requests[0];
request.method.should.equal('POST');
request.url.should.equal('https://prebid.adnxs.com/pbc/v1/cache');
request.requestHeaders['Content-Type'].should.equal('text/plain;charset=utf-8');
let payload = {
puts: [{
type: 'xml',
value: vastXml1,
ttlseconds: 40,
key: customKey1,
bidid: '12345abc',
bidder: 'appnexus',
aid: '1234-56789-abcde',
timestamp: 1510852447530
}, {
type: 'xml',
value: vastXml2,
ttlseconds: 40,
key: customKey2,
bidid: 'cba54321',
bidder: 'rubicon',
aid: '1234-56789-abcde',
timestamp: 1510852447530
}]
};
JSON.parse(request.requestBody).should.deep.equal(payload);
});
it('should wait the duration of the batchTimeout and pass the correct batchSize if batched requests are enabled in the config', () => {
const mockAfterBidAdded = function() {};
let callback = null;
let mockTimeout = sinon.stub().callsFake((cb) => { callback = cb });
config.setConfig({
cache: {
url: 'https://prebid.adnxs.com/pbc/v1/cache',
batchSize: 3,
batchTimeout: 20
}
});
let stubCache = sinon.stub();
const batchAndStore = batchingCache(mockTimeout, stubCache);
for (let i = 0; i < 3; i++) {
batchAndStore({}, {}, mockAfterBidAdded);
}
sinon.assert.calledOnce(mockTimeout);
sinon.assert.calledWith(mockTimeout, sinon.match.any, 20);
const expectedBatch = [{ afterBidAdded: mockAfterBidAdded, auctionInstance: { }, bidResponse: { } }, { afterBidAdded: mockAfterBidAdded, auctionInstance: { }, bidResponse: { } }, { afterBidAdded: mockAfterBidAdded, auctionInstance: { }, bidResponse: { } }];
callback();
sinon.assert.calledWith(stubCache, expectedBatch);
});
function assertRequestMade(bid, expectedValue) {
store([bid], function () { });
const request = server.requests[0];
request.method.should.equal('POST');
request.url.should.equal('https://prebid.adnxs.com/pbc/v1/cache');
request.requestHeaders['Content-Type'].should.equal('text/plain;charset=utf-8');
JSON.parse(request.requestBody).should.deep.equal({
puts: [{
type: 'xml',
value: expectedValue,
ttlseconds: 40
}],
});
}
function fakeServerCall(bid, responseBody) {
const callback = sinon.spy();
store([bid], callback);
server.requests[0].respond(
200,
{
'Content-Type': 'application/json',
},
responseBody);
return callback;
}
});
});
describe('The getCache function', function () {
beforeEach(function () {
config.setConfig({
cache: {
url: 'https://prebid.adnxs.com/pbc/v1/cache'
}
})
});
afterEach(function () {
config.resetConfig();
});
it('should return the expected URL', function () {
const uuid = 'c488b101-af3e-4a99-b538-00423e5a3371';
const url = getCacheUrl(uuid);
url.should.equal(`https://prebid.adnxs.com/pbc/v1/cache?uuid=${uuid}`);
});
})