This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/plugins/chat/test/javascripts/components/user-card-chat-button-test.js
T
2023-02-14 21:12:50 +01:00

52 lines
1.5 KiB
JavaScript
Raw 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 { setupRenderingTest } from "discourse/tests/helpers/component-test";
import hbs from "htmlbars-inline-precompile";
import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
import sinon from "sinon";
import { exists } from "discourse/tests/helpers/qunit-helpers";
import User from "discourse/models/user";
module("Discourse Chat | Component | user-card-chat-button", 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);
await render(hbs`<UserCardChatButton/>`);
assert.true(exists(".user-card-chat-btn"), "it shows the chat button");
});
test("when current user cant send direct messages", async function (assert) {
sinon
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
.value(false);
await render(hbs`<UserCardChatButton/>`);
assert.false(
exists(".user-card-chat-btn"),
"it doesnt show the chat button"
);
});
test("when displayed user is suspended", async function (assert) {
sinon
.stub(this.owner.lookup("service:chat"), "userCanDirectMessage")
.value(true);
this.user = User.create({
suspended_till: moment().add(1, "year").toDate(),
});
await render(hbs`<UserCardChatButton @user={{user}}/>`);
assert.false(
exists(".user-card-chat-btn"),
"it doesnt show the chat button"
);
});
});