forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renderer_spec.js
155 lines (128 loc) · 4.52 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
import { expect } from 'chai';
import { Renderer } from 'src/Renderer.js';
import * as utils from 'src/utils.js';
import { loadExternalScript } from 'src/adloader.js';
describe('Renderer', function () {
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 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);
});
});
describe('3rd party renderer', function () {
let adUnitsOld;
let utilsSpy;
before(function () {
adUnitsOld = $$PREBID_GLOBAL$$.adUnits;
utilsSpy = sinon.spy(utils, 'logWarn');
});
after(function() {
$$PREBID_GLOBAL$$.adUnits = adUnitsOld;
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 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;
});
});
});