-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslationLoader.test.ts
More file actions
435 lines (335 loc) · 13.6 KB
/
translationLoader.test.ts
File metadata and controls
435 lines (335 loc) · 13.6 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
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
// AI Generated Test Code
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
import { loadTranslations, generateCommandTranslationKeys, getAvailableLanguages, getTranslationWithFallback } from './translationLoader';
import i18n from 'i18next';
import * as tauriFs from '@tauri-apps/api/fs';
import * as tauriPath from '@tauri-apps/api/path';
// Mock modules
vi.mock('i18next', () => ({
default: {
t: vi.fn((key, _options) => key),
addResourceBundle: vi.fn(),
services: {
resourceStore: {
data: {
en: {},
ja: {},
},
},
},
},
}));
vi.mock('@tauri-apps/api', () => ({
invoke: vi.fn(),
}));
vi.mock('@tauri-apps/api/fs', () => ({
exists: vi.fn(),
readTextFile: vi.fn(),
}));
vi.mock('@tauri-apps/api/path', () => ({
join: vi.fn(),
dirname: vi.fn(),
}));
// Mock the store
vi.mock('../store/skitStore', () => ({
useSkitStore: {
getState: vi.fn(() => ({
projectPath: null,
})),
},
}));
// Mock fetch for development mode
global.fetch = vi.fn();
describe('translationLoader', () => {
beforeEach(() => {
vi.clearAllMocks();
// Reset window.__TAURI__
(window as any).__TAURI__ = undefined;
(import.meta as any).env = { MODE: 'test' };
});
afterEach(() => {
vi.clearAllMocks();
});
describe('loadTranslations', () => {
it('should load development translations when not in Tauri environment', async () => {
const mockFetch = vi.mocked(global.fetch);
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => ({
locale: 'en',
name: 'English',
translations: { 'hello': 'Hello' },
}),
} as Response);
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => ({
locale: 'ja',
name: 'Japanese',
translations: { 'hello': 'こんにちは' },
}),
} as Response);
await loadTranslations();
expect(mockFetch).toHaveBeenCalledWith('/src/sample/i18n/english.json');
expect(mockFetch).toHaveBeenCalledWith('/src/sample/i18n/japanese.json');
expect(i18n.addResourceBundle).toHaveBeenCalledWith('en', 'translation', { 'hello': 'Hello' }, true, true);
expect(i18n.addResourceBundle).toHaveBeenCalledWith('ja', 'translation', { 'hello': 'こんにちは' }, true, true);
});
it('should handle fetch errors in development mode', async () => {
const mockFetch = vi.mocked(global.fetch);
mockFetch.mockRejectedValue(new Error('Network error'));
const consoleWarnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {});
await loadTranslations();
expect(consoleWarnSpy).toHaveBeenCalled();
expect(consoleWarnSpy).toHaveBeenCalledWith(expect.stringContaining('Failed to load'), expect.any(Error));
consoleWarnSpy.mockRestore();
});
it('should load translations from Tauri filesystem', async () => {
(window as any).__TAURI__ = true;
(import.meta as any).env = { MODE: 'production' };
// Mock store to return a project path
const { useSkitStore } = await import('../store/skitStore');
vi.mocked(useSkitStore.getState).mockReturnValue({
projectPath: '/path/to/project',
} as any);
vi.mocked(tauriPath.join).mockImplementation(async (...args) => args.join('/'));
vi.mocked(tauriFs.exists).mockResolvedValue(true);
vi.mocked(tauriFs.readTextFile).mockResolvedValue(JSON.stringify({
locale: 'en',
name: 'English',
translations: { 'test': 'Test' },
}));
await loadTranslations();
expect(tauriFs.exists).toHaveBeenCalledWith('/path/to/project/i18n');
expect(tauriFs.readTextFile).toHaveBeenCalled();
expect(i18n.addResourceBundle).toHaveBeenCalled();
});
it('should fallback to development mode when project path not found', async () => {
(window as any).__TAURI__ = true;
// Mock store to return no project path
const { useSkitStore } = await import('../store/skitStore');
vi.mocked(useSkitStore.getState).mockReturnValue({
projectPath: null,
} as any);
const mockFetch = vi.mocked(global.fetch);
mockFetch.mockResolvedValue({
ok: false,
} as Response);
const consoleWarnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {});
await loadTranslations();
expect(consoleWarnSpy).toHaveBeenCalledWith('No project path set, using development translations');
consoleWarnSpy.mockRestore();
});
it('should handle missing i18n directory', async () => {
(window as any).__TAURI__ = true;
(import.meta as any).env = { MODE: 'production' };
// Mock store to return a project path
const { useSkitStore } = await import('../store/skitStore');
vi.mocked(useSkitStore.getState).mockReturnValue({
projectPath: '/path/to/project',
} as any);
vi.mocked(tauriPath.join).mockImplementation(async (...args) => args.join('/'));
vi.mocked(tauriFs.exists).mockResolvedValue(false);
const consoleWarnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {});
await loadTranslations();
expect(consoleWarnSpy).toHaveBeenCalledWith('i18n directory not found, using development translations');
consoleWarnSpy.mockRestore();
});
it('should handle JSON parse errors', async () => {
(window as any).__TAURI__ = true;
(import.meta as any).env = { MODE: 'production' };
// Mock store to return a project path
const { useSkitStore } = await import('../store/skitStore');
vi.mocked(useSkitStore.getState).mockReturnValue({
projectPath: '/path/to/project',
} as any);
vi.mocked(tauriPath.join).mockImplementation(async (...args) => args.join('/'));
vi.mocked(tauriFs.exists).mockResolvedValue(true);
vi.mocked(tauriFs.readTextFile).mockResolvedValue('invalid json');
const consoleErrorSpy = vi.spyOn(console, 'error').mockImplementation(() => {});
await loadTranslations();
expect(consoleErrorSpy).toHaveBeenCalledWith(expect.stringContaining('Failed to load'), expect.any(Error));
consoleErrorSpy.mockRestore();
});
it('should skip non-existent language files', async () => {
(window as any).__TAURI__ = true;
(import.meta as any).env = { MODE: 'production' };
// Mock store to return a project path
const { useSkitStore } = await import('../store/skitStore');
vi.mocked(useSkitStore.getState).mockReturnValue({
projectPath: '/path/to/project',
} as any);
vi.mocked(tauriPath.join).mockImplementation(async (...args) => args.join('/'));
// Only i18n directory exists, but no language files
vi.mocked(tauriFs.exists)
.mockResolvedValueOnce(true) // i18n directory
.mockResolvedValue(false); // language files
await loadTranslations();
expect(i18n.addResourceBundle).not.toHaveBeenCalled();
});
it('should handle development mode even with __TAURI__ present', async () => {
(window as any).__TAURI__ = true;
(import.meta as any).env = { MODE: 'development' };
const mockFetch = vi.mocked(global.fetch);
mockFetch.mockResolvedValue({
ok: false,
} as Response);
await loadTranslations();
// In development mode, it will try to load from Tauri first, then fallback to fetch
expect(mockFetch).toHaveBeenCalled();
});
});
describe('generateCommandTranslationKeys', () => {
it('should generate basic command translation keys', () => {
const command = {
id: 'test-command',
};
const keys = generateCommandTranslationKeys(command);
expect(keys).toEqual([
'command.test-command.name',
'command.test-command.description',
]);
});
it('should generate property translation keys', () => {
const command = {
id: 'test-command',
properties: [
{
key: 'text',
type: 'string',
},
],
};
const keys = generateCommandTranslationKeys(command);
expect(keys).toContain('command.test-command.property.text.name');
expect(keys).toContain('command.test-command.property.text.description');
expect(keys).toContain('command.test-command.property.text.placeholder');
});
it('should generate enum translation keys', () => {
const command = {
id: 'test-command',
properties: [
{
key: 'type',
type: 'enum',
enum: ['option1', 'option2'],
},
],
};
const keys = generateCommandTranslationKeys(command);
expect(keys).toContain('command.test-command.property.type.enum.option1');
expect(keys).toContain('command.test-command.property.type.enum.option2');
});
it('should handle commands without properties', () => {
const command = {
id: 'simple-command',
properties: undefined,
};
const keys = generateCommandTranslationKeys(command);
expect(keys).toHaveLength(2);
expect(keys).toEqual([
'command.simple-command.name',
'command.simple-command.description',
]);
});
});
describe('getAvailableLanguages', () => {
it('should return available languages from i18n resource store', async () => {
const mockT = vi.mocked(i18n.t);
mockT.mockImplementation(((key: string, options?: any) => {
if (key === 'language.en' && options?.lng === 'en') return 'English';
if (key === 'language.ja' && options?.lng === 'ja') return '日本語';
return key;
}) as any);
const languages = await getAvailableLanguages();
expect(languages).toEqual([
{ code: 'en', name: 'English' },
{ code: 'ja', name: '日本語' },
]);
});
it('should use language code as fallback name', async () => {
const mockT = vi.mocked(i18n.t);
mockT.mockImplementation(((key: string) => key) as any);
const languages = await getAvailableLanguages();
expect(languages).toEqual([
{ code: 'en', name: 'language.en' },
{ code: 'ja', name: 'language.ja' },
]);
});
});
describe('getTranslationWithFallback', () => {
it('should return translation when available', () => {
const mockT = vi.mocked(i18n.t);
mockT.mockReturnValue('Translated text');
const result = getTranslationWithFallback('test.key');
expect(result).toBe('Translated text');
});
it('should return fallback when translation equals key', () => {
const mockT = vi.mocked(i18n.t);
mockT.mockReturnValue('test.key');
const result = getTranslationWithFallback('test.key', 'Fallback text');
expect(result).toBe('Fallback text');
});
it('should return key when no translation and no fallback', () => {
const mockT = vi.mocked(i18n.t);
mockT.mockReturnValue('test.key');
const result = getTranslationWithFallback('test.key');
expect(result).toBe('test.key');
});
it('should handle non-string translations', () => {
const mockT = vi.mocked(i18n.t);
mockT.mockReturnValue({ some: 'object' } as any);
const result = getTranslationWithFallback('test.key', 'Fallback');
expect(result).toBe('Fallback');
});
it('should pass options to i18n.t', () => {
const mockT = vi.mocked(i18n.t);
mockT.mockReturnValue('Translated with options');
const _options = { lng: 'en', count: 5 };
const result = getTranslationWithFallback('test.key', 'Fallback', _options);
expect(mockT).toHaveBeenCalledWith('test.key', _options);
expect(result).toBe('Translated with options');
});
it('should return key when translation is non-string and no fallback', () => {
const mockT = vi.mocked(i18n.t);
mockT.mockReturnValue(null as any);
const result = getTranslationWithFallback('test.key');
expect(result).toBe('test.key');
});
});
describe('loadDevelopmentTranslations error handling', () => {
it('should handle errors when loading development translations', async () => {
const consoleWarnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {});
const mockFetch = vi.mocked(global.fetch);
// Make fetch throw an error instead of rejecting
mockFetch.mockImplementation(() => {
throw new Error('Network error');
});
// Call loadTranslations which will call loadDevelopmentTranslations
await loadTranslations();
expect(consoleWarnSpy).toHaveBeenCalled();
consoleWarnSpy.mockRestore();
});
});
describe('loadTranslations production error handling', () => {
it('should handle general error and fallback to development translations', async () => {
(window as any).__TAURI__ = true;
(import.meta as any).env = { MODE: 'production' };
const consoleErrorSpy = vi.spyOn(console, 'error').mockImplementation(() => {});
// Make the store import throw an error
vi.doMock('../store/skitStore', () => {
throw new Error('Store import error');
});
const mockFetch = vi.mocked(global.fetch);
mockFetch.mockResolvedValue({
ok: true,
json: async () => ({ locale: 'en', translations: { test: 'value' } })
} as Response);
await loadTranslations();
expect(consoleErrorSpy).toHaveBeenCalledWith('Failed to load translations in Tauri mode:', expect.any(Error));
// Should fallback to development translations
expect(mockFetch).toHaveBeenCalled();
consoleErrorSpy.mockRestore();
});
});
});