This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/chat/test/javascripts/acceptance/chat-channels-list-test.js
Roman Rizzi 0a5f548635
DEV: Move discourse-chat to the core repo. (#18776)
As part of this move, we are also renaming `discourse-chat` to `chat`.
2022-11-02 10:41:30 -03:00

55 lines
1.4 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 {
acceptance,
exists,
updateCurrentUser,
} from "discourse/tests/helpers/qunit-helpers";
import { test } from "qunit";
import { visit } from "@ember/test-helpers";
import { directMessageChannels } from "discourse/plugins/chat/chat-fixtures";
import { cloneJSON } from "discourse-common/lib/object";
acceptance(
"Discourse Chat - Chat Channels list - no joinable public channels",
function (needs) {
needs.user({ has_chat_enabled: true, has_joinable_public_channels: false });
needs.settings({
chat_enabled: true,
});
needs.pretender((server, helper) => {
server.get("/chat/chat_channels.json", () => {
return helper.response({
public_channels: [],
direct_message_channels: cloneJSON(directMessageChannels).mapBy(
"chat_channel"
),
});
});
server.get("/chat/:id/messages.json", () => {
return helper.response({
chat_messages: [],
meta: { can_chat: true },
});
});
});
test("Public chat channels section visibility", async function (assert) {
await visit("/chat");
assert.ok(
exists(".public-channels-section"),
"it shows the section for staff"
);
updateCurrentUser({ admin: false, moderator: false });
assert.notOk(
exists(".public-channels-section"),
"it doesnt show the section for regular user"
);
});
}
);