Files
api.pawol.nu/src/api/parole/services/__tests__/parole.test.js
T

61 lines
1.7 KiB
JavaScript
Raw Normal View History

2026-07-04 20:00:51 +04:00
import {describe, it, expect, vi, afterEach} from 'vitest';
2026-07-04 20:00:51 +04:00
const {default: createService} = await import('../parole.js');
function fakeDeeplResponse(text) {
return {
ok: true,
json: async () => ({translations: [{text}]})
2026-07-04 20:00:51 +04:00
};
}
describe('Translator (DeepL)', () => {
2026-07-04 20:00:51 +04:00
const originalFetch = global.fetch;
afterEach(() => {
2026-07-04 20:00:51 +04:00
global.fetch = originalFetch;
vi.restoreAllMocks();
});
it('attache un timeout à la requête DeepL', async () => {
2026-07-04 20:00:51 +04:00
global.fetch = vi.fn(async () => fakeDeeplResponse('hello'));
2026-07-04 20:00:51 +04:00
const strapi = {contentType: vi.fn(() => ({uid: 'api::parole.parole', kind: 'collectionType'}))};
const service = createService({strapi});
await service.translate('FR', 'EN', 'bonjour');
2026-07-04 20:00:51 +04:00
const [, options] = global.fetch.mock.calls[0];
expect(options.signal).toBeInstanceOf(AbortSignal);
});
});
describe('translateLyrics', () => {
2026-07-04 20:00:51 +04:00
const originalFetch = global.fetch;
afterEach(() => {
2026-07-04 20:00:51 +04:00
global.fetch = originalFetch;
vi.restoreAllMocks();
});
it('continue les autres langues quand une traduction DeepL échoue', async () => {
global.fetch = vi.fn(async (_url, options) => {
2026-07-04 20:00:51 +04:00
const {target_lang: target} = JSON.parse(options.body);
if (target === 'ES') {
2026-07-04 20:00:51 +04:00
return {ok: false, status: 500, text: async () => 'boom'};
}
2026-07-04 20:00:51 +04:00
return fakeDeeplResponse(`traduit-${target}`);
});
const strapi = {
contentType: vi.fn(() => ({uid: 'api::parole.parole', kind: 'collectionType'})),
log: {error: vi.fn()}
2026-07-04 20:00:51 +04:00
};
const service = createService({strapi});
const result = await service.translateLyrics('Bonjour le monde');
expect(result.anglais).toContain('traduit-EN');
expect(result.espagnol).toBeUndefined();
});
});