mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
c34f8b65cb
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.
157 lines
4.5 KiB
JavaScript
157 lines
4.5 KiB
JavaScript
import { render } from "@ember/test-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { module, test } from "qunit";
|
|
import Bookmark from "discourse/models/bookmark";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import { exists, query } from "discourse/tests/helpers/qunit-helpers";
|
|
import I18n from "discourse-i18n";
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
import ChatMessage from "discourse/plugins/chat/discourse/models/chat-message";
|
|
|
|
module("Discourse Chat | Component | chat-message-info", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
const template = hbs`
|
|
<Chat::Message::Info @message={{this.message}} @show={{true}} />
|
|
`;
|
|
|
|
test("chat_webhook_event", async function (assert) {
|
|
this.message = fabricators.message({
|
|
chat_webhook_event: { username: "discobot" },
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert.strictEqual(
|
|
query(".chat-message-info__username").innerText.trim(),
|
|
this.message.chatWebhookEvent.username
|
|
);
|
|
assert.strictEqual(
|
|
query(".chat-message-info__bot-indicator").textContent.trim(),
|
|
I18n.t("chat.bot")
|
|
);
|
|
});
|
|
|
|
test("user", async function (assert) {
|
|
this.message = fabricators.message({
|
|
user: { username: "discobot" },
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert.strictEqual(
|
|
query(".chat-message-info__username").innerText.trim(),
|
|
this.message.user.username
|
|
);
|
|
});
|
|
|
|
test("date", async function (assert) {
|
|
this.message = fabricators.message({
|
|
user: { username: "discobot" },
|
|
created_at: moment(),
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert.true(exists(".chat-message-info__date"));
|
|
});
|
|
|
|
test("bookmark (with reminder)", async function (assert) {
|
|
this.message = fabricators.message({
|
|
user: { username: "discobot" },
|
|
bookmark: Bookmark.create({
|
|
reminder_at: moment(),
|
|
name: "some name",
|
|
}),
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert.true(
|
|
exists(".chat-message-info__bookmark .d-icon-discourse-bookmark-clock")
|
|
);
|
|
});
|
|
|
|
test("bookmark (no reminder)", async function (assert) {
|
|
this.message = ChatMessage.create(fabricators.channel(), {
|
|
user: { username: "discobot" },
|
|
bookmark: Bookmark.create({
|
|
name: "some name",
|
|
}),
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert.true(exists(".chat-message-info__bookmark .d-icon-bookmark"));
|
|
});
|
|
|
|
test("user status", async function (assert) {
|
|
const status = { description: "off to dentist", emoji: "tooth" };
|
|
this.message = fabricators.message({ user: { status } });
|
|
|
|
await render(template);
|
|
|
|
assert.true(exists(".chat-message-info__status .user-status-message"));
|
|
});
|
|
|
|
test("flag status", async function (assert) {
|
|
this.message = fabricators.message({
|
|
user: { username: "discobot" },
|
|
user_flag_status: 0,
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert
|
|
.dom(".chat-message-info__flag > .svg-icon-title")
|
|
.hasAttribute("title", I18n.t("chat.you_flagged"));
|
|
});
|
|
|
|
test("reviewable", async function (assert) {
|
|
this.message = fabricators.message({
|
|
user: { username: "discobot" },
|
|
user_flag_status: 0,
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert
|
|
.dom(".chat-message-info__flag > .svg-icon-title")
|
|
.hasAttribute("title", I18n.t("chat.you_flagged"));
|
|
});
|
|
|
|
test("with username classes", async function (assert) {
|
|
this.message = fabricators.message({
|
|
user: {
|
|
username: "discobot",
|
|
admin: true,
|
|
moderator: true,
|
|
new_user: true,
|
|
primary_group_name: "foo",
|
|
},
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert.dom(".chat-message-info__username.is-staff").exists();
|
|
assert.dom(".chat-message-info__username.is-admin").exists();
|
|
assert.dom(".chat-message-info__username.is-moderator").exists();
|
|
assert.dom(".chat-message-info__username.is-new-user").exists();
|
|
assert.dom(".chat-message-info__username.group--foo").exists();
|
|
});
|
|
|
|
test("without username classes", async function (assert) {
|
|
this.message = fabricators.message({
|
|
user: { username: "discobot" },
|
|
});
|
|
|
|
await render(template);
|
|
|
|
assert.dom(".chat-message-info__username.is-staff").doesNotExist();
|
|
assert.dom(".chat-message-info__username.is-admin").doesNotExist();
|
|
assert.dom(".chat-message-info__username.is-moderator").doesNotExist();
|
|
assert.dom(".chat-message-info__username.is-new-user").doesNotExist();
|
|
assert.dom(".chat-message-info__username.group--foo").doesNotExist();
|
|
});
|
|
});
|