2021-11-13 22:31:42 +08:00
|
|
|
import { click, visit } from "@ember/test-helpers";
|
2023-10-11 02:38:59 +08:00
|
|
|
import { test } from "qunit";
|
2024-11-28 18:22:27 +08:00
|
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
2019-01-24 01:27:21 +08:00
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
acceptance("Rendering polls with bar charts - mobile", function (needs) {
|
|
|
|
needs.user();
|
|
|
|
needs.mobileView();
|
|
|
|
needs.settings({ poll_enabled: true });
|
|
|
|
needs.pretender((server, helper) => {
|
2020-10-08 05:08:19 +08:00
|
|
|
server.get("/polls/voters.json", () => {
|
2020-10-21 01:56:52 +08:00
|
|
|
return helper.response({
|
2020-10-08 05:08:19 +08:00
|
|
|
voters: Array.from(new Array(10), (_, i) => ({
|
|
|
|
id: 500 + i,
|
|
|
|
username: `bruce${500 + i}`,
|
|
|
|
avatar_template: "/images/avatar.png",
|
|
|
|
name: "Bruce Wayne",
|
|
|
|
})),
|
2020-10-21 01:56:52 +08:00
|
|
|
});
|
2020-10-08 05:08:19 +08:00
|
|
|
});
|
2020-10-21 01:56:52 +08:00
|
|
|
});
|
2019-01-24 01:27:21 +08:00
|
|
|
|
2020-10-31 00:37:32 +08:00
|
|
|
test("Public number poll", async function (assert) {
|
2020-10-21 01:56:52 +08:00
|
|
|
await visit("/t/-/13");
|
2019-01-24 01:27:21 +08:00
|
|
|
|
2024-11-28 18:22:27 +08:00
|
|
|
assert.dom(".poll").exists({ count: 1 }, "renders the poll correctly");
|
2019-01-24 01:27:21 +08:00
|
|
|
|
2020-10-21 01:56:52 +08:00
|
|
|
await click("button.toggle-results");
|
2019-01-24 01:27:21 +08:00
|
|
|
|
2024-11-28 18:22:27 +08:00
|
|
|
assert
|
|
|
|
.dom(".poll-voters:nth-of-type(1) li")
|
|
|
|
.exists({ count: 25 }, "displays the right number of voters");
|
2019-01-24 01:27:21 +08:00
|
|
|
|
2024-11-28 18:22:27 +08:00
|
|
|
assert
|
|
|
|
.dom(".poll-voters:nth-of-type(1) li:nth-of-type(1) a")
|
|
|
|
.doesNotHaveAttribute("href", "user URL does not exist");
|
2019-01-24 01:27:21 +08:00
|
|
|
|
2021-02-04 03:22:20 +08:00
|
|
|
await click(".poll-voters-toggle-expand:nth-of-type(1) a");
|
2019-01-24 01:27:21 +08:00
|
|
|
|
2024-11-28 18:22:27 +08:00
|
|
|
assert
|
|
|
|
.dom(".poll-voters:nth-of-type(1) li")
|
|
|
|
.exists({ count: 35 }, "displays the right number of voters");
|
2020-10-21 01:56:52 +08:00
|
|
|
});
|
2019-01-24 01:27:21 +08:00
|
|
|
});
|