2023-10-11 02:38:59 +08:00
|
|
|
import { render } from "@ember/test-helpers";
|
2023-02-15 21:50:01 +08:00
|
|
|
import hbs from "htmlbars-inline-precompile";
|
|
|
|
import { module, test } from "qunit";
|
2023-10-11 02:38:59 +08:00
|
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
2023-10-18 18:07:09 +08:00
|
|
|
import I18n from "discourse-i18n";
|
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")
|
2023-10-13 13:55:47 +08:00
|
|
|
.includesText(I18n.t("chat.retention_reminders.indefinitely_long"));
|
|
|
|
|
|
|
|
await render(
|
|
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} @type="short" />`
|
|
|
|
);
|
|
|
|
|
|
|
|
assert
|
|
|
|
.dom(".chat-retention-reminder-text")
|
|
|
|
.includesText(I18n.t("chat.retention_reminders.indefinitely_short"));
|
2023-02-15 21:50:01 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
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")
|
2023-10-13 13:55:47 +08:00
|
|
|
.includesText(I18n.t("chat.retention_reminders.long", { count }));
|
|
|
|
|
|
|
|
await render(
|
|
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} @type="short" />`
|
|
|
|
);
|
|
|
|
|
|
|
|
assert
|
|
|
|
.dom(".chat-retention-reminder-text")
|
|
|
|
.includesText(I18n.t("chat.retention_reminders.short", { count }));
|
2023-02-15 21:50:01 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
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")
|
2023-10-13 13:55:47 +08:00
|
|
|
.includesText(I18n.t("chat.retention_reminders.long", { count }));
|
|
|
|
|
|
|
|
await render(
|
|
|
|
hbs`<ChatRetentionReminderText @channel={{this.channel}} @type="short" />`
|
|
|
|
);
|
|
|
|
|
|
|
|
assert
|
|
|
|
.dom(".chat-retention-reminder-text")
|
|
|
|
.includesText(I18n.t("chat.retention_reminders.short", { count }));
|
2023-02-15 21:50:01 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|