2024-07-25 21:09:06 +08:00
|
|
|
import { getOwner } from "@ember/owner";
|
2023-10-31 04:06:31 +08:00
|
|
|
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";
|
2024-04-09 03:00:09 +08:00
|
|
|
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
2023-10-31 04:06:31 +08:00
|
|
|
|
|
|
|
module("Discourse Chat | Component | chat-thread-header", function (hooks) {
|
|
|
|
setupRenderingTest(hooks);
|
|
|
|
|
|
|
|
test("it safely renders title", async function (assert) {
|
|
|
|
const title = "<style>body { background: red;}</style>";
|
2024-04-09 03:00:09 +08:00
|
|
|
this.thread = new ChatFabricators(getOwner(this)).thread({ title });
|
2023-10-31 04:06:31 +08:00
|
|
|
|
|
|
|
await render(hbs`
|
|
|
|
<Chat::Thread::Header @thread={{this.thread}} @channel={{this.thread.channel}} />
|
|
|
|
`);
|
|
|
|
|
2023-12-19 00:49:58 +08:00
|
|
|
assert.ok(
|
|
|
|
query(".c-navbar__title")
|
|
|
|
.innerHTML.trim()
|
|
|
|
.includes("<style>body { background: red;}</style>")
|
2023-10-31 04:06:31 +08:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|