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

75 lines
1.7 KiB
Plaintext
Raw Normal View History

import selectKit from "helpers/select-kit-helper";
2018-06-15 11:03:24 -04:00
import componentTest from "helpers/component-test";
import Topic from "discourse/models/topic";
2017-09-11 19:36:58 -04:00
const buildTopic = function(level, archetype = "regular") {
2017-09-11 19:36:58 -04:00
return Topic.create({
id: 4563,
title: "Qunit Test Topic",
details: {
notification_level: level
},
archetype
2017-09-11 19:36:58 -04:00
});
};
2018-06-26 08:31:43 -04:00
const originalTranslation =
I18n.translations.en.js.topic.notifications.tracking_pm.title;
moduleForComponent("topic-notifications-button", {
integration: true,
afterEach() {
I18n.translations.en.js.topic.notifications.tracking_pm.title = originalTranslation;
}
});
2017-09-11 19:36:58 -04:00
2018-06-15 11:03:24 -04:00
componentTest("the header has a localized title", {
template:
"{{topic-notifications-button notificationLevel=topic.details.notification_level topic=topic}}",
2017-09-11 19:36:58 -04:00
beforeEach() {
this.set("topic", buildTopic(1));
2017-09-11 19:36:58 -04:00
},
async test(assert) {
assert.equal(
selectKit()
.header()
.name(),
"Normal",
"it has the correct title"
);
2017-09-11 19:36:58 -04:00
await this.set("topic", buildTopic(2));
assert.equal(
selectKit()
.header()
.name(),
"Tracking",
"it correctly changes the title"
);
2017-09-11 19:36:58 -04:00
}
});
componentTest("the header has a localized title", {
template:
"{{topic-notifications-button notificationLevel=topic.details.notification_level topic=topic}}",
beforeEach() {
I18n.translations.en.js.topic.notifications.tracking_pm.title = `${originalTranslation} PM`;
this.set("topic", buildTopic(2, "private_message"));
},
test(assert) {
assert.equal(
selectKit()
.header()
.name(),
`${originalTranslation} PM`,
"it has the correct title for PMs"
);
}
});