forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideoCache_spec.js
More file actions
174 lines (148 loc) · 5.2 KB
/
Copy pathvideoCache_spec.js
File metadata and controls
174 lines (148 loc) · 5.2 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
import 'mocha/mocha';
import chai from 'chai';
import { getCacheUrl, store } from 'src/videoCache';
import { config } from 'src/config';
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 () {
let xhr;
let requests;
beforeEach(function () {
xhr = sinon.useFakeXMLHttpRequest();
requests = [];
xhr.onCreate = (request) => requests.push(request);
});
afterEach(function () {
xhr.restore();
});
it('should execute the callback with an error when store() is called', function () {
const callback = sinon.spy();
store([ { vastUrl: 'my-mock-url.com' } ], callback);
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 () {
let xhr;
let requests;
beforeEach(function () {
xhr = sinon.useFakeXMLHttpRequest();
requests = [];
xhr.onCreate = (request) => requests.push(request);
config.setConfig({
cache: {
url: 'https://prebid.adnxs.com/pbc/v1/cache'
}
})
});
afterEach(function () {
xhr.restore();
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);
});
function assertRequestMade(bid, expectedValue) {
store([bid], function() { });
const request = 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);
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}`);
});
})