mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
03e495186f
It's way more common to have presence enabled than disabled, so we should have been making it the default from start. This commit also changes the namespace of `<ChatUserAvatar />` into `<Chat::UserAvatar />` and refactors tests.
108 lines
3.3 KiB
JavaScript
108 lines
3.3 KiB
JavaScript
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import { exists, query } from "discourse/tests/helpers/qunit-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
import { CHATABLE_TYPES } from "discourse/plugins/chat/discourse/models/chat-channel";
|
|
import { module, test } from "qunit";
|
|
import { render } from "@ember/test-helpers";
|
|
|
|
module("Discourse Chat | Component | chat-channel-title", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("category channel", async function (assert) {
|
|
this.channel = fabricators.channel({
|
|
chatable_type: CHATABLE_TYPES.categoryChannel,
|
|
});
|
|
|
|
await render(hbs`<ChatChannelTitle @channel={{this.channel}} />`);
|
|
|
|
assert.strictEqual(
|
|
query(".chat-channel-title__category-badge").getAttribute("style"),
|
|
`color: #${this.channel.chatable.color}`
|
|
);
|
|
assert.strictEqual(
|
|
query(".chat-channel-title__name").innerText,
|
|
this.channel.title
|
|
);
|
|
});
|
|
|
|
test("category channel - escapes title", async function (assert) {
|
|
this.channel = fabricators.channel({
|
|
chatable_type: CHATABLE_TYPES.categoryChannel,
|
|
title: "<div class='xss'>evil</div>",
|
|
});
|
|
|
|
await render(hbs`<ChatChannelTitle @channel={{this.channel}} />`);
|
|
|
|
assert.false(exists(".xss"));
|
|
});
|
|
|
|
test("category channel - read restricted", async function (assert) {
|
|
this.channel = fabricators.channel({
|
|
chatable_type: CHATABLE_TYPES.categoryChannel,
|
|
chatable: { read_restricted: true },
|
|
});
|
|
|
|
await render(hbs`<ChatChannelTitle @channel={{this.channel}} />`);
|
|
|
|
assert.true(exists(".d-icon-lock"));
|
|
});
|
|
|
|
test("category channel - not read restricted", async function (assert) {
|
|
this.channel = fabricators.channel({
|
|
chatable_type: CHATABLE_TYPES.categoryChannel,
|
|
chatable: { read_restricted: false },
|
|
});
|
|
|
|
await render(hbs`<ChatChannelTitle @channel={{this.channel}} />`);
|
|
|
|
assert.false(exists(".d-icon-lock"));
|
|
});
|
|
|
|
test("direct message channel - one user", async function (assert) {
|
|
this.channel = fabricators.directMessageChannel({
|
|
chatable: fabricators.directMessage({
|
|
users: [fabricators.user()],
|
|
}),
|
|
});
|
|
|
|
await render(hbs`<ChatChannelTitle @channel={{this.channel}} />`);
|
|
|
|
const user = this.channel.chatable.users[0];
|
|
|
|
assert.true(
|
|
exists(`.chat-user-avatar__container .avatar[title="${user.username}"]`)
|
|
);
|
|
|
|
assert.strictEqual(
|
|
query(".chat-channel-title__name").innerText.trim(),
|
|
user.username
|
|
);
|
|
});
|
|
|
|
test("direct message channel - multiple users", async function (assert) {
|
|
const channel = fabricators.directMessageChannel();
|
|
|
|
channel.chatable.users.push({
|
|
id: 2,
|
|
username: "joffrey",
|
|
name: null,
|
|
avatar_template: "/letter_avatar_proxy/v3/letter/t/31188e/{size}.png",
|
|
});
|
|
|
|
this.channel = channel;
|
|
|
|
await render(hbs`<ChatChannelTitle @channel={{this.channel}} />`);
|
|
|
|
const users = this.channel.chatable.users;
|
|
assert.strictEqual(
|
|
parseInt(query(".chat-channel-title__users-count").innerText.trim(), 10),
|
|
users.length
|
|
);
|
|
assert.strictEqual(
|
|
query(".chat-channel-title__name").innerText.trim(),
|
|
users.mapBy("username").join(", ")
|
|
);
|
|
});
|
|
});
|