discourse/plugins/chat/test/javascripts/components/chat-channel-status-test.js
Godfrey Chan c34f8b65cb
DEV: Rename I18n imports to discourse-i18n (#23915)
As of #23867 this is now a real package, so updating the imports to
use the real package name, rather than relying on the alias. The
name change in the package name is because `I18n` is not a valid
name as NPM packages must be all lowercase.

This commit also introduces an eslint rule to prevent importing from
the old I18n path.

For themes/plugins, the old 'i18n' name remains functional.
2023-10-18 11:07:09 +01:00

69 lines
2.1 KiB
JavaScript

import { render } from "@ember/test-helpers";
import hbs from "htmlbars-inline-precompile";
import { module, test } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import I18n from "discourse-i18n";
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
import {
CHANNEL_STATUSES,
channelStatusIcon,
} from "discourse/plugins/chat/discourse/models/chat-channel";
module("Discourse Chat | Component | chat-channel-status", function (hooks) {
setupRenderingTest(hooks);
test("renders nothing when channel is opened", async function (assert) {
this.channel = fabricators.channel();
await render(hbs`<ChatChannelStatus @channel={{this.channel}} />`);
assert.dom(".chat-channel-status").doesNotExist();
});
test("defaults to long format", async function (assert) {
this.channel = fabricators.channel({ status: CHANNEL_STATUSES.closed });
await render(hbs`<ChatChannelStatus @channel={{this.channel}} />`);
assert
.dom(".chat-channel-status")
.hasText(I18n.t("chat.channel_status.closed_header"));
});
test("accepts a format argument", async function (assert) {
this.channel = fabricators.channel({
status: CHANNEL_STATUSES.archived,
});
await render(
hbs`<ChatChannelStatus @channel={{this.channel}} @format="short" />`
);
assert
.dom(".chat-channel-status")
.hasText(I18n.t("chat.channel_status.archived"));
});
test("renders the correct icon", async function (assert) {
this.channel = fabricators.channel({
status: CHANNEL_STATUSES.archived,
});
await render(hbs`<ChatChannelStatus @channel={{this.channel}} />`);
assert.dom(`.d-icon-${channelStatusIcon(this.channel.status)}`).exists();
});
test("renders archive status", async function (assert) {
this.currentUser.admin = true;
this.channel = fabricators.channel({
status: CHANNEL_STATUSES.archived,
archive_failed: true,
});
await render(hbs`<ChatChannelStatus @channel={{this.channel}} />`);
assert.dom(".chat-channel-retry-archive").exists();
});
});