discourse/plugins/chat/test/javascripts/components/chat-retention-reminder-text-test.js
Joffrey JAFFEUX 60c67afba4
DEV: various improvements to devex on chat (#21612)
- Improves styleguide support
- Adds toggle color scheme to styleguide
- Adds properties mutators to styleguide
- Attempts to quit a session as soon as done with it in system specs, this should at least free resources faster
- Refactors fabricators to simplify them
- Adds more fabricators (uploads for example)
- Starts implementing components pattern in system specs
- Uses Chat::Message creator to create messages in system specs, this should help to have more real specs as the side effects should now happen
2023-05-17 17:49:52 +02:00

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 "discourse/plugins/chat/discourse/lib/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.channel();
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.channel();
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.directMessageChannel();
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 }));
});
}
);