-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.test.js
210 lines (181 loc) · 4.72 KB
/
index.test.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
210
const { MongoClient } = require('mongodb');
const Backend = require('./index');
// eslint-disable-next-line
const uri = globalThis.__MONGO_URI__;
// eslint-disable-next-line
const dbName = globalThis.__MONGO_DB_NAME__;
const collectionName = 'i18n';
// Use custom
const languageFieldName = 'lng';
const namespaceFieldName = 'nas';
const dataFieldName = 'dat';
const translations = [
{
[languageFieldName]: 'en',
[namespaceFieldName]: 'translation',
[dataFieldName]: {
key: 'Hello world',
},
},
{
[languageFieldName]: 'id',
[namespaceFieldName]: 'translation',
[dataFieldName]: {
key: 'Halo dunia',
},
},
{
[languageFieldName]: 'en',
[namespaceFieldName]: 'translation-2',
[dataFieldName]: {
key2: 'Hello world 2',
},
},
{
[languageFieldName]: 'id',
[namespaceFieldName]: 'translation-2',
[dataFieldName]: {
key2: 'Halo dunia 2',
},
},
];
const client = new MongoClient(uri, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
function asyncify(backend, method, ...params) {
return new Promise((resolve, reject) =>
backend[method](...params, (err, res) => {
if (err) reject(err);
else resolve(res);
}),
);
}
function basicReadTest(backend) {
it('valid read result', async () => {
// Concurrency read test
await Promise.all(
translations.map((translation) => async () => {
expect(
await asyncify(
backend,
'read',
translation[languageFieldName],
translation[namespaceFieldName],
),
).toBe(translation[dataFieldName]);
}),
);
});
}
function basicReadMultiTest(backend) {
it('valid readMulti result', async () => {
const langs = [];
const nss = [];
const expectResult = {};
translations.forEach((translation) => {
const lang = translation[languageFieldName];
const ns = translation[namespaceFieldName];
if (langs.indexOf(lang) === -1) langs.push(lang);
if (nss.indexOf(ns) === -1) nss.push(ns);
if (expectResult[lang])
expectResult[lang][ns] = translation[dataFieldName];
else
expectResult[lang] = {
[ns]: translation[dataFieldName],
};
});
expect(
// eslint-disable-next-line no-await-in-loop
await asyncify(backend, 'readMulti', langs, nss),
).toEqual(expectResult);
});
}
function basicCreateTest(backend) {
it('valid create new document', async () => {
const testNs = 'translation';
const testLang = 'es';
const testKey = 'key';
const testVal = 'hola mundo';
await asyncify(backend, 'create', testLang, testNs, testKey, testVal);
expect(await asyncify(backend, 'read', testLang, testNs)).toEqual({
[testKey]: testVal,
});
});
}
async function emptyCollection() {
await client.db(dbName).collection(collectionName).deleteMany({});
}
beforeAll(async () => {
await client.connect();
await client.db(dbName).createCollection(collectionName);
await emptyCollection();
});
beforeEach(async () => {
const updateTasks = [];
const collection = client.db(dbName).collection(collectionName);
for (let i = 0; i < translations.length; i += 1) {
const translation = translations[i];
updateTasks.push(
collection.updateOne(
{
[languageFieldName]: translation[languageFieldName],
[namespaceFieldName]: translation[namespaceFieldName],
},
{
$set: {
[dataFieldName]: translation[dataFieldName],
},
},
{
upsert: true,
},
),
);
}
await Promise.all(updateTasks);
});
afterEach(async () => {
await emptyCollection();
});
afterAll(async () => {
await client.db(dbName).dropCollection(collectionName);
await client.close();
});
it('Remove MongoDB special character', () => {
const backend = new Backend(null, {
languageFieldName: 'fie.ld',
namespaceFieldName: '$ns',
dataFieldName: '$da.ta',
});
expect(backend.opts.languageFieldName).toBe('field');
expect(backend.opts.namespaceFieldName).toBe('ns');
expect(backend.opts.dataFieldName).toBe('data');
});
describe('with custom MongoClient', () => {
const backend = new Backend(null, {
client,
dbName,
collectionName,
languageFieldName,
namespaceFieldName,
dataFieldName,
persistConnection: true,
});
basicReadTest(backend);
basicReadMultiTest(backend);
basicCreateTest(backend);
});
describe('with standard config', () => {
const backend = new Backend(null, {
uri,
dbName,
collectionName,
languageFieldName,
namespaceFieldName,
dataFieldName,
});
basicReadTest(backend);
basicReadMultiTest(backend);
basicCreateTest(backend);
});