import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
import { query } from "discourse/tests/helpers/qunit-helpers";
import hbs from "htmlbars-inline-precompile";
import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
module(
"Discourse Chat | Component | chat-message-move-to-channel-modal-inner",
function (hooks) {
setupRenderingTest(hooks);
test("channel title is escaped in instructions correctly", async function (assert) {
this.set(
"channel",
fabricators.channel({ title: "" })
);
this.set("chat", { publicChannels: [this.channel] });
this.set("selectedMessageIds", [1]);
await render(hbs`
`);
assert.true(
query(".chat-message-move-to-channel-modal-inner").innerHTML.includes(
"<script>someeviltitle</script>"
)
);
});
}
);