forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renderer_spec.js
245 lines (202 loc) · 6.93 KB
/
renderer_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
import { expect } from 'chai';
import { Renderer, executeRenderer } from 'src/Renderer.js';
import * as utils from 'src/utils.js';
import { loadExternalScript } from 'src/adloader.js';
require('test/mocks/adloaderStub.js');
describe('Renderer', function () {
let oldAdUnits;
beforeEach(function () {
oldAdUnits = $$PREBID_GLOBAL$$.adUnits;
$$PREBID_GLOBAL$$.adUnits = [];
});
afterEach(function () {
$$PREBID_GLOBAL$$.adUnits = oldAdUnits;
});
describe('Renderer: A renderer installed on a bid response', function () {
let testRenderer1;
let testRenderer2;
let spyRenderFn;
let spyEventHandler;
beforeEach(function () {
testRenderer1 = Renderer.install({
url: 'https://httpbin.org/post',
config: { test: 'config1' },
id: 1
});
testRenderer2 = Renderer.install({
url: 'https://httpbin.org/post',
config: { test: 'config2' },
id: 2
});
spyRenderFn = sinon.spy();
spyEventHandler = sinon.spy();
});
it('is an instance of Renderer', function () {
expect(testRenderer1 instanceof Renderer).to.equal(true);
});
it('has expected properties ', function () {
expect(testRenderer1.url).to.equal('https://httpbin.org/post');
expect(testRenderer1.config).to.deep.equal({ test: 'config1' });
expect(testRenderer1.id).to.equal(1);
});
it('returns config from getConfig method', function () {
expect(testRenderer1.getConfig()).to.deep.equal({ test: 'config1' });
expect(testRenderer2.getConfig()).to.deep.equal({ test: 'config2' });
});
it('sets a render function with the setRender method', function () {
testRenderer1.setRender(spyRenderFn);
expect(typeof testRenderer1.render).to.equal('function');
testRenderer1.render();
expect(spyRenderFn.called).to.equal(true);
});
it('sets event handlers with setEventHandlers method and handles events with installed handlers', function () {
testRenderer1.setEventHandlers({
testEvent: spyEventHandler
});
expect(testRenderer1.handlers).to.deep.equal({
testEvent: spyEventHandler
});
testRenderer1.handleVideoEvent({ id: 1, eventName: 'testEvent' });
expect(spyEventHandler.called).to.equal(true);
});
it('pushes commands to queue if renderer is not loaded', function () {
testRenderer1.loaded = false;
testRenderer1.push(spyRenderFn);
expect(testRenderer1.cmd.length).to.equal(1);
// clear queue for next tests
testRenderer1.cmd = [];
});
it('fires commands immediately if the renderer is loaded', function () {
const func = sinon.spy();
testRenderer1.loaded = true;
testRenderer1.push(func);
expect(testRenderer1.cmd.length).to.equal(0);
sinon.assert.calledOnce(func);
});
it('processes queue by calling each function in queue', function () {
testRenderer1.loaded = false;
const func1 = sinon.spy();
const func2 = sinon.spy();
testRenderer1.push(func1);
testRenderer1.push(func2);
expect(testRenderer1.cmd.length).to.equal(2);
testRenderer1.process();
sinon.assert.calledOnce(func1);
sinon.assert.calledOnce(func2);
expect(testRenderer1.cmd.length).to.equal(0);
});
it('renders immediately when requested', function () {
const testRenderer3 = Renderer.install({
config: { test: 'config2' },
id: 2,
renderNow: true
});
const func1 = sinon.spy();
const testArg = 'testArgument';
testRenderer3.setRender(func1);
testRenderer3.render(testArg);
func1.calledWith(testArg).should.be.ok;
});
});
describe('3rd party renderer', function () {
let utilsSpy;
before(function () {
utilsSpy = sinon.spy(utils, 'logWarn');
});
after(function() {
utilsSpy.restore();
});
it('should not load renderer and log warn message', function() {
$$PREBID_GLOBAL$$.adUnits = [{
code: 'video1',
renderer: {
url: 'http://acdn.adnxs.com/video/outstream/ANOutstreamVideo.js',
render: sinon.spy()
}
}]
let testRenderer = Renderer.install({
url: 'https://httpbin.org/post',
config: { test: 'config1' },
id: 1,
adUnitCode: 'video1'
});
testRenderer.setRender(() => {})
testRenderer.render()
expect(utilsSpy.callCount).to.equal(1);
});
it('should load renderer adunit renderer when backupOnly', function() {
$$PREBID_GLOBAL$$.adUnits = [{
code: 'video1',
renderer: {
url: 'http://acdn.adnxs.com/video/outstream/ANOutstreamVideo.js',
backupOnly: true,
render: sinon.spy()
}
}]
let testRenderer = Renderer.install({
url: 'https://httpbin.org/post',
config: { test: 'config1' },
id: 1,
adUnitCode: 'video1'
});
testRenderer.setRender(() => {})
testRenderer.render()
expect(loadExternalScript.called).to.be.true;
});
it('should load external script instead of publisher-defined one when backupOnly option is true in mediaTypes.video options', function() {
$$PREBID_GLOBAL$$.adUnits = [{
code: 'video1',
mediaTypes: {
video: {
context: 'outstream',
mimes: ['video/mp4'],
playerSize: [[400, 300]],
renderer: {
url: 'https://acdn.adnxs.com/video/outstream/ANOutstreamVideo.js',
backupOnly: true,
render: sinon.spy()
},
}
}
}]
let testRenderer = Renderer.install({
url: 'https://httpbin.org/post',
config: { test: 'config1' },
id: 1,
adUnitCode: 'video1'
});
testRenderer.setRender(() => {})
testRenderer.render()
expect(loadExternalScript.called).to.be.true;
});
it('should call loadExternalScript() for script not defined on adUnit, only when .render() is called', function() {
$$PREBID_GLOBAL$$.adUnits = [{
code: 'video1',
renderer: {
url: 'http://cdn.adnxs.com/renderer/video/ANOutstreamVideo.js',
render: sinon.spy()
}
}];
let testRenderer = Renderer.install({
url: 'https://httpbin.org/post',
config: { test: 'config1' },
id: 1,
adUnitCode: undefined
});
expect(loadExternalScript.called).to.be.false;
testRenderer.render()
expect(loadExternalScript.called).to.be.true;
});
it('call\'s documentResolver when configured', function () {
const documentResolver = sinon.spy(function(bid, sDoc, tDoc) {
return document;
});
let testRenderer = Renderer.install({
url: 'https://httpbin.org/post',
config: { documentResolver: documentResolver }
});
executeRenderer(testRenderer, {}, {});
expect(documentResolver.called).to.be.true;
});
});
});