discourse/plugins/poll/test/javascripts/acceptance/poll-builder-enabled-test.js.es6
Robin Ward a8793d0d9a REFACTOR: Test Memory Usage Fixes (#7769)
* Calling `Discourse.reset()` creates a new container
We should run our de-initializers only after acceptance tests,
since initializers are not run outside of acceptance tests anyway,
and the container at this point can be passed properly to the
`teardown()` method.

* Remove `Discourse.reset` from tests
This would cause a new container to be created which leaks many objects.

* `updateCurrentUser` is more accurate than `replaceCurrentUser`
2019-06-14 14:54:20 +02:00

54 lines
1.3 KiB
JavaScript

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: function() {
clearPopupMenuOptionsCallback();
}
});
test("regular user - sufficient trust level", assert => {
updateCurrentUser({ staff: false, trust_level: 1 });
displayPollBuilderButton();
andThen(() => {
assert.ok(
exists(".select-kit-row[title='Build Poll']"),
"it shows the builder button"
);
});
});
test("regular user - insufficient trust level", assert => {
updateCurrentUser({ staff: false, trust_level: 0 });
displayPollBuilderButton();
andThen(() => {
assert.ok(
!exists(".select-kit-row[title='Build Poll']"),
"it hides the builder button"
);
});
});
test("staff - with insufficient trust level", assert => {
updateCurrentUser({ staff: true, trust_level: 0 });
displayPollBuilderButton();
andThen(() => {
assert.ok(
exists(".select-kit-row[title='Build Poll']"),
"it shows the builder button"
);
});
});