mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 08:44:20 +08:00
c34f8b65cb
As of #23867 this is now a real package, so updating the imports to use the real package name, rather than relying on the alias. The name change in the package name is because `I18n` is not a valid name as NPM packages must be all lowercase. This commit also introduces an eslint rule to prevent importing from the old I18n path. For themes/plugins, the old 'i18n' name remains functional.
178 lines
4.7 KiB
JavaScript
178 lines
4.7 KiB
JavaScript
import EmberObject from "@ember/object";
|
|
import { click, render } from "@ember/test-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { module, test } from "qunit";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import pretender, { response } from "discourse/tests/helpers/create-pretender";
|
|
import {
|
|
count,
|
|
exists,
|
|
query,
|
|
queryAll,
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
|
import I18n from "discourse-i18n";
|
|
|
|
let requests = 0;
|
|
|
|
module("Integration | Component | Widget | discourse-poll", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
pretender.put("/polls/vote", () => {
|
|
++requests;
|
|
return response({
|
|
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"],
|
|
});
|
|
});
|
|
});
|
|
|
|
test("can vote", async function (assert) {
|
|
this.set(
|
|
"args",
|
|
EmberObject.create({
|
|
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: [],
|
|
})
|
|
);
|
|
|
|
await render(
|
|
hbs`<MountWidget @widget="discourse-poll" @args={{this.args}} />`
|
|
);
|
|
|
|
requests = 0;
|
|
|
|
await click("li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']");
|
|
assert.strictEqual(requests, 1);
|
|
assert.strictEqual(count(".chosen"), 1);
|
|
assert.deepEqual(
|
|
Array.from(queryAll(".chosen span")).map((span) => span.innerText),
|
|
["100%", "yes"]
|
|
);
|
|
|
|
await click(".toggle-results");
|
|
assert.strictEqual(
|
|
count("li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']"),
|
|
1
|
|
);
|
|
});
|
|
|
|
test("cannot vote if not member of the right group", async function (assert) {
|
|
this.set(
|
|
"args",
|
|
EmberObject.create({
|
|
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: [],
|
|
})
|
|
);
|
|
|
|
await render(
|
|
hbs`<MountWidget @widget="discourse-poll" @args={{this.args}} />`
|
|
);
|
|
|
|
requests = 0;
|
|
|
|
await click("li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']");
|
|
assert.strictEqual(
|
|
query(".poll-container .alert").innerText,
|
|
I18n.t("poll.results.groups.title", { groups: "foo" })
|
|
);
|
|
assert.strictEqual(requests, 0);
|
|
assert.ok(!exists(".chosen"));
|
|
});
|
|
|
|
test("voting on a multiple poll with no min attribute", async function (assert) {
|
|
this.set(
|
|
"args",
|
|
EmberObject.create({
|
|
post: EmberObject.create({
|
|
id: 42,
|
|
topic: {
|
|
archived: false,
|
|
},
|
|
}),
|
|
poll: EmberObject.create({
|
|
name: "poll",
|
|
type: "multiple",
|
|
status: "open",
|
|
results: "always",
|
|
max: 2,
|
|
options: [
|
|
{ id: "1f972d1df351de3ce35a787c89faad29", html: "yes", votes: 0 },
|
|
{ id: "d7ebc3a9beea2e680815a1e4f57d6db6", html: "no", votes: 0 },
|
|
],
|
|
voters: 0,
|
|
chart_type: "bar",
|
|
}),
|
|
vote: [],
|
|
groupableUserFields: [],
|
|
})
|
|
);
|
|
|
|
await render(
|
|
hbs`<MountWidget @widget="discourse-poll" @args={{this.args}} />`
|
|
);
|
|
assert.ok(exists(".poll-buttons .cast-votes[disabled=true]"));
|
|
|
|
await click("li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']");
|
|
await click(".poll-buttons .cast-votes");
|
|
assert.ok(exists(".chosen"));
|
|
});
|
|
});
|