discourse/plugins/chat/test/javascripts/unit/helpers/format-chat-date-test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.4 KiB
JavaScript
Raw Normal View History

import { getOwner } from "@ember/application";
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 { query } from "discourse/tests/helpers/qunit-helpers";
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
module("Discourse Chat | Unit | Helpers | format-chat-date", function (hooks) {
setupRenderingTest(hooks);
test("link to chat message", async function (assert) {
const channel = new ChatFabricators(getOwner(this)).channel();
this.message = new ChatFabricators(getOwner(this)).message({ channel });
await render(hbs`{{format-chat-date this.message}}`);
assert.equal(
query(".chat-time").getAttribute("href"),
`/chat/c/-/${channel.id}/${this.message.id}`
);
});
test("link to chat message thread", async function (assert) {
const channel = new ChatFabricators(getOwner(this)).channel();
const thread = new ChatFabricators(getOwner(this)).thread();
this.message = new ChatFabricators(getOwner(this)).message({
channel,
thread,
});
await render(
hbs`{{format-chat-date this.message (hash threadContext=true)}}`
);
assert.equal(
query(".chat-time").getAttribute("href"),
`/chat/c/-/${channel.id}/t/${thread.id}/${this.message.id}`
);
});
});