forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
videoCache_spec.js
244 lines (214 loc) · 7.45 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
import chai from 'chai';
import { getCacheUrl, store } from 'src/videoCache.js';
import { config } from 'src/config.js';
import { server } from 'test/mocks/xhr.js';
const should = chai.should();
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();
});
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: 25,
key: customKey1
}, {
type: 'xml',
value: vastXml2,
ttlseconds: 25,
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'
}, {
vastXml: vastXml2,
ttl: 25,
customCacheKey: customKey2,
requestId: 'cba54321',
bidder: 'rubicon'
}];
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: 25,
key: customKey1,
bidid: '12345abc',
bidder: 'appnexus'
}, {
type: 'xml',
value: vastXml2,
ttlseconds: 25,
key: customKey2,
bidid: 'cba54321',
bidder: 'rubicon'
}]
};
JSON.parse(request.requestBody).should.deep.equal(payload);
});
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: 25
}],
});
}
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}`);
});
})