2023-02-15 21:50:01 +08:00
|
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
|
|
import hbs from "htmlbars-inline-precompile";
|
|
|
|
import I18n from "I18n";
|
|
|
|
import { module, test } from "qunit";
|
|
|
|
import { render } from "@ember/test-helpers";
|
2023-05-17 23:49:52 +08:00
|
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
2023-02-15 21:50:01 +08:00
|
|
|
|
|
|
|
module(
|
|
|
|
"Discourse Chat | Component | chat-retention-reminder-text",
|
|
|
|
function (hooks) {
|
|
|
|
setupRenderingTest(hooks);
|
|
|
|
|
|
|
|
test("when setting is set on 0", async function (assert) {
|
2023-05-17 23:49:52 +08:00
|
|
|
this.channel = fabricators.channel();
|
2023-02-15 21:50:01 +08:00
|
|
|
this.siteSettings.chat_channel_retention_days = 0;
|
|
|
|
|
|
|
|
await render(
|
|
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} />`
|
|
|
|
);
|
|
|
|
|
|
|
|
assert
|
|
|
|
.dom(".chat-retention-reminder-text")
|
|
|
|
.includesText(I18n.t("chat.retention_reminders.public_none"));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("when channel is a public channel", async function (assert) {
|
|
|
|
const count = 10;
|
2023-05-17 23:49:52 +08:00
|
|
|
this.channel = fabricators.channel();
|
2023-02-15 21:50:01 +08:00
|
|
|
this.siteSettings.chat_channel_retention_days = count;
|
|
|
|
|
|
|
|
await render(
|
|
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} />`
|
|
|
|
);
|
|
|
|
|
|
|
|
assert
|
|
|
|
.dom(".chat-retention-reminder-text")
|
|
|
|
.includesText(I18n.t("chat.retention_reminders.public", { count }));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("when channel is a DM channel", async function (assert) {
|
|
|
|
const count = 10;
|
2023-05-17 23:49:52 +08:00
|
|
|
this.channel = fabricators.directMessageChannel();
|
2023-02-15 21:50:01 +08:00
|
|
|
this.siteSettings.chat_dm_retention_days = count;
|
|
|
|
|
|
|
|
await render(
|
|
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} />`
|
|
|
|
);
|
|
|
|
|
|
|
|
assert
|
|
|
|
.dom(".chat-retention-reminder-text")
|
|
|
|
.includesText(I18n.t("chat.retention_reminders.dm", { count }));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|