mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:54:16 +08:00
143 lines
3.6 KiB
JavaScript
143 lines
3.6 KiB
JavaScript
import I18n from "I18n";
|
|
import EmberObject from "@ember/object";
|
|
import { moduleForWidget, widgetTest } from "helpers/widget-test";
|
|
|
|
moduleForWidget("discourse-poll");
|
|
|
|
const template = `{{mount-widget
|
|
widget="discourse-poll"
|
|
args=(hash id=id
|
|
post=post
|
|
poll=poll
|
|
vote=vote
|
|
groupableUserFields=groupableUserFields)}}`;
|
|
|
|
widgetTest("can vote", {
|
|
template,
|
|
|
|
beforeEach() {
|
|
this.setProperties({
|
|
post: EmberObject.create({
|
|
id: 42,
|
|
topic: {
|
|
archived: false,
|
|
},
|
|
}),
|
|
poll: EmberObject.create({
|
|
name: "poll",
|
|
type: "regular",
|
|
status: "open",
|
|
results: "always",
|
|
options: [
|
|
{ id: "1f972d1df351de3ce35a787c89faad29", html: "yes", votes: 0 },
|
|
{ id: "d7ebc3a9beea2e680815a1e4f57d6db6", html: "no", votes: 0 },
|
|
],
|
|
voters: 0,
|
|
chart_type: "bar",
|
|
}),
|
|
vote: [],
|
|
groupableUserFields: [],
|
|
});
|
|
},
|
|
|
|
async test(assert) {
|
|
let requests = 0;
|
|
|
|
/* global server */
|
|
server.put("/polls/vote", () => {
|
|
++requests;
|
|
return [
|
|
200,
|
|
{ "Content-Type": "application/json" },
|
|
{
|
|
poll: {
|
|
name: "poll",
|
|
type: "regular",
|
|
status: "open",
|
|
results: "always",
|
|
options: [
|
|
{ id: "1f972d1df351de3ce35a787c89faad29", html: "yes", votes: 1 },
|
|
{ id: "d7ebc3a9beea2e680815a1e4f57d6db6", html: "no", votes: 0 },
|
|
],
|
|
voters: 1,
|
|
chart_type: "bar",
|
|
},
|
|
vote: ["1f972d1df351de3ce35a787c89faad29"],
|
|
},
|
|
];
|
|
});
|
|
|
|
await click("li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']");
|
|
assert.equal(requests, 1);
|
|
assert.equal(find(".chosen").length, 1);
|
|
assert.equal(find(".chosen").text(), "100%yes");
|
|
},
|
|
});
|
|
|
|
widgetTest("cannot vote if not member of the right group", {
|
|
template,
|
|
|
|
beforeEach() {
|
|
this.setProperties({
|
|
post: EmberObject.create({
|
|
id: 42,
|
|
topic: {
|
|
archived: false,
|
|
},
|
|
}),
|
|
poll: EmberObject.create({
|
|
name: "poll",
|
|
type: "regular",
|
|
status: "open",
|
|
results: "always",
|
|
options: [
|
|
{ id: "1f972d1df351de3ce35a787c89faad29", html: "yes", votes: 0 },
|
|
{ id: "d7ebc3a9beea2e680815a1e4f57d6db6", html: "no", votes: 0 },
|
|
],
|
|
voters: 0,
|
|
chart_type: "bar",
|
|
groups: "foo",
|
|
}),
|
|
vote: [],
|
|
groupableUserFields: [],
|
|
});
|
|
},
|
|
|
|
async test(assert) {
|
|
let requests = 0;
|
|
|
|
/* global server */
|
|
server.put("/polls/vote", () => {
|
|
++requests;
|
|
return [
|
|
200,
|
|
{ "Content-Type": "application/json" },
|
|
{
|
|
poll: {
|
|
name: "poll",
|
|
type: "regular",
|
|
status: "open",
|
|
results: "always",
|
|
options: [
|
|
{ id: "1f972d1df351de3ce35a787c89faad29", html: "yes", votes: 1 },
|
|
{ id: "d7ebc3a9beea2e680815a1e4f57d6db6", html: "no", votes: 0 },
|
|
],
|
|
voters: 1,
|
|
chart_type: "bar",
|
|
groups: "foo",
|
|
},
|
|
vote: ["1f972d1df351de3ce35a787c89faad29"],
|
|
},
|
|
];
|
|
});
|
|
|
|
await click("li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']");
|
|
assert.equal(
|
|
find(".poll-container .alert").text(),
|
|
I18n.t("poll.results.groups.title", { groups: "foo" })
|
|
);
|
|
assert.equal(requests, 0);
|
|
assert.equal(find(".chosen").length, 0);
|
|
},
|
|
});
|