discourse/test/javascripts/components/topic-notifications-options...

82 lines
2.0 KiB
Plaintext
Raw Normal View History

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