forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsizeMapping_spec.js
209 lines (169 loc) · 5.68 KB
/
sizeMapping_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
import { expect } from 'chai';
import { resolveStatus, setSizeConfig } from 'src/sizeMapping';
import includes from 'core-js/library/fn/array/includes';
let utils = require('src/utils');
let deepClone = utils.deepClone;
describe('sizeMapping', () => {
var testSizes = [[970, 90], [728, 90], [300, 250], [300, 100], [80, 80]];
var sizeConfig = [{
'mediaQuery': '(min-width: 1200px)',
'sizesSupported': [
[970, 90],
[728, 90],
[300, 250]
]
}, {
'mediaQuery': '(min-width: 768px) and (max-width: 1199px)',
'sizesSupported': [
[728, 90],
[300, 250],
[300, 100]
]
}, {
'mediaQuery': '(min-width: 0px) and (max-width: 767px)',
'sizesSupported': []
}];
var sizeConfigWithLabels = [{
'mediaQuery': '(min-width: 1200px)',
'labels': ['desktop']
}, {
'mediaQuery': '(min-width: 768px) and (max-width: 1199px)',
'sizesSupported': [
[728, 90],
[300, 250]
],
'labels': ['tablet', 'phone']
}, {
'mediaQuery': '(min-width: 0px) and (max-width: 767px)',
'sizesSupported': [
[300, 250],
[300, 100]
],
'labels': ['phone']
}];
let sandbox,
matchMediaOverride;
beforeEach(() => {
setSizeConfig(sizeConfig);
sandbox = sinon.sandbox.create();
matchMediaOverride = {matches: false};
sandbox.stub(window, 'matchMedia').callsFake((...args) => {
if (typeof matchMediaOverride === 'function') {
return matchMediaOverride.apply(window, args);
}
return matchMediaOverride;
});
});
afterEach(() => {
setSizeConfig([]);
sandbox.restore();
});
describe('when handling sizes', () => {
it('should log a warning when mediaQuery property missing from sizeConfig', () => {
let errorConfig = deepClone(sizeConfig);
delete errorConfig[0].mediaQuery;
sandbox.stub(utils, 'logWarn');
resolveStatus(undefined, testSizes, errorConfig);
expect(utils.logWarn.firstCall.args[0]).to.match(/missing.+?mediaQuery/);
});
it('when one mediaQuery block matches, it should filter the adUnit.sizes passed in', () => {
matchMediaOverride = (str) => str === '(min-width: 1200px)' ? {matches: true} : {matches: false};
let status = resolveStatus(undefined, testSizes, sizeConfig);
expect(status).to.deep.equal({
active: true,
sizes: [[970, 90], [728, 90], [300, 250]]
})
});
it('when multiple mediaQuery block matches, it should filter a union of the matched sizesSupported', () => {
matchMediaOverride = (str) => includes([
'(min-width: 1200px)',
'(min-width: 768px) and (max-width: 1199px)'
], str) ? {matches: true} : {matches: false};
let status = resolveStatus(undefined, testSizes, sizeConfig);
expect(status).to.deep.equal({
active: true,
sizes: [[970, 90], [728, 90], [300, 250], [300, 100]]
})
});
it('if no mediaQueries match, it should allow all sizes specified', () => {
matchMediaOverride = () => ({matches: false});
let status = resolveStatus(undefined, testSizes, sizeConfig);
expect(status).to.deep.equal({
active: true,
sizes: testSizes
})
});
it('if a mediaQuery matches and has sizesSupported: [], it should filter all sizes', () => {
matchMediaOverride = (str) => str === '(min-width: 0px) and (max-width: 767px)' ? {matches: true} : {matches: false};
let status = resolveStatus(undefined, testSizes, sizeConfig);
expect(status).to.deep.equal({
active: false,
sizes: []
})
});
it('if a mediaQuery matches and no sizesSupported specified, it should not effect adUnit.sizes', () => {
matchMediaOverride = (str) => str === '(min-width: 1200px)' ? {matches: true} : {matches: false};
let status = resolveStatus(undefined, testSizes, sizeConfigWithLabels);
expect(status).to.deep.equal({
active: true,
sizes: testSizes
})
});
});
describe('when handling labels', () => {
it('should activate/deactivate adUnits/bidders based on sizeConfig.labels', () => {
matchMediaOverride = (str) => str === '(min-width: 1200px)' ? {matches: true} : {matches: false};
let status = resolveStatus({
labels: ['desktop']
}, testSizes, sizeConfigWithLabels);
expect(status).to.deep.equal({
active: true,
sizes: testSizes
});
status = resolveStatus({
labels: ['tablet']
}, testSizes, sizeConfigWithLabels);
expect(status).to.deep.equal({
active: false,
sizes: testSizes
});
});
it('should active/deactivate adUnits/bidders based on requestBids labels', () => {
let activeLabels = ['us-visitor', 'desktop', 'smart'];
let status = resolveStatus({
labels: ['uk-visitor'],
activeLabels
}, testSizes, sizeConfigWithLabels);
expect(status).to.deep.equal({
active: false,
sizes: testSizes
});
status = resolveStatus({
labels: ['us-visitor'],
activeLabels
}, testSizes, sizeConfigWithLabels);
expect(status).to.deep.equal({
active: true,
sizes: testSizes
});
status = resolveStatus({
labels: ['us-visitor', 'tablet'],
labelAll: true,
activeLabels
}, testSizes, sizeConfigWithLabels);
expect(status).to.deep.equal({
active: false,
sizes: testSizes
});
status = resolveStatus({
labels: ['us-visitor', 'desktop'],
labelAll: true,
activeLabels
}, testSizes, sizeConfigWithLabels);
expect(status).to.deep.equal({
active: true,
sizes: testSizes
});
});
});
});