mirror of
https://github.com/discourse/discourse.git
synced 2024-12-20 00:03:55 +08:00
ef7518d4ad
and enable some of qunit lints
96 lines
2.7 KiB
JavaScript
96 lines
2.7 KiB
JavaScript
import { click, visit } from "@ember/test-helpers";
|
|
import { test } from "qunit";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("Rendering polls with bar charts - desktop", function (needs) {
|
|
needs.user();
|
|
needs.settings({ poll_enabled: true });
|
|
|
|
needs.pretender((server, helper) => {
|
|
server.get("/polls/voters.json", (request) => {
|
|
let body = {};
|
|
if (
|
|
request.queryParams.option_id === "68b434ff88aeae7054e42cd05a4d9056"
|
|
) {
|
|
body = {
|
|
voters: {
|
|
"68b434ff88aeae7054e42cd05a4d9056": [
|
|
{
|
|
id: 777,
|
|
username: "bruce777",
|
|
avatar_template: "/images/avatar.png",
|
|
name: "Bruce Wayne",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
} else {
|
|
body = {
|
|
voters: Array.from(new Array(5), (_, i) => ({
|
|
id: 600 + i,
|
|
username: `bruce${600 + i}`,
|
|
avatar_template: "/images/avatar.png",
|
|
name: "Bruce Wayne",
|
|
})),
|
|
};
|
|
}
|
|
return helper.response(body);
|
|
});
|
|
});
|
|
|
|
test("Polls", async function (assert) {
|
|
await visit("/t/-/15");
|
|
|
|
assert.dom(".poll").exists({ count: 2 }, "renders the polls correctly");
|
|
|
|
const polls = document.querySelectorAll(".poll");
|
|
assert
|
|
.dom(".info-number", polls[0])
|
|
.hasText("2", "displays the right number of votes");
|
|
|
|
assert
|
|
.dom(".info-number", polls[1])
|
|
.hasText("3", "displays the right number of votes");
|
|
});
|
|
|
|
test("Public poll", async function (assert) {
|
|
await visit("/t/-/14");
|
|
|
|
assert.dom(".poll").exists({ count: 1 }, "renders the poll correctly");
|
|
|
|
await click("button.toggle-results");
|
|
|
|
assert
|
|
.dom(".poll-voters:nth-of-type(1) li")
|
|
.exists({ count: 25 }, "displays the right number of voters");
|
|
|
|
await click(".poll-voters-toggle-expand:nth-of-type(1) a");
|
|
|
|
assert
|
|
.dom(".poll-voters:nth-of-type(1) li")
|
|
.exists({ count: 26 }, "displays the right number of voters");
|
|
});
|
|
|
|
test("Public number poll", async function (assert) {
|
|
await visit("/t/-/13");
|
|
|
|
assert.dom(".poll").exists({ count: 1 }, "renders the poll correctly");
|
|
|
|
await click("button.toggle-results");
|
|
|
|
assert
|
|
.dom(".poll-voters:nth-of-type(1) li")
|
|
.exists({ count: 25 }, "displays the right number of voters");
|
|
|
|
assert
|
|
.dom(".poll-voters:nth-of-type(1) li:nth-of-type(1) a")
|
|
.doesNotHaveAttribute("href", "user URL does not exist");
|
|
|
|
await click(".poll-voters-toggle-expand:nth-of-type(1) a");
|
|
|
|
assert
|
|
.dom(".poll-voters:nth-of-type(1) li")
|
|
.exists({ count: 30 }, "displays the right number of voters");
|
|
});
|
|
});
|