discourse/plugins/chat/test/javascripts/acceptance/chat-channels-list-test.js
Joffrey JAFFEUX 84c1cc70d6
REFACTOR: naming and state refactor (#19187)
- better handling of drawer state using chat state manager
- removes various float and topic occurrences to use drawer
- ensures user can chat before doing a lot of chat setup
- fixes a bug which was creating presence errors in tests
- removes dead code
2022-11-25 14:15:38 +01:00

57 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 {
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,
enable_sidebar: false,
enable_experimental_sidebar_hamburger: false,
});
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"
);
});
}
);