-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathglossary.test.ts
382 lines (355 loc) · 14.1 KB
/
glossary.test.ts
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
// Copyright 2022 DeepL SE (https://www.deepl.com)
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
import * as deepl from 'deepl-node';
import fs from 'fs';
import { makeTranslator, tempFiles, withRealServer, testTimeout } from './core';
import { v4 as randomUUID } from 'uuid';
const invalidGlossaryId = 'invalid_glossary_id';
const nonExistentGlossaryId = '96ab91fd-e715-41a1-adeb-5d701f84a483';
function getGlossaryName(): string {
return `deepl-node-test-glossary: ${expect.getState().currentTestName} ${randomUUID()}`;
}
interface CreateManagedGlossaryArgs {
name?: string;
sourceLang: deepl.LanguageCode;
targetLang: deepl.LanguageCode;
entries: deepl.GlossaryEntries;
glossaryNameSuffix?: string;
}
async function createManagedGlossary(
translator: deepl.Translator,
args: CreateManagedGlossaryArgs,
): Promise<[deepl.GlossaryInfo, () => void]> {
args.glossaryNameSuffix = args?.glossaryNameSuffix || '';
args.name = args?.name || getGlossaryName() + args.glossaryNameSuffix;
const glossary = await translator.createGlossary(
args.name,
args.sourceLang,
args.targetLang,
args.entries,
);
const cleanupGlossary = async () => {
try {
await translator.deleteGlossary(glossary);
} catch (e) {
// Suppress errors
}
};
return [glossary, cleanupGlossary];
}
describe('translate using glossaries', () => {
it('should create glossaries', async () => {
const translator = makeTranslator();
const glossaryName = getGlossaryName();
const sourceLang = 'en';
const targetLang = 'de';
const entries = new deepl.GlossaryEntries({ entries: { Hello: 'Hallo' } });
const [glossary, cleanupGlossary] = await createManagedGlossary(translator, {
name: glossaryName,
sourceLang,
targetLang,
entries,
});
try {
expect(glossary.name).toBe(glossaryName);
expect(glossary.sourceLang).toBe(sourceLang);
expect(glossary.targetLang).toBe(targetLang);
// Note: ready field is indeterminate
// Note: creationTime according to server might differ from local clock
expect(glossary.entryCount).toBe(Object.keys(entries).length);
const getResult = await translator.getGlossary(glossary.glossaryId);
expect(getResult.glossaryId).toBe(glossary.glossaryId);
expect(getResult.name).toBe(glossary.name);
expect(getResult.sourceLang).toBe(glossary.sourceLang);
expect(getResult.targetLang).toBe(glossary.targetLang);
expect(getResult.creationTime.getTime()).toBe(glossary.creationTime.getTime());
expect(getResult.entryCount).toBe(glossary.entryCount);
} finally {
await cleanupGlossary();
}
});
it('should create glossaries from CSV', async () => {
const translator = makeTranslator();
const glossaryName = getGlossaryName();
const sourceLang = 'en';
const targetLang = 'de';
const expectedEntries = new deepl.GlossaryEntries({
entries: {
sourceEntry1: 'targetEntry1',
'source"Entry': 'target,Entry',
},
});
const csvFile = Buffer.from(
'sourceEntry1,targetEntry1,en,de\n"source""Entry","target,Entry",en,de',
);
const glossary = await translator.createGlossaryWithCsv(
glossaryName,
sourceLang,
targetLang,
csvFile,
);
try {
const entries = await translator.getGlossaryEntries(glossary);
expect(entries.entries()).toStrictEqual(expectedEntries.entries());
} finally {
try {
await translator.deleteGlossary(glossary);
} catch (e) {
// Suppress errors
}
}
});
it('should reject creating invalid glossaries', async () => {
const translator = makeTranslator();
const glossaryName = getGlossaryName();
const entries = new deepl.GlossaryEntries({ entries: { Hello: 'Hallo' } });
try {
await expect(translator.createGlossary('', 'en', 'de', entries)).rejects.toThrowError(
deepl.DeepLError,
);
const targetLangXX = <deepl.TargetLanguageCode>'xx'; // Type cast to silence type-checks
await expect(
translator.createGlossary(glossaryName, 'en', targetLangXX, entries),
).rejects.toThrowError(deepl.DeepLError);
} finally {
const glossaries = await translator.listGlossaries();
for (const glossaryInfo of glossaries) {
if (glossaryInfo.name === glossaryName) {
await translator.deleteGlossary(glossaryInfo);
}
}
}
});
it('should get glossaries', async () => {
const translator = makeTranslator();
const sourceLang = 'en';
const targetLang = 'de';
const entries = new deepl.GlossaryEntries({ entries: { Hello: 'Hallo' } });
const [createdGlossary, cleanupGlossary] = await createManagedGlossary(translator, {
sourceLang,
targetLang,
entries,
});
try {
const glossary = await translator.getGlossary(createdGlossary.glossaryId);
expect(glossary.glossaryId).toBe(createdGlossary.glossaryId);
expect(glossary.name).toBe(createdGlossary.name);
expect(glossary.sourceLang).toBe(createdGlossary.sourceLang);
expect(glossary.targetLang).toBe(createdGlossary.targetLang);
expect(glossary.entryCount).toBe(createdGlossary.entryCount);
} finally {
await cleanupGlossary();
}
await expect(translator.getGlossary(invalidGlossaryId)).rejects.toThrowError(
deepl.DeepLError,
);
await expect(translator.getGlossary(nonExistentGlossaryId)).rejects.toThrowError(
deepl.GlossaryNotFoundError,
);
});
it('should get glossary entries', async () => {
const translator = makeTranslator();
const entries = new deepl.GlossaryEntries({
entries: {
Apple: 'Apfel',
Banana: 'Banane',
},
});
const [createdGlossary, cleanupGlossary] = await createManagedGlossary(translator, {
sourceLang: 'en',
targetLang: 'de',
entries,
});
try {
expect((await translator.getGlossaryEntries(createdGlossary)).entries()).toStrictEqual(
entries.entries(),
);
expect(await translator.getGlossaryEntries(createdGlossary.glossaryId)).toStrictEqual(
entries,
);
} finally {
await cleanupGlossary();
}
await expect(translator.getGlossaryEntries(invalidGlossaryId)).rejects.toThrowError(
deepl.DeepLError,
);
await expect(translator.getGlossaryEntries(nonExistentGlossaryId)).rejects.toThrowError(
deepl.GlossaryNotFoundError,
);
});
it('should list glossaries', async () => {
const translator = makeTranslator();
const [createdGlossary, cleanupGlossary] = await createManagedGlossary(translator, {
sourceLang: 'en',
targetLang: 'de',
entries: new deepl.GlossaryEntries({ entries: { Hello: 'Hallo' } }),
});
try {
const glossaries = await translator.listGlossaries();
expect(glossaries).toContainEqual(createdGlossary);
} finally {
await cleanupGlossary();
}
});
it('should delete glossaries', async () => {
const translator = makeTranslator();
const [createdGlossary, cleanupGlossary] = await createManagedGlossary(translator, {
sourceLang: 'en',
targetLang: 'de',
entries: new deepl.GlossaryEntries({ entries: { Hello: 'Hallo' } }),
});
try {
await translator.deleteGlossary(createdGlossary);
await expect(translator.getGlossary(createdGlossary.glossaryId)).rejects.toThrowError(
deepl.GlossaryNotFoundError,
);
} finally {
await cleanupGlossary();
}
await expect(translator.deleteGlossary(invalidGlossaryId)).rejects.toThrowError(
deepl.DeepLError,
);
await expect(translator.deleteGlossary(nonExistentGlossaryId)).rejects.toThrowError(
deepl.GlossaryNotFoundError,
);
});
withRealServer('should translate text sentence using glossaries', async () => {
const sourceLang = 'en';
const targetLang = 'de';
const inputText = 'The artist was awarded a prize.';
const translator = makeTranslator();
const [glossary, cleanupGlossary] = await createManagedGlossary(translator, {
sourceLang,
targetLang,
entries: new deepl.GlossaryEntries({
entries: {
artist: 'Maler',
prize: 'Gewinn',
},
}),
});
try {
const result = await translator.translateText(inputText, 'en', 'de', { glossary });
expect(result.text).toContain('Maler');
expect(result.text).toContain('Gewinn');
} finally {
await cleanupGlossary();
}
});
it('should create basic text using glossaries', async () => {
const textsEn = ['Apple', 'Banana'];
const textsDe = ['Apfel', 'Banane'];
const entriesEnDe = new deepl.GlossaryEntries({
entries: {
Apple: 'Apfel',
Banana: 'Banane',
},
});
const entriesDeEn = new deepl.GlossaryEntries({
entries: {
Apfel: 'Apple',
Banane: 'Banana',
},
});
const translator = makeTranslator();
const [glossaryEnDe, cleanupGlossaryEnDe] = await createManagedGlossary(translator, {
sourceLang: 'en',
targetLang: 'de',
entries: entriesEnDe,
glossaryNameSuffix: '_ende',
});
const [glossaryDeEn, cleanupGlossaryDeEn] = await createManagedGlossary(translator, {
sourceLang: 'de',
targetLang: 'en',
entries: entriesDeEn,
glossaryNameSuffix: '_deen',
});
try {
let result = await translator.translateText(textsEn, 'en', 'de', {
glossary: glossaryEnDe,
});
expect(result.map((textResult: deepl.TextResult) => textResult.text)).toStrictEqual(
textsDe,
);
result = await translator.translateText(textsDe, 'de', 'en-US', {
glossary: glossaryDeEn,
});
expect(result.map((textResult: deepl.TextResult) => textResult.text)).toStrictEqual(
textsEn,
);
} finally {
await cleanupGlossaryEnDe();
await cleanupGlossaryDeEn();
}
});
it(
'should translate documents using glossaries',
async () => {
const [exampleDocumentPath, , outputDocumentPath] = tempFiles();
const inputText = 'artist\nprize';
const expectedOutputText = 'Maler\nGewinn';
fs.writeFileSync(exampleDocumentPath, inputText);
const translator = makeTranslator();
const [glossary, cleanupGlossary] = await createManagedGlossary(translator, {
sourceLang: 'en',
targetLang: 'de',
entries: new deepl.GlossaryEntries({
entries: {
artist: 'Maler',
prize: 'Gewinn',
},
}),
});
try {
await translator.translateDocument(
exampleDocumentPath,
outputDocumentPath,
'en',
'de',
{ glossary },
);
expect(fs.readFileSync(outputDocumentPath).toString()).toBe(expectedOutputText);
} finally {
await cleanupGlossary();
}
},
testTimeout,
); // Increased timeout for test involving translation
it(
'should reject translating invalid text with glossaries',
async () => {
const text = 'Test';
const entries = new deepl.GlossaryEntries({ entries: { Hello: 'Hallo' } });
const translator = makeTranslator();
const [glossaryEnDe, cleanupGlossaryEnDe] = await createManagedGlossary(translator, {
sourceLang: 'en',
targetLang: 'de',
entries,
glossaryNameSuffix: '_ende',
});
const [glossaryDeEn, cleanupGlossaryDeEn] = await createManagedGlossary(translator, {
sourceLang: 'de',
targetLang: 'en',
entries,
glossaryNameSuffix: '_deen',
});
try {
await expect(
translator.translateText(text, null, 'de', { glossary: glossaryEnDe }),
).rejects.toThrowError('sourceLang is required');
await expect(
translator.translateText(text, 'de', 'en-US', { glossary: glossaryEnDe }),
).rejects.toThrowError('Lang must match glossary');
const targetLangEn = <deepl.TargetLanguageCode>'en'; // Type cast to silence type-checks
await expect(
translator.translateText(text, 'de', targetLangEn, { glossary: glossaryDeEn }),
).rejects.toThrowError("targetLang='en' is deprecated");
} finally {
await cleanupGlossaryEnDe();
await cleanupGlossaryDeEn();
}
},
testTimeout,
); // Increased timeout for test involving translation
});