mirror of https://github.com/abpframework/abp
parent
20bfd29a5c
commit
6eb28e35c9
@ -0,0 +1,90 @@
|
|||||||
|
import { createLocalizer, createLocalizerWithFallback } from '../utils/localization-utils';
|
||||||
|
|
||||||
|
describe('Localization Utils', () => {
|
||||||
|
describe('#createLocalizer', () => {
|
||||||
|
const localize = createLocalizer({
|
||||||
|
values: { foo: { bar: 'baz' }, x: { y: 'z' } },
|
||||||
|
defaultResourceName: 'x',
|
||||||
|
currentCulture: null,
|
||||||
|
languages: [],
|
||||||
|
});
|
||||||
|
|
||||||
|
test.each`
|
||||||
|
resource | key | defaultValue | expected
|
||||||
|
${'_'} | ${'TEST'} | ${'DEFAULT'} | ${'TEST'}
|
||||||
|
${'foo'} | ${'bar'} | ${'DEFAULT'} | ${'baz'}
|
||||||
|
${'x'} | ${'bar'} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'a'} | ${'bar'} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${''} | ${'bar'} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${undefined} | ${'bar'} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'foo'} | ${'y'} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'x'} | ${'y'} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${'a'} | ${'y'} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${''} | ${'y'} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${undefined} | ${'y'} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'foo'} | ${''} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'x'} | ${''} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'a'} | ${''} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${''} | ${''} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${undefined} | ${''} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'foo'} | ${undefined} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'x'} | ${undefined} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${'a'} | ${undefined} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${''} | ${undefined} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${undefined} | ${undefined} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
`(
|
||||||
|
'should return $expected when resource name is $resource and key is $key',
|
||||||
|
({ resource, key, defaultValue, expected }) => {
|
||||||
|
const result = localize(resource, key, defaultValue);
|
||||||
|
|
||||||
|
expect(result).toBe(expected);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('#createLocalizerWithFallback', () => {
|
||||||
|
const localizeWithFallback = createLocalizerWithFallback({
|
||||||
|
values: { foo: { bar: 'baz' }, x: { y: 'z' } },
|
||||||
|
defaultResourceName: 'x',
|
||||||
|
currentCulture: null,
|
||||||
|
languages: [],
|
||||||
|
});
|
||||||
|
|
||||||
|
test.each`
|
||||||
|
resources | keys | defaultValue | expected
|
||||||
|
${['', '_']} | ${['TEST', 'OTHER']} | ${'DEFAULT'} | ${'TEST'}
|
||||||
|
${['foo']} | ${['bar']} | ${'DEFAULT'} | ${'baz'}
|
||||||
|
${['x']} | ${['bar']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['a', 'b', 'c']} | ${['bar']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['']} | ${['bar']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${[]} | ${['bar']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['foo']} | ${['y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${['x']} | ${['y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${['a', 'b', 'c']} | ${['y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${['']} | ${['y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${[]} | ${['y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${['foo']} | ${['bar', 'y']} | ${'DEFAULT'} | ${'baz'}
|
||||||
|
${['x']} | ${['bar', 'y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${['a', 'b', 'c']} | ${['bar', 'y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${['']} | ${['bar', 'y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${[]} | ${['bar', 'y']} | ${'DEFAULT'} | ${'z'}
|
||||||
|
${['foo']} | ${['']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['x']} | ${['']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['a', 'b', 'c']} | ${['']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['']} | ${['']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${[]} | ${['']} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['foo']} | ${[]} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['x']} | ${[]} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['a', 'b', 'c']} | ${[]} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${['']} | ${[]} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
${[]} | ${[]} | ${'DEFAULT'} | ${'DEFAULT'}
|
||||||
|
`(
|
||||||
|
'should return $expected when resource names are $resources and keys are $keys',
|
||||||
|
({ resources, keys, defaultValue, expected }) => {
|
||||||
|
const result = localizeWithFallback(resources, keys, defaultValue);
|
||||||
|
|
||||||
|
expect(result).toBe(expected);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
Loading…
Reference in new issue