discourse/plugins/chat/test/javascripts/components/chat-user-card-button-test.gjs
David Taylor 999ae73c78
DEV: [gjs-codemod] apply codemod
Co-authored-by: Jarek Radosz <jarek@cvx.dev>
2025-04-02 13:44:15 +01:00

72 lines
2.1 KiB
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { getOwner } from "@ember/owner";
import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
import sinon from "sinon";
import CoreFabricators from "discourse/lib/fabricators";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import DirectMessageButton from "discourse/plugins/chat/discourse/components/chat/direct-message-button";
module(
"Discourse Chat | Component | <Chat::DirectMessageButton />",
function (hooks) {
setupRenderingTest(hooks);
test("when current user can send direct messages", async function (assert) {
const self = this;
sinon
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
.value(true);
this.user = new CoreFabricators(getOwner(this)).user();
await render(
<template>
<DirectMessageButton @user={{self.user}} @modal={{true}} />
</template>
);
assert.dom(".chat-direct-message-btn").exists("it shows the chat button");
});
test("when current user cant send direct messages", async function (assert) {
const self = this;
sinon
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
.value(false);
this.user = new CoreFabricators(getOwner(this)).user();
await render(
<template>
<DirectMessageButton @user={{self.user}} @modal={{true}} />
</template>
);
assert
.dom(".chat-direct-message-btn")
.doesNotExist("it doesnt show the chat button");
});
test("when displayed user has disabled PMs / DMs", async function (assert) {
const self = this;
sinon
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
.value(true);
this.user = new CoreFabricators(getOwner(this)).user({
can_send_private_message_to_user: false,
});
await render(
<template>
<DirectMessageButton @user={{self.user}} @modal={{true}} />
</template>
);
assert
.dom(".chat-direct-message-btn")
.doesNotExist("it doesnt show the chat button");
});
}
);