mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
60c67afba4
- 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
69 lines
2.1 KiB
JavaScript
69 lines
2.1 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";
|
|
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();
|
|
});
|
|
});
|