2024-07-25 21:09:06 +08:00
|
|
|
|
import { getOwner } from "@ember/owner";
|
2023-07-10 20:04:26 +08:00
|
|
|
|
import { render } from "@ember/test-helpers";
|
2023-10-11 02:38:59 +08:00
|
|
|
|
import hbs from "htmlbars-inline-precompile";
|
2023-07-10 20:04:26 +08:00
|
|
|
|
import { module, test } from "qunit";
|
|
|
|
|
import sinon from "sinon";
|
2024-04-09 03:00:09 +08:00
|
|
|
|
import CoreFabricators from "discourse/lib/fabricators";
|
2023-10-11 02:38:59 +08:00
|
|
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
2023-07-10 20:04:26 +08:00
|
|
|
|
|
|
|
|
|
module(
|
2024-03-18 11:17:37 +08:00
|
|
|
|
"Discourse Chat | Component | <Chat::DirectMessageButton />",
|
2023-07-10 20:04:26 +08:00
|
|
|
|
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);
|
2024-04-09 03:00:09 +08:00
|
|
|
|
this.user = new CoreFabricators(getOwner(this)).user();
|
2023-07-10 20:04:26 +08:00
|
|
|
|
|
2024-03-18 11:17:37 +08:00
|
|
|
|
await render(
|
|
|
|
|
hbs`<Chat::DirectMessageButton @user={{user}} @modal={{true}} />`
|
|
|
|
|
);
|
2023-07-10 20:04:26 +08:00
|
|
|
|
|
2024-03-18 11:17:37 +08:00
|
|
|
|
assert.dom(".chat-direct-message-btn").exists("it shows the chat button");
|
2023-07-10 20:04:26 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test("when current user can’t send direct messages", async function (assert) {
|
|
|
|
|
sinon
|
|
|
|
|
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
|
|
|
|
|
.value(false);
|
2024-04-09 03:00:09 +08:00
|
|
|
|
this.user = new CoreFabricators(getOwner(this)).user();
|
2023-07-10 20:04:26 +08:00
|
|
|
|
|
2024-03-18 11:17:37 +08:00
|
|
|
|
await render(
|
|
|
|
|
hbs`<Chat::DirectMessageButton @user={{user}} @modal={{true}} />`
|
|
|
|
|
);
|
2023-07-10 20:04:26 +08:00
|
|
|
|
|
|
|
|
|
assert
|
2024-03-18 11:17:37 +08:00
|
|
|
|
.dom(".chat-direct-message-btn")
|
2023-07-10 20:04:26 +08:00
|
|
|
|
.doesNotExist("it doesn’t show the chat button");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test("when displayed user is suspended", async function (assert) {
|
|
|
|
|
sinon
|
|
|
|
|
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
|
|
|
|
|
.value(true);
|
|
|
|
|
|
2024-04-09 03:00:09 +08:00
|
|
|
|
this.user = new CoreFabricators(getOwner(this)).user({
|
2023-07-10 20:04:26 +08:00
|
|
|
|
suspended_till: moment().add(1, "year").toDate(),
|
|
|
|
|
});
|
|
|
|
|
|
2024-03-18 11:17:37 +08:00
|
|
|
|
await render(
|
|
|
|
|
hbs`<Chat::DirectMessageButton @user={{user}} @modal={{true}} />`
|
|
|
|
|
);
|
2023-07-10 20:04:26 +08:00
|
|
|
|
|
|
|
|
|
assert
|
2024-03-18 11:17:37 +08:00
|
|
|
|
.dom(".chat-direct-message-btn")
|
2023-07-10 20:04:26 +08:00
|
|
|
|
.doesNotExist("it doesn’t show the chat button");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
);
|