2023-06-19 15:50:54 +08:00
|
|
|
import { render } from "@ember/test-helpers";
|
|
|
|
import hbs from "htmlbars-inline-precompile";
|
|
|
|
import { module, test } from "qunit";
|
2023-10-11 02:38:59 +08:00
|
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
2023-10-18 18:07:09 +08:00
|
|
|
import I18n from "discourse-i18n";
|
2023-10-11 02:38:59 +08:00
|
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
2023-06-19 15:50:54 +08:00
|
|
|
|
|
|
|
module(
|
|
|
|
"Discourse Chat | Component | Chat::Message::LeftGutter",
|
|
|
|
function (hooks) {
|
|
|
|
setupRenderingTest(hooks);
|
|
|
|
|
|
|
|
const template = hbs`
|
|
|
|
<Chat::Message::LeftGutter @message={{this.message}} />
|
|
|
|
`;
|
|
|
|
|
|
|
|
test("default", async function (assert) {
|
|
|
|
this.message = fabricators.message();
|
|
|
|
|
|
|
|
await render(template);
|
|
|
|
|
|
|
|
assert.dom(".chat-message-left-gutter__date").exists();
|
|
|
|
});
|
|
|
|
|
|
|
|
test("with reviewable", async function (assert) {
|
|
|
|
this.message = fabricators.message({ reviewable_id: 1 });
|
|
|
|
|
|
|
|
await render(template);
|
|
|
|
|
|
|
|
assert
|
|
|
|
.dom(".chat-message-left-gutter__flag .svg-icon-title")
|
|
|
|
.hasAttribute("title", I18n.t("chat.flagged"));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("with flag status", async function (assert) {
|
|
|
|
this.message = fabricators.message({ user_flag_status: 0 });
|
|
|
|
|
|
|
|
await render(template);
|
|
|
|
|
|
|
|
assert
|
|
|
|
.dom(".chat-message-left-gutter__flag .svg-icon-title")
|
|
|
|
.hasAttribute("title", I18n.t("chat.you_flagged"));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("bookmark", async function (assert) {
|
|
|
|
this.message = fabricators.message({ bookmark: fabricators.bookmark() });
|
|
|
|
|
|
|
|
await render(template);
|
|
|
|
|
|
|
|
assert.dom(".chat-message-left-gutter__date").exists();
|
|
|
|
assert.dom(".chat-message-left-gutter__bookmark").exists();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|