svelte-i18n/test/index.test.js
Christian Kaisermann d483244a9f feat: 🎸 add custom formats support
BREAKING CHANGE: This PR modifies the formatter method arguments.
2019-11-22 13:51:18 -03:00

207 lines
5.5 KiB
JavaScript

import {
dictionary,
locale,
format,
getClientLocale,
addCustomFormats,
customFormats,
} from '../src/index.js'
let _
let currentLocale
const dict = {
pt: {
hi: 'olá você',
'switch.lang': 'Trocar idioma',
greeting: {
ask: 'Por favor, digite seu nome',
message: 'Olá {name}, como vai?',
},
photos:
'Você {n, plural, =0 {não tem fotos.} =1 {tem uma foto.} other {tem # fotos.}}',
cats: 'Tenho {n, number} {n,plural,=0{gatos}one{gato}other{gatos}}',
},
en: {
hi: 'hi yo',
'switch.lang': 'Switch language',
greeting: {
ask: 'Please type your name',
message: 'Hello {name}, how are you?',
},
photos:
'You have {n, plural, =0 {no photos.} =1 {one photo.} other {# photos.}}',
cats: 'I have {n, number} {n,plural,one{cat}other{cats}}',
},
}
format.subscribe(formatFn => {
_ = formatFn
})
dictionary.set(dict)
locale.subscribe(l => (currentLocale = l))
locale.set('pt')
it('should change locale', () => {
locale.set('pt')
expect(currentLocale).toBe('pt')
locale.set('en')
expect(currentLocale).toBe('en')
})
it('should fallback to existing locale', () => {
locale.set('pt-BR')
expect(currentLocale).toBe('pt')
locale.set('en-US')
expect(currentLocale).toBe('en')
})
it("should throw an error if locale doesn't exist", () => {
expect(() => locale.set('FOO')).toThrow()
})
it('should fallback to message id if id is not found', () => {
locale.set('en')
expect(_('batatinha')).toBe('batatinha')
})
it('should translate to current locale', () => {
locale.set('pt')
expect(_('switch.lang')).toBe('Trocar idioma')
locale.set('en')
expect(_('switch.lang')).toBe('Switch language')
})
it('should translate to passed locale', () => {
expect(_('switch.lang', { locale: 'pt' })).toBe('Trocar idioma')
expect(_('switch.lang', { locale: 'en' })).toBe('Switch language')
})
it('should interpolate message with variables', () => {
expect(_('greeting.message', { values: { name: 'Chris' } })).toBe(
'Hello Chris, how are you?',
)
})
it('should interpolate message with variables according to passed locale', () => {
expect(
_('greeting.message', { values: { name: 'Chris' }, locale: 'pt' }),
).toBe('Olá Chris, como vai?')
})
describe('utilities', () => {
describe('get locale', () => {
beforeEach(() => {
delete window.location
window.location = {
hash: '',
search: '',
}
})
it('should get the locale based on the passed hash parameter', () => {
window.location.hash = '#locale=en-US&lang=pt-BR'
expect(getClientLocale({ hash: 'locale' })).toBe('en-US')
expect(getClientLocale({ hash: 'lang' })).toBe('pt-BR')
})
it('should get the locale based on the passed search parameter', () => {
window.location.search = '?locale=en-US&lang=pt-BR'
expect(getClientLocale({ search: 'locale' })).toBe('en-US')
expect(getClientLocale({ search: 'lang' })).toBe('pt-BR')
})
it('should get the locale based on the navigator language', () => {
expect(getClientLocale({ navigator: true })).toBe(
window.navigator.language,
)
})
it('should get the fallback locale', () => {
expect(getClientLocale({ navigator: false, fallback: 'pt' })).toBe('pt')
expect(getClientLocale({ hash: 'locale', fallback: 'pt' })).toBe('pt')
})
})
describe('format utils', () => {
beforeAll(() => {
locale.set('en')
})
it('should capital a translated message', () => {
expect(_.capital('hi')).toBe('Hi yo')
})
it('should title a translated message', () => {
expect(_.title('hi')).toBe('Hi Yo')
})
it('should lowercase a translated message', () => {
expect(_.lower('hi')).toBe('hi yo')
})
it('should uppercase a translated message', () => {
expect(_.upper('hi')).toBe('HI YO')
})
const date = new Date(2019, 3, 24, 23, 45)
it('should format a time value', () => {
locale.set('en')
expect(_.time(date)).toBe('11:45 PM')
expect(_.time(date, { format: 'medium' })).toBe('11:45:00 PM')
})
it('should format a date value', () => {
expect(_.date(date)).toBe('4/24/19')
expect(_.date(date, { format: 'medium' })).toBe('Apr 24, 2019')
})
// number
it('should format a date value', () => {
expect(_.number(123123123)).toBe('123,123,123')
})
})
})
describe('custom formats', () => {
beforeAll(() => {
locale.set('pt-BR')
})
it('should have default number custom formats', () => {
expect(customFormats.number).toMatchObject({
scientific: { notation: 'scientific' },
engineering: { notation: 'engineering' },
compactLong: { notation: 'compact', compactDisplay: 'long' },
compactShort: { notation: 'compact', compactDisplay: 'short' },
})
})
it('should allow to add custom formats', () => {
addCustomFormats({
number: {
usd: { style: 'currency', currency: 'USD' },
},
})
expect(customFormats.number).toMatchObject({
usd: { style: 'currency', currency: 'USD' },
})
})
it('should format messages with custom formats', () => {
addCustomFormats({
number: {
usd: { style: 'currency', currency: 'USD' },
brl: { style: 'currency', currency: 'BRL' },
},
})
expect(_.number(123123123, { format: 'usd' })).toContain('US$')
expect(_.number(123123123, { format: 'usd' })).toContain('123,123,123.00')
expect(_.number(123123123, { format: 'brl' })).toContain('R$')
expect(_.number(123123123, { format: 'brl' })).toContain('123,123,123.00')
})
})