discourse/test/javascripts/components/select-kit/topic-notifications-options-test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

94 lines
2.1 KiB
JavaScript
Raw Normal View History

import I18n from "I18n";
import selectKit from "helpers/select-kit-helper";
2018-06-16 00:42:20 +08:00
import componentTest from "helpers/component-test";
import Topic from "discourse/models/topic";
2018-06-13 01:17:43 +08:00
const buildTopic = function(archetype) {
return Topic.create({
2020-07-17 04:19:20 +08:00
id: 4563
}).updateFromJson({
2018-06-13 01:17:43 +08:00
title: "Qunit Test Topic",
details: {
notification_level: 1
},
archetype
2018-06-13 01:17:43 +08:00
});
};
function extractDescs(rows) {
2018-06-16 00:42:20 +08:00
return Array.from(
rows.find(".desc").map(function() {
return this.textContent.trim();
})
);
2018-06-13 01:17:43 +08:00
}
function getTranslations(type = "") {
return ["watching", "tracking", "regular", "muted"].map(key => {
return I18n.t(`topic.notifications.${key}${type}.description`);
});
}
moduleForComponent("select-kit/topic-notifications-options", {
integration: true
});
2018-06-13 01:17:43 +08:00
2018-06-16 00:42:20 +08:00
componentTest("regular topic notification level descriptions", {
template:
"{{topic-notifications-options value=topic.details.notification_level topic=topic}}",
2018-06-13 01:17:43 +08:00
beforeEach() {
this.set("topic", buildTopic("regular"));
},
async test(assert) {
2018-07-30 04:51:32 +08:00
await selectKit().expand();
2018-06-13 01:17:43 +08:00
const uiTexts = extractDescs(selectKit().rows());
const descriptions = getTranslations();
2018-06-13 01:17:43 +08:00
assert.equal(
uiTexts.length,
descriptions.length,
"it has the correct copy"
);
uiTexts.forEach((text, index) => {
2018-06-16 00:42:20 +08:00
assert.equal(
text.trim(),
descriptions[index].trim(),
2018-06-16 00:42:20 +08:00
"it has the correct copy"
);
2018-06-13 01:17:43 +08:00
});
}
});
2018-06-16 00:42:20 +08:00
componentTest("PM topic notification level descriptions", {
template:
"{{topic-notifications-options value=topic.details.notification_level topic=topic}}",
2018-06-13 01:17:43 +08:00
beforeEach() {
this.set("topic", buildTopic("private_message"));
},
async test(assert) {
2018-07-30 04:51:32 +08:00
await selectKit().expand();
2018-06-13 01:17:43 +08:00
const uiTexts = extractDescs(selectKit().rows());
const descriptions = getTranslations("_pm");
2018-06-13 01:17:43 +08:00
assert.equal(
uiTexts.length,
descriptions.length,
"it has the correct copy"
);
uiTexts.forEach((text, index) => {
2018-06-16 00:42:20 +08:00
assert.equal(
text.trim(),
descriptions[index].trim(),
2018-06-16 00:42:20 +08:00
"it has the correct copy"
);
2018-06-13 01:17:43 +08:00
});
}
});