-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathutils.js
112 lines (108 loc) · 3.92 KB
/
utils.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
const { StreamChat } = require('../../dist');
require('dotenv').config({ path: `${process.cwd()}/test/typescript/.env` });
const apiKey = process.env.API_KEY;
const apiSecret = process.env.API_SECRET;
const multiTenancySecret = process.env.MULTITENANCY_API_SECRET;
const multiTenancyKey = process.env.MULTITENANCY_API_KEY;
module.exports = {
createMultiTenancyUsers: async function createMultiTenancyUsers(userIDs, teams = [], additionalInfo) {
const serverClient = await this.getMultiTenancyServerTestClient();
const users = [];
for (const userID of userIDs) {
users.push({ id: userID, teams, ...additionalInfo });
}
return await serverClient.upsertUsers(users);
},
createUsers: async function createUsers(userIDs, additionalInfo) {
const serverClient = this.getServerTestClient();
const users = [];
for (const userID of userIDs) {
users.push({ id: userID, ...additionalInfo });
}
return await serverClient.upsertUsers(users);
},
createMultiTenancyUserToken: function createUserToken(userID) {
const chat = new StreamChat(multiTenancyKey, multiTenancySecret);
return chat.createToken(userID);
},
createUserToken: function createUserToken(userID) {
const chat = new StreamChat(apiKey, apiSecret);
return chat.createToken(userID);
},
createTestChannel: async function createTestChannel(id, userID) {
const client = this.getTestClient(true);
const channel = client.channel('messaging', id, {
created_by_id: userID,
});
await channel.create();
return channel;
},
createTestChannelForUser: async function createTestChannelForUser(id, userID, options = {}) {
const client = await this.getTestClientForUser(userID, options);
const channel = client.channel('messaging', id, { members: [userID] });
await channel.create();
return channel;
},
createTestMultiTenancyChannelForUser: async function createTestMultiTenancyChannelForUser(
id,
userID,
team,
options = {},
) {
const client = await this.getMultiTenancyTestClientForUser(userID, options);
const channel = client.channel('messaging', id, { members: [userID], team });
await channel.create();
return channel;
},
getMultiTenancyTestClient: async function getMultiTenancyTestClient(serverSide) {
const client = new StreamChat(multiTenancyKey, serverSide ? multiTenancySecret : null, {
timeout: 8000,
allowServerSideConnect: true,
});
if (serverSide) {
await client.updateAppSettings({
multi_tenant_enabled: true,
});
}
return client;
},
getMultiTenancyTestClientForUser: async function getMultiTenancyTestClientForUser(userID, options = {}) {
const client = await this.getMultiTenancyTestClient(false);
const health = await client.connectUser({ id: userID, ...options }, this.createMultiTenancyUserToken(userID));
client.health = health;
return client;
},
getMultiTenancyServerTestClient: async function getMultiTenancyServerTestClient() {
return await this.getMultiTenancyTestClient(true);
},
getServerTestClient: function getServerTestClient() {
return this.getTestClient(true);
},
getTestClient: function getTestClient(serverSide) {
return new StreamChat(apiKey, serverSide ? apiSecret : null, {
timeout: 8000,
allowServerSideConnect: true,
});
},
getTestClientForUser: async function getTestClientForUser(userID, options = {}) {
const client = this.getTestClient(false);
const health = await client.connectUser({ id: userID, ...options }, this.createUserToken(userID));
client.health = health;
return client;
},
getTestClientForUser2: function getTestClientForUser2(userID, options) {
const client = this.getTestClient(false);
client.connectUser({ id: userID, ...options }, this.createUserToken(userID));
return client;
},
runAndLogPromise: function runAndLogPromise(promiseCallable) {
promiseCallable().catch((err) => {
console.warn('runAndLogPromise failed with error', err);
});
},
sleep: function sleep(ms) {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
},
};