mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +08:00
dc3473fe06
1. `test()` and `render()` instead of `componentTest()` 2. Angle brackets 3. `strictEqual()`/`true()`/`false()` assertions This removes all remaining uses of `componentTest` from core
74 lines
2.0 KiB
JavaScript
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"
|
|
);
|
|
});
|
|
}
|
|
);
|