mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-25 04:34:04 +08:00
39 lines
1.3 KiB
Text
Vendored
39 lines
1.3 KiB
Text
Vendored
import { hash } from "@ember/helper";
|
|
import { getOwner } from "@ember/owner";
|
|
import { render } from "@ember/test-helpers";
|
|
import { module, test } from "qunit";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import MoveMessageToChannel from "discourse/plugins/chat/discourse/components/chat/modal/move-message-to-channel";
|
|
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
|
|
module(
|
|
"Discourse Chat | Component | <Chat::Modal::MoveMessageToChannel />",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("channel title is escaped in instructions correctly", async function (assert) {
|
|
const self = this;
|
|
|
|
this.channel = new ChatFabricators(getOwner(this)).channel({
|
|
title: "<script>someeviltitle</script>",
|
|
});
|
|
this.selectedMessageIds = [this.channel.id];
|
|
|
|
await render(
|
|
<template>
|
|
<MoveMessageToChannel
|
|
@inline={{true}}
|
|
@model={{hash
|
|
sourceChannel=self.channel
|
|
selectedMessageIds=self.selectedMessageIds
|
|
}}
|
|
/>
|
|
</template>
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-modal-move-message-to-channel")
|
|
.includesHtml("<script>someeviltitle</script>");
|
|
});
|
|
}
|
|
);
|