discourse/plugins/chat/test/javascripts/components/chat-composer-placeholder-test.js
Jarek Radosz dc3473fe06
DEV: Modernize chat's component tests (#19577)
1. `test()` and `render()` instead of `componentTest()`
2. Angle brackets
3. `strictEqual()`/`true()`/`false()` assertions

This removes all remaining uses of `componentTest` from core
2022-12-22 14:35:18 +01:00

74 lines
2.0 KiB
JavaScript

import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import { query } from "discourse/tests/helpers/qunit-helpers";
import hbs from "htmlbars-inline-precompile";
import ChatChannel from "discourse/plugins/chat/discourse/models/chat-channel";
import { module, test } from "qunit";
import { render } from "@ember/test-helpers";
module(
"Discourse Chat | Component | chat-composer placeholder",
function (hooks) {
setupRenderingTest(hooks);
test("direct message to self shows Jot something down", async function (assert) {
this.currentUser.set("id", 1);
this.set(
"chatChannel",
ChatChannel.create({
chatable_type: "DirectMessage",
chatable: {
users: [{ id: 1 }],
},
})
);
await render(hbs`<ChatComposer @chatChannel={{this.chatChannel}} />`);
assert.strictEqual(
query(".chat-composer-input").placeholder,
"Jot something down"
);
});
test("direct message to multiple folks shows their names", async function (assert) {
this.set(
"chatChannel",
ChatChannel.create({
chatable_type: "DirectMessage",
chatable: {
users: [
{ name: "Tomtom" },
{ name: "Steaky" },
{ username: "zorro" },
],
},
})
);
await render(hbs`<ChatComposer @chatChannel={{this.chatChannel}} />`);
assert.strictEqual(
query(".chat-composer-input").placeholder,
"Chat with Tomtom, Steaky, @zorro"
);
});
test("message to channel shows send message to channel name", async function (assert) {
this.set(
"chatChannel",
ChatChannel.create({
chatable_type: "Category",
title: "just-cats",
})
);
await render(hbs`<ChatComposer @chatChannel={{this.chatChannel}} />`);
assert.strictEqual(
query(".chat-composer-input").placeholder,
"Chat with #just-cats"
);
});
}
);