2017-12-14 07:19:05 +01:00
|
|
|
'use strict';
|
|
|
|
var common = require('../common');
|
|
|
|
|
|
|
|
describe('I18n', function () {
|
|
|
|
describe('translate', function () {
|
2020-01-18 10:44:35 +01:00
|
|
|
this.timeout(30000);
|
2017-12-14 07:19:05 +01:00
|
|
|
before(function () {
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
});
|
|
|
|
|
2020-01-25 09:07:29 +01:00
|
|
|
jsc.property(
|
|
|
|
'returns message ID unchanged if no translation found',
|
|
|
|
'string',
|
|
|
|
function (messageId) {
|
|
|
|
messageId = messageId.replace(/%(s|d)/g, '%%');
|
|
|
|
var plurals = [messageId, messageId + 's'],
|
|
|
|
fake = [messageId],
|
|
|
|
result = $.PrivateBin.I18n.translate(messageId);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
|
|
|
|
var alias = $.PrivateBin.I18n._(messageId);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
|
|
|
|
var pluralResult = $.PrivateBin.I18n.translate(plurals);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
|
|
|
|
var pluralAlias = $.PrivateBin.I18n._(plurals);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
|
|
|
|
var fakeResult = $.PrivateBin.I18n.translate(fake);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
|
|
|
|
var fakeAlias = $.PrivateBin.I18n._(fake);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
|
2020-02-01 07:40:14 +01:00
|
|
|
if (messageId.indexOf('<a') === -1) {
|
|
|
|
messageId = $.PrivateBin.Helper.htmlEntities(messageId);
|
|
|
|
} else {
|
|
|
|
messageId = DOMPurify.sanitize(
|
|
|
|
messageId, {
|
2020-02-01 08:46:59 +01:00
|
|
|
ALLOWED_TAGS: ['a', 'i', 'span'],
|
2020-02-01 07:40:14 +01:00
|
|
|
ALLOWED_ATTR: ['href', 'id']
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2020-01-25 09:07:29 +01:00
|
|
|
return messageId === result && messageId === alias &&
|
|
|
|
messageId === pluralResult && messageId === pluralAlias &&
|
|
|
|
messageId === fakeResult && messageId === fakeAlias;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
jsc.property(
|
|
|
|
'replaces %s in strings with first given parameter, encoding all, when no link is in the messageID',
|
|
|
|
'string',
|
|
|
|
'(small nearray) string',
|
|
|
|
'string',
|
|
|
|
function (prefix, params, postfix) {
|
2020-02-01 07:40:14 +01:00
|
|
|
prefix = prefix.replace(/%(s|d)/g, '%%').replace(/<a/g, '');
|
|
|
|
params[0] = params[0].replace(/%(s|d)/g, '%%');
|
|
|
|
postfix = postfix.replace(/%(s|d)/g, '%%').replace(/<a/g, '');
|
2020-01-25 09:07:29 +01:00
|
|
|
const translation = $.PrivateBin.Helper.htmlEntities(prefix + params[0] + postfix);
|
|
|
|
params.unshift(prefix + '%s' + postfix);
|
|
|
|
const result = $.PrivateBin.I18n.translate.apply(this, params);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
const alias = $.PrivateBin.I18n._.apply(this, params);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
return translation === result && translation === alias;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
jsc.property(
|
|
|
|
'replaces %s in strings with first given parameter, encoding params only, when a link is part of the messageID',
|
|
|
|
'string',
|
|
|
|
'(small nearray) string',
|
|
|
|
'string',
|
|
|
|
function (prefix, params, postfix) {
|
|
|
|
prefix = prefix.replace(/%(s|d)/g, '%%');
|
|
|
|
params[0] = params[0].replace(/%(s|d)/g, '%%');
|
|
|
|
postfix = postfix.replace(/%(s|d)/g, '%%');
|
|
|
|
const translation = DOMPurify.sanitize(
|
|
|
|
prefix + $.PrivateBin.Helper.htmlEntities(params[0]) + '<a></a>' + postfix, {
|
2020-02-01 08:46:59 +01:00
|
|
|
ALLOWED_TAGS: ['a', 'i', 'span'],
|
2020-01-25 09:07:29 +01:00
|
|
|
ALLOWED_ATTR: ['href', 'id']
|
|
|
|
}
|
|
|
|
);
|
|
|
|
params.unshift(prefix + '%s<a></a>' + postfix);
|
|
|
|
const result = $.PrivateBin.I18n.translate.apply(this, params);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
const alias = $.PrivateBin.I18n._.apply(this, params);
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
return translation === result && translation === alias;
|
|
|
|
}
|
|
|
|
);
|
2020-01-18 10:44:35 +01:00
|
|
|
jsc.property(
|
|
|
|
'replaces %s in strings with first given parameter into an element, encoding all, when no link is in the messageID',
|
|
|
|
'string',
|
|
|
|
'(small nearray) string',
|
|
|
|
'string',
|
|
|
|
function (prefix, params, postfix) {
|
2020-02-01 07:40:14 +01:00
|
|
|
prefix = prefix.replace(/%(s|d)/g, '%%').replace(/<a/g, '');
|
|
|
|
params[0] = params[0].replace(/%(s|d)/g, '%%');
|
|
|
|
postfix = postfix.replace(/%(s|d)/g, '%%').replace(/<a/g, '');
|
2020-01-31 22:42:42 +01:00
|
|
|
const translation = $('<textarea>').text((prefix + params[0] + postfix)).text();
|
|
|
|
let args = Array.prototype.slice.call(params);
|
|
|
|
args.unshift(prefix + '%s' + postfix);
|
2020-01-18 10:44:35 +01:00
|
|
|
let clean = jsdom();
|
|
|
|
$('body').html('<div id="i18n"></div>');
|
2020-01-31 22:42:42 +01:00
|
|
|
args.unshift($('#i18n'));
|
|
|
|
$.PrivateBin.I18n.translate.apply(this, args);
|
2020-01-18 10:44:35 +01:00
|
|
|
const result = $('#i18n').text();
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
clean();
|
|
|
|
clean = jsdom();
|
|
|
|
$('body').html('<div id="i18n"></div>');
|
2020-01-31 22:42:42 +01:00
|
|
|
args[0] = $('#i18n');
|
|
|
|
$.PrivateBin.I18n._.apply(this, args);
|
2020-01-18 10:44:35 +01:00
|
|
|
const alias = $('#i18n').text();
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
clean();
|
|
|
|
return translation === result && translation === alias;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
jsc.property(
|
|
|
|
'replaces %s in strings with first given parameter into an element, encoding params only, when a link is part of the messageID inserted',
|
|
|
|
'string',
|
|
|
|
'(small nearray) string',
|
|
|
|
'string',
|
|
|
|
function (prefix, params, postfix) {
|
2020-01-31 22:42:42 +01:00
|
|
|
prefix = prefix.replace(/%(s|d)/g, '%%').trim();
|
|
|
|
params[0] = params[0].replace(/%(s|d)/g, '%%').trim();
|
|
|
|
postfix = postfix.replace(/%(s|d)/g, '%%').trim();
|
|
|
|
const translation = DOMPurify.sanitize(
|
2020-01-18 10:44:35 +01:00
|
|
|
prefix + $.PrivateBin.Helper.htmlEntities(params[0]) + '<a></a>' + postfix, {
|
2020-02-01 08:46:59 +01:00
|
|
|
ALLOWED_TAGS: ['a', 'i', 'span'],
|
2020-01-18 10:44:35 +01:00
|
|
|
ALLOWED_ATTR: ['href', 'id']
|
|
|
|
}
|
2020-01-31 22:42:42 +01:00
|
|
|
);
|
2020-01-18 10:44:35 +01:00
|
|
|
let args = Array.prototype.slice.call(params);
|
|
|
|
args.unshift(prefix + '%s<a></a>' + postfix);
|
|
|
|
let clean = jsdom();
|
|
|
|
$('body').html('<div id="i18n"></div>');
|
|
|
|
args.unshift($('#i18n'));
|
|
|
|
$.PrivateBin.I18n.translate.apply(this, args);
|
|
|
|
const result = $('#i18n').html();
|
2020-01-18 07:44:32 +01:00
|
|
|
$.PrivateBin.I18n.reset();
|
2020-01-18 10:44:35 +01:00
|
|
|
clean();
|
|
|
|
clean = jsdom();
|
|
|
|
$('body').html('<div id="i18n"></div>');
|
|
|
|
args[0] = $('#i18n');
|
|
|
|
$.PrivateBin.I18n._.apply(this, args);
|
|
|
|
const alias = $('#i18n').html();
|
2020-01-18 07:44:32 +01:00
|
|
|
$.PrivateBin.I18n.reset();
|
2020-01-18 10:44:35 +01:00
|
|
|
clean();
|
2020-01-18 07:44:32 +01:00
|
|
|
return translation === result && translation === alias;
|
|
|
|
}
|
|
|
|
);
|
2017-12-14 07:19:05 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('getPluralForm', function () {
|
|
|
|
before(function () {
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
});
|
|
|
|
|
|
|
|
jsc.property(
|
|
|
|
'returns valid key for plural form',
|
|
|
|
common.jscSupportedLanguages(),
|
|
|
|
'integer',
|
|
|
|
function(language, n) {
|
|
|
|
$.PrivateBin.I18n.reset(language);
|
|
|
|
var result = $.PrivateBin.I18n.getPluralForm(n);
|
|
|
|
// arabic seems to have the highest plural count with 6 forms
|
|
|
|
return result >= 0 && result <= 5;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
// loading of JSON via AJAX needs to be tested in the browser, this just mocks it
|
|
|
|
// TODO: This needs to be tested using a browser.
|
|
|
|
describe('loadTranslations', function () {
|
|
|
|
this.timeout(30000);
|
|
|
|
before(function () {
|
|
|
|
$.PrivateBin.I18n.reset();
|
|
|
|
});
|
|
|
|
|
|
|
|
jsc.property(
|
|
|
|
'downloads and handles any supported language',
|
|
|
|
common.jscSupportedLanguages(),
|
|
|
|
function(language) {
|
2018-12-25 16:42:18 +01:00
|
|
|
// cleanup
|
|
|
|
var clean = jsdom('', {cookie: ['lang=en']});
|
2017-12-14 07:19:05 +01:00
|
|
|
$.PrivateBin.I18n.reset('en');
|
|
|
|
$.PrivateBin.I18n.loadTranslations();
|
2018-12-25 16:42:18 +01:00
|
|
|
clean();
|
|
|
|
|
|
|
|
// mock
|
|
|
|
clean = jsdom('', {cookie: ['lang=' + language]});
|
2017-12-14 07:19:05 +01:00
|
|
|
$.PrivateBin.I18n.reset(language, require('../../i18n/' + language + '.json'));
|
2020-01-25 09:07:29 +01:00
|
|
|
var result = $.PrivateBin.I18n.translate('en'),
|
|
|
|
alias = $.PrivateBin.I18n._('en');
|
2017-12-14 07:19:05 +01:00
|
|
|
clean();
|
2020-01-25 09:07:29 +01:00
|
|
|
return language === result && language === alias;
|
2017-12-14 07:19:05 +01:00
|
|
|
}
|
|
|
|
);
|
2018-04-07 05:22:26 +02:00
|
|
|
|
|
|
|
jsc.property(
|
|
|
|
'should default to en',
|
|
|
|
function() {
|
|
|
|
var clean = jsdom('', {url: 'https://privatebin.net/'});
|
|
|
|
|
2018-04-09 14:13:18 +02:00
|
|
|
// when navigator.userLanguage is undefined and no default language
|
|
|
|
// is specified, it would throw an error
|
2018-04-07 05:22:26 +02:00
|
|
|
[ 'language', 'userLanguage' ].forEach(function (key) {
|
|
|
|
Object.defineProperty(navigator, key, {
|
|
|
|
value: undefined,
|
|
|
|
writeable: false
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$.PrivateBin.I18n.reset('en');
|
|
|
|
$.PrivateBin.I18n.loadTranslations();
|
2020-01-25 09:07:29 +01:00
|
|
|
var result = $.PrivateBin.I18n.translate('en'),
|
|
|
|
alias = $.PrivateBin.I18n._('en');
|
2018-04-07 05:22:26 +02:00
|
|
|
|
|
|
|
clean();
|
2020-01-25 09:07:29 +01:00
|
|
|
return 'en' === result && 'en' === alias;
|
2018-04-07 05:22:26 +02:00
|
|
|
}
|
|
|
|
);
|
2017-12-14 07:19:05 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|