2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-11-30 23:46:45 +01:00
|
|
|
const {strict: assert} = require("assert");
|
|
|
|
|
2021-06-15 22:37:07 +02:00
|
|
|
const _ = require("lodash");
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
const {unmock_module, zrequire} = require("../zjsunit/namespace");
|
2020-12-01 00:39:47 +01:00
|
|
|
const {run_test} = require("../zjsunit/test");
|
2021-03-25 22:35:45 +01:00
|
|
|
const {page_params} = require("../zjsunit/zpage_params");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
node tests: Actually test `translations.js`.
Before this test, we were validating the behavior
of `i18next`, but we weren't validating our light
layer that sits on top of `i18next`, which currently
resides in the slightly misnamed `translations.js`
file.
The translations module is now so small that I'll
just quote it verbatim here:
import i18next from 'i18next';
i18next.init({
lng: 'lang',
resources: {
lang: {
translation: page_params.translation_data,
},
},
nsSeparator: false,
keySeparator: false,
interpolation: {
prefix: "__",
suffix: "__",
},
returnEmptyString: false, // Empty string is not a valid translation.
});
window.i18n = i18next;
We now just do `zrequire('translations')` to initialize
the `i18next` library, which allows us to have simpler
test setup and to actually exercise the above call to
`i18next.init`.
This change now gives us 100% line coverage of `translations.js`,
which of course isn't that hard to acheive (see above).
2020-02-29 12:59:56 +01:00
|
|
|
// We download our translations in `page_params` (which
|
|
|
|
// are for the user's chosen language), so we simulate
|
|
|
|
// that here for the tests.
|
2021-04-27 20:17:26 +02:00
|
|
|
page_params.request_language = "en";
|
2021-03-25 22:35:45 +01:00
|
|
|
page_params.translation_data = {
|
2021-04-10 03:11:59 +02:00
|
|
|
"Quote and reply or forward": "Citer et répondre ou transférer",
|
|
|
|
"Notification triggers": "Déclencheurs de notification",
|
|
|
|
"You subscribed to stream {stream}": "Vous n'êtes pas abonnés au canal {stream}",
|
|
|
|
"<p>The stream <b>{stream_name}</b> does not exist.</p><p>Manage your subscriptions <z-link>on your Streams page</z-link>.</p>":
|
|
|
|
"<p>Le canal <b>{stream_name}</b> n'existe pas.</p><p>Gérez vos abonnements <z-link>sur votre page canaux</z-link>.</p>",
|
2021-03-25 22:35:45 +01:00
|
|
|
};
|
2016-05-13 12:44:03 +02:00
|
|
|
|
2021-10-13 09:41:02 +02:00
|
|
|
// Re-register Zulip extensions so extensions registered previously with
|
|
|
|
// mocked i18n.ts do not interefere with following tests.
|
|
|
|
require("../../static/js/templates");
|
|
|
|
|
node tests: Actually test `translations.js`.
Before this test, we were validating the behavior
of `i18next`, but we weren't validating our light
layer that sits on top of `i18next`, which currently
resides in the slightly misnamed `translations.js`
file.
The translations module is now so small that I'll
just quote it verbatim here:
import i18next from 'i18next';
i18next.init({
lng: 'lang',
resources: {
lang: {
translation: page_params.translation_data,
},
},
nsSeparator: false,
keySeparator: false,
interpolation: {
prefix: "__",
suffix: "__",
},
returnEmptyString: false, // Empty string is not a valid translation.
});
window.i18n = i18next;
We now just do `zrequire('translations')` to initialize
the `i18next` library, which allows us to have simpler
test setup and to actually exercise the above call to
`i18next.init`.
This change now gives us 100% line coverage of `translations.js`,
which of course isn't that hard to acheive (see above).
2020-02-29 12:59:56 +01:00
|
|
|
// All of our other tests stub out i18n activity;
|
|
|
|
// here we do a quick sanity check on the engine itself.
|
2021-04-10 09:38:17 +02:00
|
|
|
// `i18n.js` initializes FormatJS and is imported by
|
|
|
|
// `templates.js`.
|
2021-03-25 21:38:40 +01:00
|
|
|
unmock_module("../../static/js/i18n");
|
2021-06-18 02:16:48 +02:00
|
|
|
const {$t, $t_html, get_language_name, get_language_list_columns, initialize} = zrequire("i18n");
|
node tests: Actually test `translations.js`.
Before this test, we were validating the behavior
of `i18next`, but we weren't validating our light
layer that sits on top of `i18next`, which currently
resides in the slightly misnamed `translations.js`
file.
The translations module is now so small that I'll
just quote it verbatim here:
import i18next from 'i18next';
i18next.init({
lng: 'lang',
resources: {
lang: {
translation: page_params.translation_data,
},
},
nsSeparator: false,
keySeparator: false,
interpolation: {
prefix: "__",
suffix: "__",
},
returnEmptyString: false, // Empty string is not a valid translation.
});
window.i18n = i18next;
We now just do `zrequire('translations')` to initialize
the `i18next` library, which allows us to have simpler
test setup and to actually exercise the above call to
`i18next.init`.
This change now gives us 100% line coverage of `translations.js`,
which of course isn't that hard to acheive (see above).
2020-02-29 12:59:56 +01:00
|
|
|
|
2021-04-10 03:11:59 +02:00
|
|
|
run_test("$t", () => {
|
|
|
|
// Normally the id would be provided by babel-plugin-formatjs, but
|
|
|
|
// this test file is not processed by Babel.
|
|
|
|
assert.equal(
|
|
|
|
$t({id: "Quote and reply or forward", defaultMessage: "Quote and reply or forward"}),
|
|
|
|
"Citer et répondre ou transférer",
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
$t(
|
|
|
|
{
|
|
|
|
id: "You subscribed to stream {stream}",
|
|
|
|
defaultMessage: "You subscribed to stream {stream}",
|
|
|
|
},
|
|
|
|
{stream: "l'abonnement"},
|
|
|
|
),
|
|
|
|
"Vous n'êtes pas abonnés au canal l'abonnement",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
run_test("$tr", () => {
|
|
|
|
assert.equal(
|
|
|
|
$t_html(
|
|
|
|
{
|
2021-05-09 22:29:53 +02:00
|
|
|
id: "<p>The stream <b>{stream_name}</b> does not exist.</p><p>Manage your subscriptions <z-link>on your Streams page</z-link>.</p>",
|
2021-04-10 03:11:59 +02:00
|
|
|
defaultMessage:
|
|
|
|
"<p>The stream <b>{stream_name}</b> does not exist.</p><p>Manage your subscriptions <z-link>on your Streams page</z-link>.</p>",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
stream_name: "l'abonnement",
|
|
|
|
"z-link": (content_html) => `<a href='#streams/all'>${content_html}</a>`,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
"<p>Le canal <b>l'abonnement</b> n'existe pas.</p><p>Gérez vos abonnements <a href='#streams/all'>sur votre page canaux</a>.</p>",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("t_tag", ({mock_template}) => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const args = {
|
2016-12-03 03:08:47 +01:00
|
|
|
message: {
|
2016-05-13 12:44:03 +02:00
|
|
|
is_stream: true,
|
|
|
|
id: "99",
|
|
|
|
stream: "devel",
|
|
|
|
subject: "testing",
|
2016-12-03 23:17:57 +01:00
|
|
|
sender_full_name: "King Lear",
|
2016-05-13 12:44:03 +02:00
|
|
|
},
|
2018-03-28 00:28:57 +02:00
|
|
|
should_display_quote_and_reply: true,
|
2016-12-03 03:08:47 +01:00
|
|
|
can_edit_message: true,
|
|
|
|
can_mute_topic: true,
|
2016-12-03 23:17:57 +01:00
|
|
|
narrowed: true,
|
2021-04-10 08:52:49 +02:00
|
|
|
topic: "testing",
|
2020-11-03 08:27:58 +01:00
|
|
|
not_spectator: true,
|
2016-05-13 12:44:03 +02:00
|
|
|
};
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
mock_template("actions_popover_content.hbs", true, (data, html) => {
|
2021-06-27 19:11:11 +02:00
|
|
|
assert.equal(data, args);
|
|
|
|
assert.ok(html.indexOf("Citer et répondre ou transférer") > 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
require("../../static/templates/actions_popover_content.hbs")(args);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2016-05-13 12:44:03 +02:00
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("tr_tag", ({mock_template}) => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const args = {
|
2016-12-03 03:08:47 +01:00
|
|
|
page_params: {
|
2017-04-27 00:26:49 +02:00
|
|
|
full_name: "John Doe",
|
2016-12-03 03:08:47 +01:00
|
|
|
password_auth_enabled: false,
|
|
|
|
avatar_url: "http://example.com",
|
2021-07-28 16:00:58 +02:00
|
|
|
},
|
|
|
|
user_settings: {
|
2016-12-03 03:08:47 +01:00
|
|
|
left_side_userlist: false,
|
|
|
|
twenty_four_hour_time: false,
|
2017-04-29 07:01:46 +02:00
|
|
|
enable_stream_desktop_notifications: false,
|
2017-08-17 16:55:32 +02:00
|
|
|
enable_stream_push_notifications: false,
|
2019-06-11 08:47:49 +02:00
|
|
|
enable_stream_audible_notifications: false,
|
2017-04-29 08:13:47 +02:00
|
|
|
enable_desktop_notifications: false,
|
2017-04-29 06:53:28 +02:00
|
|
|
enable_sounds: false,
|
2016-12-03 03:08:47 +01:00
|
|
|
enable_offline_email_notifications: false,
|
|
|
|
enable_offline_push_notifications: false,
|
|
|
|
enable_online_push_notifications: false,
|
|
|
|
enable_digest_emails: false,
|
2016-12-03 23:17:57 +01:00
|
|
|
},
|
2016-05-13 12:44:03 +02:00
|
|
|
};
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
mock_template("settings_tab.hbs", true, (data, html) => {
|
2021-06-27 19:11:11 +02:00
|
|
|
assert.equal(data, args);
|
|
|
|
assert.ok(html.indexOf("Déclencheurs de notification") > 0);
|
|
|
|
});
|
|
|
|
require("../../static/templates/settings_tab.hbs")(args);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2021-06-15 22:37:07 +02:00
|
|
|
|
|
|
|
run_test("language_list", () => {
|
2021-06-18 02:16:48 +02:00
|
|
|
const language_list = [
|
2021-06-15 22:37:07 +02:00
|
|
|
{
|
|
|
|
code: "en",
|
|
|
|
locale: "en",
|
|
|
|
name: "English",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
code: "en-gb",
|
|
|
|
locale: "en_GB",
|
|
|
|
name: "British English",
|
|
|
|
percent_translated: 99,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
code: "id",
|
|
|
|
locale: "id",
|
|
|
|
name: "Bahasa Indonesia",
|
|
|
|
percent_translated: 32,
|
|
|
|
},
|
|
|
|
];
|
2021-06-18 02:16:48 +02:00
|
|
|
initialize({language_list});
|
|
|
|
assert.equal(get_language_name("en"), "English");
|
2021-06-15 22:37:07 +02:00
|
|
|
|
|
|
|
const successful_formatted_list = [
|
|
|
|
{
|
|
|
|
first: {
|
|
|
|
name: "English",
|
|
|
|
code: "en",
|
|
|
|
name_with_percent: "English",
|
|
|
|
selected: true,
|
|
|
|
},
|
|
|
|
second: {
|
|
|
|
name: "Bahasa Indonesia",
|
|
|
|
code: "id",
|
|
|
|
name_with_percent: "Bahasa Indonesia (32%)",
|
|
|
|
selected: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
first: {
|
|
|
|
name: "British English",
|
|
|
|
code: "en-gb",
|
|
|
|
name_with_percent: "British English (99%)",
|
|
|
|
selected: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const formatted_list = get_language_list_columns("en");
|
|
|
|
|
|
|
|
function check_value_match(element, position) {
|
|
|
|
assert.equal(
|
|
|
|
formatted_list[element][position].name,
|
|
|
|
successful_formatted_list[element][position].name,
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
formatted_list[element][position].code,
|
|
|
|
successful_formatted_list[element][position].code,
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
formatted_list[element][position].name_with_percent,
|
|
|
|
successful_formatted_list[element][position].name_with_percent,
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
formatted_list[element][position].selected,
|
|
|
|
successful_formatted_list[element][position].selected,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const element of _.range(0, formatted_list.length)) {
|
|
|
|
check_value_match(element, "first");
|
|
|
|
if (formatted_list[element].second) {
|
|
|
|
check_value_match(element, "second");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|