mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 13:03:43 +08:00
22521d3428
- `ChatChannel` - `UserChatChannelMembership` Also creates a new `chat-direct-message` model used as the object for the`chatable` property of the `ChatChannel` when the `ChatChannel` is a direct message channel. When the chatable is a category a real `Category` object will now be returned. Archive state of a `ChatChannel` is now hold in a `ChatChannelArchive` object.
55 lines
1.7 KiB
JavaScript
55 lines
1.7 KiB
JavaScript
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";
|
|
import fabricators from "../helpers/fabricators";
|
|
|
|
module(
|
|
"Discourse Chat | Component | chat-retention-reminder-text",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("when setting is set on 0", async function (assert) {
|
|
this.channel = fabricators.chatChannel();
|
|
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;
|
|
this.channel = fabricators.chatChannel();
|
|
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;
|
|
this.channel = fabricators.directMessageChatChannel();
|
|
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 }));
|
|
});
|
|
}
|
|
);
|