-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathindex.js
More file actions
84 lines (68 loc) · 2.29 KB
/
Copy pathindex.js
File metadata and controls
84 lines (68 loc) · 2.29 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
/**
* Copyright 2026, Optimizely
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const fs = require('fs');
const path = require('path');
const {
createInstance,
createStaticProjectConfigManager,
createForwardingEventProcessor,
createLogger,
createErrorNotifier,
INFO,
} = require('@optimizely/optimizely-sdk');
const datafilePath = path.join(__dirname, '..', 'shared', 'datafile.json');
const testDatafile = fs.readFileSync(datafilePath, 'utf8');
const TIMEOUT_MS = 10000;
async function testCommonJsRequire() {
let resolveUuid;
const uuidPromise = new Promise((resolve, reject) => {
resolveUuid = resolve;
setTimeout(() => reject(new Error('Timed out waiting for event dispatch')), TIMEOUT_MS);
});
const dispatcher = {
dispatchEvent(logEvent) {
const uuid = logEvent.params.visitors[0].snapshots[0].events[0].uuid;
console.log(`Dispatched event with uuid: ${uuid}`);
if (typeof uuid === 'string' && uuid.length > 0) {
resolveUuid(uuid);
}
return Promise.resolve({});
},
};
const configManager = createStaticProjectConfigManager({
datafile: testDatafile,
});
const eventProcessor = createForwardingEventProcessor(dispatcher);
const client = createInstance({
projectConfigManager: configManager,
eventProcessor: eventProcessor,
});
await client.onReady();
const userContext = client.createUserContext('test_user', { age: 22 });
userContext.decide('flag_1');
const uuid = await uuidPromise;
console.log(`Test passed: event contained valid uuid "${uuid}"`);
client.close();
}
testCommonJsRequire()
.then(() => {
console.log('\n=== CommonJS example completed successfully! ===\n');
process.exit(0);
})
.catch((error) => {
console.error('Test failed:', error);
process.exit(1);
});