mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 11:33:39 +08:00
60c67afba4
- Improves styleguide support - Adds toggle color scheme to styleguide - Adds properties mutators to styleguide - Attempts to quit a session as soon as done with it in system specs, this should at least free resources faster - Refactors fabricators to simplify them - Adds more fabricators (uploads for example) - Starts implementing components pattern in system specs - Uses Chat::Message creator to create messages in system specs, this should help to have more real specs as the side effects should now happen
95 lines
3.4 KiB
JavaScript
95 lines
3.4 KiB
JavaScript
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
import { test } from "qunit";
|
|
import { set } from "@ember/object";
|
|
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
|
|
acceptance("Discourse Chat | Unit | Service | chat-guardian", function (needs) {
|
|
needs.hooks.beforeEach(function () {
|
|
Object.defineProperty(this, "chatGuardian", {
|
|
get: () => this.container.lookup("service:chat-guardian"),
|
|
});
|
|
Object.defineProperty(this, "siteSettings", {
|
|
get: () => this.container.lookup("service:site-settings"),
|
|
});
|
|
Object.defineProperty(this, "currentUser", {
|
|
get: () => this.container.lookup("service:current-user"),
|
|
});
|
|
});
|
|
|
|
needs.user();
|
|
needs.settings();
|
|
|
|
test("#canEditChatChannel", async function (assert) {
|
|
set(this.currentUser, "has_chat_enabled", false);
|
|
set(this.currentUser, "admin", false);
|
|
set(this.currentUser, "moderator", false);
|
|
this.siteSettings.chat_enabled = false;
|
|
assert.notOk(this.chatGuardian.canEditChatChannel());
|
|
|
|
set(this.currentUser, "has_chat_enabled", true);
|
|
set(this.currentUser, "admin", true);
|
|
this.siteSettings.chat_enabled = false;
|
|
assert.notOk(this.chatGuardian.canEditChatChannel());
|
|
|
|
set(this.currentUser, "has_chat_enabled", false);
|
|
set(this.currentUser, "admin", false);
|
|
set(this.currentUser, "moderator", false);
|
|
this.siteSettings.chat_enabled = true;
|
|
assert.notOk(this.chatGuardian.canEditChatChannel());
|
|
|
|
set(this.currentUser, "has_chat_enabled", false);
|
|
set(this.currentUser, "admin", true);
|
|
this.siteSettings.chat_enabled = true;
|
|
assert.notOk(this.chatGuardian.canEditChatChannel());
|
|
|
|
set(this.currentUser, "has_chat_enabled", true);
|
|
set(this.currentUser, "admin", false);
|
|
set(this.currentUser, "moderator", false);
|
|
this.siteSettings.chat_enabled = true;
|
|
assert.notOk(this.chatGuardian.canEditChatChannel());
|
|
|
|
set(this.currentUser, "has_chat_enabled", true);
|
|
set(this.currentUser, "admin", true);
|
|
this.siteSettings.chat_enabled = true;
|
|
assert.ok(this.chatGuardian.canEditChatChannel());
|
|
});
|
|
|
|
test("#canUseChat", async function (assert) {
|
|
set(this.currentUser, "has_chat_enabled", false);
|
|
this.siteSettings.chat_enabled = true;
|
|
assert.notOk(this.chatGuardian.canUseChat());
|
|
|
|
set(this.currentUser, "has_chat_enabled", true);
|
|
this.siteSettings.chat_enabled = false;
|
|
assert.notOk(this.chatGuardian.canUseChat());
|
|
|
|
set(this.currentUser, "has_chat_enabled", true);
|
|
this.siteSettings.chat_enabled = true;
|
|
assert.ok(this.chatGuardian.canUseChat());
|
|
});
|
|
|
|
test("#canArchiveChannel", async function (assert) {
|
|
const channel = fabricators.channel();
|
|
|
|
set(this.currentUser, "has_chat_enabled", true);
|
|
set(this.currentUser, "admin", true);
|
|
this.siteSettings.chat_enabled = true;
|
|
this.siteSettings.chat_allow_archiving_channels = true;
|
|
assert.ok(this.chatGuardian.canArchiveChannel(channel));
|
|
|
|
set(this.currentUser, "admin", false);
|
|
set(this.currentUser, "moderator", false);
|
|
assert.notOk(this.chatGuardian.canArchiveChannel(channel));
|
|
set(this.currentUser, "admin", true);
|
|
set(this.currentUser, "moderator", true);
|
|
|
|
channel.status = "read_only";
|
|
assert.notOk(this.chatGuardian.canArchiveChannel(channel));
|
|
channel.status = "open";
|
|
|
|
channel.status = "archived";
|
|
assert.notOk(this.chatGuardian.canArchiveChannel(channel));
|
|
channel.status = "open";
|
|
});
|
|
});
|