mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 23:36:11 +08:00
FEATURE: Pie chart option for poll results (#8352)
This commit is contained in:

committed by
GitHub

parent
720101b3ee
commit
b92a8131c0
@ -0,0 +1,128 @@
|
||||
import { acceptance } from "helpers/qunit-helpers";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import { Promise } from "rsvp";
|
||||
|
||||
acceptance("Rendering polls with pie charts - desktop", {
|
||||
loggedIn: true,
|
||||
settings: { poll_enabled: true, poll_groupable_user_fields: "something" },
|
||||
beforeEach() {
|
||||
clearPopupMenuOptionsCallback();
|
||||
},
|
||||
pretend(server, helper) {
|
||||
server.get("/polls/grouped_poll_results.json", () => {
|
||||
return new Promise(resolve => {
|
||||
resolve(
|
||||
helper.response({
|
||||
grouped_results: [
|
||||
{
|
||||
group: "Engineering",
|
||||
options: [
|
||||
{
|
||||
digest: "687a1ccf3c6a260f9aeeb7f68a1d463c",
|
||||
html: "This Is",
|
||||
votes: 1
|
||||
},
|
||||
{
|
||||
digest: "9377906763a1221d31d656ea0c4a4495",
|
||||
html: "A test for sure",
|
||||
votes: 1
|
||||
},
|
||||
{
|
||||
digest: "ecf47c65a85a0bb20029072b1b721977",
|
||||
html: "Why not give it some more",
|
||||
votes: 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
group: "Marketing",
|
||||
options: [
|
||||
{
|
||||
digest: "687a1ccf3c6a260f9aeeb7f68a1d463c",
|
||||
html: "This Is",
|
||||
votes: 1
|
||||
},
|
||||
{
|
||||
digest: "9377906763a1221d31d656ea0c4a4495",
|
||||
html: "A test for sure",
|
||||
votes: 1
|
||||
},
|
||||
{
|
||||
digest: "ecf47c65a85a0bb20029072b1b721977",
|
||||
html: "Why not give it some more",
|
||||
votes: 1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
})
|
||||
);
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
test("Polls", async assert => {
|
||||
await visit("/t/-/topic_with_pie_chart_poll");
|
||||
|
||||
const poll = find(".poll")[0];
|
||||
|
||||
assert.equal(
|
||||
find(".info-number", poll)[0].innerHTML,
|
||||
"2",
|
||||
"it should display the right number of voters"
|
||||
);
|
||||
|
||||
assert.equal(
|
||||
find(".info-number", poll)[1].innerHTML,
|
||||
"5",
|
||||
"it should display the right number of votes"
|
||||
);
|
||||
|
||||
assert.equal(
|
||||
poll.classList.contains("pie"),
|
||||
true,
|
||||
"pie class is present on poll div"
|
||||
);
|
||||
|
||||
assert.equal(
|
||||
find(".poll-results-chart", poll).length,
|
||||
1,
|
||||
"Renders the chart div instead of bar container"
|
||||
);
|
||||
|
||||
assert.equal(
|
||||
find(".poll-group-by-toggle").text(),
|
||||
"Show breakdown",
|
||||
"Shows the breakdown button when poll_groupable_user_fields is non-empty"
|
||||
);
|
||||
|
||||
await click(".poll-group-by-toggle:first");
|
||||
|
||||
assert.equal(
|
||||
find(".poll-group-by-toggle").text(),
|
||||
"Hide breakdown",
|
||||
"Shows the combine breakdown button after toggle is clicked"
|
||||
);
|
||||
|
||||
// Double click to make sure the state toggles back to combined view
|
||||
await click(".toggle-results:first");
|
||||
await click(".toggle-results:first");
|
||||
|
||||
assert.equal(
|
||||
find(".poll-group-by-toggle").text(),
|
||||
"Hide breakdown",
|
||||
"Returns to the grouped view, after toggling results shown"
|
||||
);
|
||||
|
||||
assert.equal(
|
||||
find(".poll-grouped-pie-container").length,
|
||||
2,
|
||||
"Renders a chart for each of the groups in group_results response"
|
||||
);
|
||||
|
||||
assert.ok(
|
||||
find(".poll-grouped-pie-container > canvas")[0].$chartjs,
|
||||
"$chartjs is defined on the pie charts"
|
||||
);
|
||||
});
|
Reference in New Issue
Block a user