2023-10-11 02:38:59 +08:00
|
|
|
import { test } from "qunit";
|
2024-01-23 09:35:14 +08:00
|
|
|
import { AUTO_GROUPS } from "discourse/lib/constants";
|
2020-10-21 01:56:52 +08:00
|
|
|
import {
|
|
|
|
acceptance,
|
2020-11-27 22:30:16 +08:00
|
|
|
exists,
|
2020-10-21 01:56:52 +08:00
|
|
|
updateCurrentUser,
|
|
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
2017-12-04 21:47:11 +08:00
|
|
|
import { displayPollBuilderButton } from "discourse/plugins/poll/helpers/display-poll-builder-button";
|
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
acceptance("Poll Builder - polls are disabled", function (needs) {
|
|
|
|
needs.user();
|
|
|
|
needs.settings({
|
2017-12-04 21:47:11 +08:00
|
|
|
poll_enabled: false,
|
2024-01-23 09:35:14 +08:00
|
|
|
poll_create_allowed_groups: AUTO_GROUPS.trust_level_2,
|
2020-10-21 01:56:52 +08:00
|
|
|
});
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2024-01-23 09:35:14 +08:00
|
|
|
test("regular user - sufficient permissions", async function (assert) {
|
|
|
|
updateCurrentUser({
|
|
|
|
moderator: false,
|
|
|
|
admin: false,
|
|
|
|
trust_level: 3,
|
|
|
|
can_create_poll: true,
|
|
|
|
});
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
await displayPollBuilderButton();
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
assert.ok(
|
2021-06-09 22:58:55 +08:00
|
|
|
!exists(".select-kit-row[data-value='showPollBuilder']"),
|
2020-10-21 01:56:52 +08:00
|
|
|
"it hides the builder button"
|
|
|
|
);
|
|
|
|
});
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2024-01-23 09:35:14 +08:00
|
|
|
test("regular user - insufficient permissions", async function (assert) {
|
|
|
|
updateCurrentUser({
|
|
|
|
moderator: false,
|
|
|
|
admin: false,
|
|
|
|
trust_level: 1,
|
|
|
|
can_create_poll: false,
|
|
|
|
});
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
await displayPollBuilderButton();
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
assert.ok(
|
2021-06-09 22:58:55 +08:00
|
|
|
!exists(".select-kit-row[data-value='showPollBuilder']"),
|
2020-10-21 01:56:52 +08:00
|
|
|
"it hides the builder button"
|
|
|
|
);
|
|
|
|
});
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2020-10-31 00:37:32 +08:00
|
|
|
test("staff", async function (assert) {
|
2020-10-21 01:56:52 +08:00
|
|
|
updateCurrentUser({ moderator: true });
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
await displayPollBuilderButton();
|
2017-12-04 21:47:11 +08:00
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
assert.ok(
|
2021-06-09 22:58:55 +08:00
|
|
|
!exists(".select-kit-row[data-value='showPollBuilder']"),
|
2020-10-21 01:56:52 +08:00
|
|
|
"it hides the builder button"
|
|
|
|
);
|
|
|
|
});
|
2017-12-04 21:47:11 +08:00
|
|
|
});
|