265 lines
12 KiB (Stored with Git LFS)
JavaScript
265 lines
12 KiB (Stored with Git LFS)
JavaScript
QUnit.test('i18n .detectBrowserLocale', assert => {
|
|
var original_userLanguage = window.navigator.userLanguage
|
|
var original_language = window.navigator.language
|
|
var original_languages = window.navigator.languages
|
|
|
|
var reset = function(){
|
|
window.navigator.userLanguage = original_userLanguage
|
|
window.navigator.language = original_language
|
|
window.navigator.languages = original_languages
|
|
}
|
|
|
|
var mock = function(languages, language, userLanguage){
|
|
Object.defineProperty(window.navigator, 'language', {value: language, configurable: true });
|
|
Object.defineProperty(window.navigator, 'languages', {value: languages, configurable: true });
|
|
Object.defineProperty(window.navigator, 'userLanguage', {value: userLanguage, configurable: true });
|
|
}
|
|
|
|
mock(undefined, undefined, undefined)
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-us')
|
|
|
|
mock(undefined, undefined, 'non-existant');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-us')
|
|
|
|
mock(undefined, undefined, 'en');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-us')
|
|
|
|
mock(undefined, undefined, 'lt');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'lt')
|
|
|
|
mock(undefined, 'lt', 'lv');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'lt')
|
|
|
|
mock(undefined, 'en', 'lv');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-us')
|
|
|
|
mock(['en'], 'lt', 'lv');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-us')
|
|
|
|
mock(['en-us'], 'lt', 'lv');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-us')
|
|
|
|
mock(['en-US'], 'lt', 'lv');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-us')
|
|
|
|
mock(['lt', 'en-US'], 'lt', 'lv');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'lt')
|
|
|
|
mock(['en-GB', 'en-US'], 'lt', 'lv');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-gb')
|
|
|
|
mock(['en-XYZ'], 'lt', 'lv');
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'en-us')
|
|
|
|
mock(['xyz', 'lt'], 'lv', undefined);
|
|
assert.equal(App.i18n.detectBrowserLocale(), 'lt')
|
|
|
|
reset()
|
|
})
|
|
|
|
// i18n
|
|
QUnit.test('i18n', assert => {
|
|
|
|
// de
|
|
App.i18n.set('de-de')
|
|
var translated = App.i18n.translateContent('yes')
|
|
assert.equal(translated, 'ja', 'de-de - yes / ja translated correctly')
|
|
|
|
translated = App.i18n.translatePlain('yes')
|
|
assert.equal(translated, 'ja', 'de-de - yes / ja translated correctly')
|
|
|
|
translated = App.i18n.translateInline('yes')
|
|
assert.equal(translated, 'ja', 'de-de - yes / ja translated correctly')
|
|
|
|
translated = App.i18n.translateDeep({
|
|
days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
|
today: 'today',
|
|
})
|
|
assert.deepEqual(translated, {
|
|
days: ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'],
|
|
today: 'heute',
|
|
}, 'de-de - deep object/array translated correctly')
|
|
|
|
translated = App.i18n.translateDeepPlain({
|
|
days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
|
today: 'today',
|
|
})
|
|
assert.deepEqual(translated, {
|
|
days: ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'],
|
|
today: 'heute',
|
|
}, 'de-de - deep object/array translated correctly')
|
|
|
|
translated = App.i18n.translateContent('%s ago', 123);
|
|
assert.equal(translated, 'vor 123', 'de-de - %s')
|
|
|
|
translated = App.i18n.translateContent('%s ago', '<b>quote</b>')
|
|
assert.equal(translated, 'vor <b>quote</b>', 'de-de - %s - quote')
|
|
|
|
translated = App.i18n.translateContent('%s %s test', 123, 'xxx |B|')
|
|
assert.equal(translated, '123 xxx |B| test', 'de-de - %s %s')
|
|
|
|
translated = App.i18n.translateContent('|%s| %s test', 123, 'xxx')
|
|
assert.equal(translated, '<b>123</b> xxx test', 'de-de - *%s* %s')
|
|
|
|
translated = App.i18n.translateContent('||%s|| %s test', 123, 'xxx')
|
|
assert.equal(translated, '<i>123</i> xxx test', 'de-de - *%s* %s')
|
|
|
|
translated = App.i18n.translateContent('_%s_ %s test', 123, 'xxx')
|
|
assert.equal(translated, '<u>123</u> xxx test', 'de-de - _%s_ %s')
|
|
|
|
translated = App.i18n.translateContent('§%s§ %s test', 123, 'xxx')
|
|
assert.equal(translated, '<kbd>123</kbd> xxx test', 'de-de - §%s§ %s')
|
|
|
|
translated = App.i18n.translateContent('//%s// %s test', 123, 'xxx')
|
|
assert.equal(translated, '<del>123</del> xxx test', 'de-de - //%s// %s')
|
|
|
|
translated = App.i18n.translateContent('\'%s\' %s test', 123, 'xxx')
|
|
assert.equal(translated, ''123' xxx test', 'de-de - \'%s\' %s')
|
|
|
|
translated = App.i18n.translateContent('<test&now>//*äöüß')
|
|
assert.equal(translated, '<test&now>//*äöüß', 'de - <test&now>//*äöüß')
|
|
|
|
translated = App.i18n.translateContent('some link [to what ever](http://lalala)')
|
|
assert.equal(translated, 'some link <a href="http://lalala" target="_blank">to what ever</a>', 'de-de - link')
|
|
|
|
translated = App.i18n.translateContent('some link [to what ever](%s)', 'http://lalala')
|
|
assert.equal(translated, 'some link <a href="http://lalala" target="_blank">to what ever</a>', 'de-de - link')
|
|
|
|
translated = App.i18n.translateContent('Enables user authentication via %s. Register your app first at [%s](%s).', 'XXX', 'YYY', 'http://lalala')
|
|
assert.equal(translated, 'Aktivieren der Benutzeranmeldung über XXX. Registrieren Sie Ihre Anwendung zuerst über <a href="http://lalala" target="_blank">YYY</a>.', 'en-us - link')
|
|
|
|
var time_local = new Date();
|
|
var offset = time_local.getTimezoneOffset();
|
|
var timestamp = App.i18n.translateTimestamp('2012-11-06T21:07:24Z', offset);
|
|
assert.equal(timestamp, '06.11.2012 21:07', 'de-de - timestamp translated correctly')
|
|
|
|
var timestamp = App.i18n.translateTimestamp('2021-02-08 09:13:20 UTC', offset);
|
|
assert.equal(timestamp, '08.02.2021 09:13', 'de-de - timestamp translated correctly with UTC format')
|
|
|
|
timestamp = App.i18n.translateTimestamp('', offset);
|
|
assert.equal(timestamp, '', 'de-de - timestamp translated correctly')
|
|
|
|
timestamp = App.i18n.translateTimestamp(null, offset);
|
|
assert.equal(timestamp, null, 'de-de - timestamp translated correctly')
|
|
|
|
timestamp = App.i18n.translateTimestamp(undefined, offset);
|
|
assert.equal(timestamp, undefined, 'de-de - timestamp translated correctly')
|
|
|
|
var date = App.i18n.translateDate('2012-11-06', 0)
|
|
assert.equal(date, '06.11.2012', 'de-de - date translated correctly')
|
|
|
|
date = App.i18n.translateDate('', 0)
|
|
assert.equal(date, '', 'de-de - date translated correctly')
|
|
|
|
date = App.i18n.translateDate(null, 0)
|
|
assert.equal(date, null, 'de-de - date translated correctly')
|
|
|
|
date = App.i18n.translateDate(undefined, 0)
|
|
assert.equal(date, undefined, 'de-de - date translated correctly')
|
|
|
|
date = App.i18n.timeFormat()
|
|
assert.deepEqual(date, { "FORMAT_DATE": "dd.mm.yyyy", "FORMAT_DATETIME": "dd.mm.yyyy HH:MM" }, 'timeFormat property')
|
|
|
|
// Verify that the datepicker gets the correct format too.
|
|
el_date = App.UiElement.date.render({name: 'test', value: '2018-07-06'})
|
|
assert.equal(el_date.find('.js-datepicker').get(0).value, '06.07.2018')
|
|
|
|
// en
|
|
App.i18n.set('en-us')
|
|
translated = App.i18n.translateContent('yes')
|
|
assert.equal(translated, 'yes', 'en-us - yes translated correctly')
|
|
|
|
translated = App.i18n.translatePlain('yes')
|
|
assert.equal(translated, 'yes', 'en-us - yes translated correctly')
|
|
|
|
translated = App.i18n.translateInline('yes')
|
|
assert.equal(translated, 'yes', 'en-us - yes translated correctly')
|
|
|
|
translated = App.i18n.translateContent('%s ago', 123);
|
|
assert.equal(translated, '123 ago', 'en-us - %s')
|
|
|
|
translated = App.i18n.translateContent('%s ago', '<b>quote</b>')
|
|
assert.equal(translated, '<b>quote</b> ago', 'en-us - %s - qupte')
|
|
|
|
translated = App.i18n.translateContent('%s %s test', 123, 'xxx')
|
|
assert.equal(translated, '123 xxx test', 'en-us - %s %s')
|
|
|
|
translated = App.i18n.translateContent('|%s| %s test', 123, 'xxx |B|')
|
|
assert.equal(translated, '<b>123</b> xxx |B| test', 'en-us - *%s* %s')
|
|
|
|
translated = App.i18n.translateContent('||%s|| %s test', 123, 'xxx')
|
|
assert.equal(translated, '<i>123</i> xxx test', 'en-us - *%s* %s')
|
|
|
|
translated = App.i18n.translateContent('_%s_ %s test', 123, 'xxx')
|
|
assert.equal(translated, '<u>123</u> xxx test', 'en-us - _%s_ %s')
|
|
|
|
translated = App.i18n.translateContent('§%s§ %s test', 123, 'xxx')
|
|
assert.equal(translated, '<kbd>123</kbd> xxx test', 'en-us - §%s§ %s')
|
|
|
|
translated = App.i18n.translateContent('Here you can search for tickets, customers, and organizations. Use the asterisk §*§ to find anything, e.g. §smi*§ or §rosent*l§. You also can use ||quotation marks|| for searching phrases: §"some phrase"§.')
|
|
assert.equal(translated, 'Here you can search for tickets, customers, and organizations. Use the asterisk <kbd>*</kbd> to find anything, e.g. <kbd>smi*</kbd> or <kbd>rosent*l</kbd>. You also can use <i>quotation marks</i> for searching phrases: <kbd>"some phrase"</kbd>.', 'en-us - §§ §§ §§ || §§')
|
|
|
|
translated = App.i18n.translateContent('//%s// %s test', 123, 'xxx')
|
|
assert.equal(translated, '<del>123</del> xxx test', 'en-us - //%s// %s')
|
|
|
|
translated = App.i18n.translateContent('\'%s\' %s test', 123, 'xxx')
|
|
assert.equal(translated, ''123' xxx test', 'en-us - \'%s\' %s')
|
|
|
|
translated = App.i18n.translateContent('<test&now>')
|
|
assert.equal(translated, '<test&now>', 'en-us - <test&now>')
|
|
|
|
translated = App.i18n.translateContent('some link [to what ever](http://lalala)')
|
|
assert.equal(translated, 'some link <a href="http://lalala" target="_blank">to what ever</a>', 'en-us - link')
|
|
|
|
translated = App.i18n.translateContent('some link [to what ever](%s)', 'http://lalala')
|
|
assert.equal(translated, 'some link <a href="http://lalala" target="_blank">to what ever</a>', 'en-us - link')
|
|
|
|
translated = App.i18n.translateContent('Enables user authentication via %s. Register your app first at [%s](%s).', 'XXX', 'YYY', 'http://lalala')
|
|
assert.equal(translated, 'Enables user authentication via XXX. Register your app first at <a href="http://lalala" target="_blank">YYY</a>.', 'en-us - link')
|
|
|
|
timestamp = App.i18n.translateTimestamp('2012-11-06T09:07:24Z', offset)
|
|
assert.equal(timestamp, '11/06/2012 9:07 am', 'en - timestamp translated correctly (pm)')
|
|
|
|
timestamp = App.i18n.translateTimestamp('2012-11-06T22:07:24Z', offset)
|
|
assert.equal(timestamp, '11/06/2012 10:07 pm', 'en - timestamp translated correctly (pm)')
|
|
|
|
timestamp = App.i18n.translateTimestamp('', offset);
|
|
assert.equal(timestamp, '', 'en - timestamp translated correctly')
|
|
|
|
timestamp = App.i18n.translateTimestamp(null, offset);
|
|
assert.equal(timestamp, null, 'en - timestamp translated correctly')
|
|
|
|
timestamp = App.i18n.translateTimestamp(undefined, offset);
|
|
assert.equal(timestamp, undefined, 'en - timestamp translated correctly')
|
|
|
|
date = App.i18n.translateDate('2012-11-06', 0)
|
|
assert.equal(date, '11/06/2012', 'en - date translated correctly')
|
|
|
|
date = App.i18n.translateDate('', 0)
|
|
assert.equal(date, '', 'en - date translated correctly')
|
|
|
|
date = App.i18n.translateDate(null, 0)
|
|
assert.equal(date, null, 'en - date translated correctly')
|
|
|
|
date = App.i18n.translateDate(undefined, 0)
|
|
assert.equal(date, undefined, 'en - date translated correctly')
|
|
|
|
date = App.i18n.timeFormat()
|
|
assert.deepEqual(date, { "FORMAT_DATE": "mm/dd/yyyy", "FORMAT_DATETIME": "mm/dd/yyyy l:MM P" }, 'timeFormat property')
|
|
|
|
// Verify that the datepicker gets the correct format too.
|
|
el_date = App.UiElement.date.render({name: 'test', value: '2018-07-06'})
|
|
assert.equal(el_date.find('.js-datepicker').get(0).value, '07/06/2018')
|
|
|
|
// locale alias test
|
|
// de
|
|
App.i18n.set('de')
|
|
var translated = App.i18n.translateContent('yes')
|
|
assert.equal(translated, 'ja', 'de - yes / ja translated correctly')
|
|
|
|
// locale detection test
|
|
// de-ch
|
|
App.i18n.set('de-ch')
|
|
var translated = App.i18n.translateContent('yes')
|
|
assert.equal(translated, 'ja', 'de - yes / ja translated correctly')
|
|
});
|