-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathimpressions.debug.spec.js
More file actions
100 lines (84 loc) · 3.39 KB
/
impressions.debug.spec.js
File metadata and controls
100 lines (84 loc) · 3.39 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
import { SplitFactory } from '../../';
import { settingsFactory } from '../../settings';
import splitChangesMock1 from '../mocks/splitchanges.since.-1.json';
import splitChangesMock2 from '../mocks/splitchanges.since.1457552620999.json';
import membershipsFacundo from '../mocks/memberships.facundo@split.io.json';
import { DEBUG } from '@splitsoftware/splitio-commons/src/utils/constants';
import { truncateTimeFrame } from '@splitsoftware/splitio-commons/src/utils/time';
import { url } from '../testUtils';
const baseUrls = {
sdk: 'https://sdk.baseurl/impressionsDebugSuite',
events: 'https://events.baseurl/impressionsDebugSuite'
};
const settings = settingsFactory({
core: {
key: 'asd'
},
urls: baseUrls,
streamingEnabled: false
});
let truncatedTimeFrame;
export default function (fetchMock, assert) {
// Mocking this specific route to make sure we only get the items we want to test from the handlers.
fetchMock.getOnce(url(settings, '/splitChanges?s=1.2&since=-1'), { status: 200, body: splitChangesMock1 });
fetchMock.get(url(settings, '/splitChanges?s=1.2&since=1457552620999'), { status: 200, body: splitChangesMock2 });
fetchMock.get(url(settings, '/memberships/facundo%40split.io'), { status: 200, body: membershipsFacundo });
const splitio = SplitFactory({
core: {
authorizationKey: '<some-token>',
key: 'facundo@split.io'
},
scheduler: {
featuresRefreshRate: 0.5,
segmentsRefreshRate: 0.5,
impressionsRefreshRate: 3000,
impressionsQueueSize: 3 // flush impressions when 3 are queued
},
startup: {
eventsFirstPushWindow: 3000
},
urls: baseUrls,
sync: {
impressionsMode: DEBUG,
},
streamingEnabled: false
});
const client = splitio.client();
fetchMock.postOnce(url(settings, '/testImpressions/bulk'), (url, req) => {
assert.equal(req.headers.SplitSDKImpressionsMode, DEBUG);
const data = JSON.parse(req.body);
assert.deepEqual(data, [{
f: 'split_with_config',
i: [{
k: 'facundo@split.io', t: 'o.n', m: data[0].i[0].m, c: 828282828282, r: 'another expected label'
}, {
k: 'facundo@split.io', t: 'o.n', m: data[0].i[1].m, c: 828282828282, r: 'another expected label', pt: data[0].i[0].m,
}, {
k: 'facundo@split.io', t: 'o.n', m: data[0].i[2].m, c: 828282828282, r: 'another expected label', pt: data[0].i[1].m
}]
}]);
client.destroy().then(() => {
assert.end();
});
return 200;
});
fetchMock.postOnce(url(settings, '/testImpressions/count'), (url, opts) => {
assert.deepEqual(JSON.parse(opts.body), {
pf: [{ f: 'always_on_track_impressions_false', m: truncatedTimeFrame, rc: 1 }]
}, 'We should generate impression count for the feature with track impressions disabled.');
return 200;
});
fetchMock.postOnce(url(settings, '/v1/keys/cs'), (url, opts) => {
assert.deepEqual(JSON.parse(opts.body), {
keys: [{ fs: ['always_on_track_impressions_false'], k: 'facundo@split.io' }]
}, 'We should track unique keys for the feature with track impressions disabled.');
return 200;
});
client.ready().then(() => {
truncatedTimeFrame = truncateTimeFrame(Date.now());
client.getTreatment('split_with_config');
client.getTreatment('split_with_config');
client.getTreatment('split_with_config');
assert.equal(client.getTreatment('always_on_track_impressions_false'), 'on');
});
}