2019-08-13 09:49:40 -04:00
|
|
|
import selectKit from "helpers/select-kit-helper";
|
2019-06-14 08:54:20 -04:00
|
|
|
import { acceptance, updateCurrentUser } from "helpers/qunit-helpers";
|
2017-12-04 08:47:11 -05:00
|
|
|
import { displayPollBuilderButton } from "discourse/plugins/poll/helpers/display-poll-builder-button";
|
2017-12-22 07:08:12 -05:00
|
|
|
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
2017-12-04 08:47:11 -05:00
|
|
|
|
|
|
|
acceptance("Poll Builder - polls are enabled", {
|
|
|
|
loggedIn: true,
|
|
|
|
settings: {
|
|
|
|
poll_enabled: true,
|
|
|
|
poll_minimum_trust_level_to_create: 1
|
2017-12-22 07:08:12 -05:00
|
|
|
},
|
|
|
|
beforeEach: function() {
|
|
|
|
clearPopupMenuOptionsCallback();
|
2017-12-04 08:47:11 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
test("regular user - sufficient trust level", assert => {
|
2019-07-24 16:01:08 -04:00
|
|
|
updateCurrentUser({ moderator: false, admin: false, trust_level: 1 });
|
2017-12-04 08:47:11 -05:00
|
|
|
|
|
|
|
displayPollBuilderButton();
|
|
|
|
|
|
|
|
andThen(() => {
|
2018-06-15 12:42:20 -04:00
|
|
|
assert.ok(
|
|
|
|
exists(".select-kit-row[title='Build Poll']"),
|
|
|
|
"it shows the builder button"
|
|
|
|
);
|
2017-12-04 08:47:11 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
test("regular user - insufficient trust level", assert => {
|
2019-07-24 16:01:08 -04:00
|
|
|
updateCurrentUser({ moderator: false, admin: false, trust_level: 0 });
|
2017-12-04 08:47:11 -05:00
|
|
|
|
|
|
|
displayPollBuilderButton();
|
|
|
|
|
|
|
|
andThen(() => {
|
2018-06-15 12:42:20 -04:00
|
|
|
assert.ok(
|
|
|
|
!exists(".select-kit-row[title='Build Poll']"),
|
|
|
|
"it hides the builder button"
|
|
|
|
);
|
2017-12-04 08:47:11 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-06-15 12:42:20 -04:00
|
|
|
test("staff - with insufficient trust level", assert => {
|
2019-07-24 16:01:08 -04:00
|
|
|
updateCurrentUser({ moderator: true, trust_level: 0 });
|
2017-12-04 08:47:11 -05:00
|
|
|
|
|
|
|
displayPollBuilderButton();
|
|
|
|
|
|
|
|
andThen(() => {
|
2018-06-15 12:42:20 -04:00
|
|
|
assert.ok(
|
|
|
|
exists(".select-kit-row[title='Build Poll']"),
|
|
|
|
"it shows the builder button"
|
|
|
|
);
|
2017-12-04 08:47:11 -05:00
|
|
|
});
|
|
|
|
});
|
2019-08-13 09:49:40 -04:00
|
|
|
|
|
|
|
test("poll preview", async assert => {
|
|
|
|
displayPollBuilderButton();
|
|
|
|
const popupMenu = selectKit(".toolbar-popup-menu-options");
|
|
|
|
await popupMenu.expand();
|
|
|
|
await popupMenu.selectRowByValue("showPollBuilder");
|
|
|
|
|
|
|
|
await fillIn(".poll-textarea textarea", "First option\nSecond option");
|
|
|
|
|
|
|
|
assert.equal(find(".d-editor-preview li:first-child").text(), "First option");
|
|
|
|
assert.equal(find(".d-editor-preview li:last-child").text(), "Second option");
|
|
|
|
});
|