mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 13:03:39 +08:00
0431942f3d
This new iteration of select-kit focuses on following best principales and disallowing mutations inside select-kit components. A best effort has been made to avoid breaking changes, however if you content was a flat array, eg: ["foo", "bar"] You will need to set valueProperty=null and nameProperty=null on the component. Also almost every component should have an `onChange` handler now to decide what to do with the updated data. **select-kit will not mutate your data by itself anymore**
61 lines
1.8 KiB
JavaScript
61 lines
1.8 KiB
JavaScript
import selectKit from "helpers/select-kit-helper";
|
|
import { acceptance, updateCurrentUser } from "helpers/qunit-helpers";
|
|
import { displayPollBuilderButton } from "discourse/plugins/poll/helpers/display-poll-builder-button";
|
|
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
|
|
|
acceptance("Poll Builder - polls are enabled", {
|
|
loggedIn: true,
|
|
settings: {
|
|
poll_enabled: true,
|
|
poll_minimum_trust_level_to_create: 1
|
|
},
|
|
beforeEach() {
|
|
clearPopupMenuOptionsCallback();
|
|
}
|
|
});
|
|
|
|
test("regular user - sufficient trust level", async assert => {
|
|
updateCurrentUser({ moderator: false, admin: false, trust_level: 1 });
|
|
|
|
await displayPollBuilderButton();
|
|
|
|
assert.ok(
|
|
exists(".select-kit-row[title='Build Poll']"),
|
|
"it shows the builder button"
|
|
);
|
|
});
|
|
|
|
test("regular user - insufficient trust level", async assert => {
|
|
updateCurrentUser({ moderator: false, admin: false, trust_level: 0 });
|
|
|
|
await displayPollBuilderButton();
|
|
|
|
assert.ok(
|
|
!exists(".select-kit-row[title='Build Poll']"),
|
|
"it hides the builder button"
|
|
);
|
|
});
|
|
|
|
test("staff - with insufficient trust level", async assert => {
|
|
updateCurrentUser({ moderator: true, trust_level: 0 });
|
|
|
|
await displayPollBuilderButton();
|
|
|
|
assert.ok(
|
|
exists(".select-kit-row[title='Build Poll']"),
|
|
"it shows the builder button"
|
|
);
|
|
});
|
|
|
|
test("poll preview", async assert => {
|
|
await displayPollBuilderButton();
|
|
|
|
const popupMenu = selectKit(".toolbar-popup-menu-options");
|
|
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");
|
|
});
|