mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-07 19:35:34 +08:00
This was required in older versions of Ember. But now, bare template tags can access `this.`. This commit was created by upgrading lint-configs, and then running `pnpm lint:js:fix && pnpm lint:prettier:fix` Rule development: https://github.com/discourse/lint-configs/pull/154
66 lines
2 KiB
Text
66 lines
2 KiB
Text
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) {
|
||
sinon
|
||
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
|
||
.value(true);
|
||
this.user = new CoreFabricators(getOwner(this)).user();
|
||
|
||
await render(
|
||
<template>
|
||
<DirectMessageButton @user={{this.user}} @modal={{true}} />
|
||
</template>
|
||
);
|
||
|
||
assert.dom(".chat-direct-message-btn").exists("it shows the chat button");
|
||
});
|
||
|
||
test("when current user can’t send direct messages", async function (assert) {
|
||
sinon
|
||
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
|
||
.value(false);
|
||
this.user = new CoreFabricators(getOwner(this)).user();
|
||
|
||
await render(
|
||
<template>
|
||
<DirectMessageButton @user={{this.user}} @modal={{true}} />
|
||
</template>
|
||
);
|
||
|
||
assert
|
||
.dom(".chat-direct-message-btn")
|
||
.doesNotExist("it doesn’t show the chat button");
|
||
});
|
||
|
||
test("when displayed user has disabled PMs / DMs", async function (assert) {
|
||
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={{this.user}} @modal={{true}} />
|
||
</template>
|
||
);
|
||
|
||
assert
|
||
.dom(".chat-direct-message-btn")
|
||
.doesNotExist("it doesn’t show the chat button");
|
||
});
|
||
}
|
||
);
|