discourse/plugins/chat/test/javascripts/components/chat-message-move-to-channe...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.2 KiB
JavaScript
Raw Normal View History

import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import fabricators from "../helpers/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.chatChannel({ title: "<script>someeviltitle</script>" })
);
this.set("chat", { publicChannels: [this.channel] });
this.set("selectedMessageIds", [1]);
await render(hbs`
<ChatMessageMoveToChannelModalInner
@selectedMessageIds={{this.selectedMessageIds}}
@sourceChannel={{this.channel}}
@chat={{this.chat}}
/>
`);
assert.true(
query(".chat-message-move-to-channel-modal-inner").innerHTML.includes(
"&lt;script&gt;someeviltitle&lt;/script&gt;"
)
);
});
}
);