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
|
/*
* SonarQube
* Copyright (C) 2009-2017 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import { resetBundle, translate, translateWithParameters } from '../l10n';
afterEach(() => {
resetBundle({});
});
describe('#translate', () => {
it('should translate simple message', () => {
resetBundle({ my_key: 'my message' });
expect(translate('my_key')).toBe('my message');
});
it('should translate message with composite key', () => {
resetBundle({ 'my.composite.message': 'my message' });
expect(translate('my', 'composite', 'message')).toBe('my message');
expect(translate('my.composite', 'message')).toBe('my message');
expect(translate('my', 'composite.message')).toBe('my message');
expect(translate('my.composite.message')).toBe('my message');
});
it('should not translate message but return its key', () => {
expect(translate('random')).toBe('random');
expect(translate('random', 'key')).toBe('random.key');
expect(translate('composite.random', 'key')).toBe('composite.random.key');
});
});
describe('#translateWithParameters', () => {
it('should translate message with one parameter in the beginning', () => {
resetBundle({ x_apples: '{0} apples' });
expect(translateWithParameters('x_apples', 5)).toBe('5 apples');
});
it('should translate message with one parameter in the middle', () => {
resetBundle({ x_apples: 'I have {0} apples' });
expect(translateWithParameters('x_apples', 5)).toBe('I have 5 apples');
});
it('should translate message with one parameter in the end', () => {
resetBundle({ x_apples: 'Apples: {0}' });
expect(translateWithParameters('x_apples', 5)).toBe('Apples: 5');
});
it('should translate message with several parameters', () => {
resetBundle({ x_apples: '{0}: I have {2} apples in my {1} baskets - {3}' });
expect(translateWithParameters('x_apples', 1, 2, 3, 4)).toBe(
'1: I have 3 apples in my 2 baskets - 4'
);
});
it('should not translate message but return its key', () => {
expect(translateWithParameters('random', 5)).toBe('random.5');
expect(translateWithParameters('random', 1, 2, 3)).toBe('random.1.2.3');
expect(translateWithParameters('composite.random', 1, 2)).toBe('composite.random.1.2');
});
});
|