mirror of
https://github.com/discourse/discourse.git
synced 2024-12-21 22:24:11 +08:00
038e5deb2a
* `@ember/owner` instead of `@ember/application` * `discourse-i18n` instead of `I18n` * `{ service } from "@ember/service"` instead of `inject as service`
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
import { getOwner } from "@ember/owner";
|
|
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}`
|
|
);
|
|
});
|
|
});
|