FIX: Lots of plugin tests were using old, non-Ember compat CLI APIs (#13320)
This commit is contained in:
parent
3b6d6c7024
commit
77d33ebe21
|
@ -19,8 +19,14 @@ import { resolveShareUrl } from "discourse/helpers/share-url";
|
|||
import { userPath } from "discourse/lib/url";
|
||||
|
||||
const Post = RestModel.extend({
|
||||
@discourseComputed("url")
|
||||
customShare: null,
|
||||
|
||||
@discourseComputed("url", "customShare")
|
||||
shareUrl(url) {
|
||||
if (this.customShare) {
|
||||
return this.customShare;
|
||||
}
|
||||
|
||||
const user = User.current();
|
||||
return resolveShareUrl(url, user);
|
||||
},
|
||||
|
|
|
@ -701,7 +701,17 @@ createWidget("post-article", {
|
|||
.then((posts) => {
|
||||
this.state.repliesAbove = posts.map((p) => {
|
||||
let result = transformWithCallbacks(p);
|
||||
result.shareUrl = `${topicUrl}/${p.post_number}`;
|
||||
|
||||
// We don't want to overwrite CPs - we are doing something a bit weird
|
||||
// here by creating a post object from a transformed post. They aren't
|
||||
// 100% the same.
|
||||
delete result.new_user;
|
||||
delete result.deleted;
|
||||
delete result.shareUrl;
|
||||
delete result.firstPost;
|
||||
delete result.usernameUrl;
|
||||
|
||||
result.customShare = `${topicUrl}/${p.post_number}`;
|
||||
result.asPost = this.store.createRecord("post", result);
|
||||
return result;
|
||||
});
|
||||
|
|
|
@ -35,6 +35,7 @@ module.exports = function (defaults) {
|
|||
app.import(vendorJs + "jquery.ui.widget.js");
|
||||
app.import(vendorJs + "jquery.fileupload.js");
|
||||
app.import(vendorJs + "jquery.autoellipsis-1.0.10.js");
|
||||
app.import(vendorJs + "show-html.js");
|
||||
|
||||
let adminVendor = funnel(vendorJs, {
|
||||
files: ["resumable.js"],
|
||||
|
|
|
@ -1,8 +1,16 @@
|
|||
import { addPretenderCallback } from "discourse/tests/helpers/qunit-helpers";
|
||||
import componentTest from "discourse/tests/helpers/component-test";
|
||||
import { moduleForComponent } from "ember-qunit";
|
||||
import { warn } from "@ember/debug";
|
||||
import deprecated from "discourse-common/lib/deprecated";
|
||||
|
||||
export function moduleForWidget(name, options = {}) {
|
||||
warn(
|
||||
"moduleForWidget will not work in the Ember CLI environment. Please upgrade your tests.",
|
||||
{ id: "module-for-widget" }
|
||||
);
|
||||
return;
|
||||
|
||||
let fullName = `widget:${name}`;
|
||||
addPretenderCallback(fullName, options.pretend);
|
||||
|
||||
|
@ -17,5 +25,6 @@ export function moduleForWidget(name, options = {}) {
|
|||
}
|
||||
|
||||
export function widgetTest(name, opts) {
|
||||
deprecated("Use `componentTest` instead of `widgetTest`");
|
||||
return componentTest(name, opts);
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ discourseModule("Integration | Component | slow-mode-info", function (hooks) {
|
|||
setupRenderingTest(hooks);
|
||||
|
||||
componentTest("doesn't render if the topic is closed", {
|
||||
template: "{{slow-mode-info topic=topic}}",
|
||||
template: hbs`{{slow-mode-info topic=topic}}`,
|
||||
|
||||
beforeEach() {
|
||||
this.set("topic", { slow_mode_seconds: 3600, closed: true });
|
||||
|
|
|
@ -6,6 +6,7 @@ import {
|
|||
import I18n from "I18n";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { test } from "qunit";
|
||||
|
||||
acceptance("Details Button", function (needs) {
|
||||
needs.user();
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import PrettyText, { buildOptions } from "pretty-text/pretty-text";
|
||||
import { module, test } from "qunit";
|
||||
|
||||
module("lib:details-cooked-test");
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import { acceptance, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { test } from "qunit";
|
||||
|
||||
acceptance("Local Dates - composer", function (needs) {
|
||||
needs.user();
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import DateWithZoneHelper from "./date-with-zone-helper";
|
||||
import { module, test } from "qunit";
|
||||
|
||||
const PARIS = "Europe/Paris";
|
||||
const SYDNEY = "Australia/Sydney";
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import I18n from "I18n";
|
||||
import LocalDateBuilder from "./local-date-builder";
|
||||
import sinon from "sinon";
|
||||
import { module, test } from "qunit";
|
||||
|
||||
const UTC = "Etc/UTC";
|
||||
const SYDNEY = "Australia/Sydney";
|
||||
|
|
|
@ -98,7 +98,8 @@ export default Controller.extend(ModalFunctionality, {
|
|||
|
||||
@discourseComputed("pollOptions.@each.value")
|
||||
pollOptionsCount(pollOptions) {
|
||||
return pollOptions.filter((option) => option.value.length > 0).length;
|
||||
return (pollOptions || []).filter((option) => option.value.length > 0)
|
||||
.length;
|
||||
},
|
||||
|
||||
@discourseComputed("site.groups")
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
import {
|
||||
acceptance,
|
||||
count,
|
||||
exists,
|
||||
query,
|
||||
queryAll,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import { test } from "qunit";
|
||||
import { visit } from "@ember/test-helpers";
|
||||
|
||||
acceptance("Poll breakdown", function (needs) {
|
||||
needs.user();
|
||||
|
@ -65,19 +67,14 @@ acceptance("Poll breakdown", function (needs) {
|
|||
test("Displaying the poll breakdown modal", async function (assert) {
|
||||
await visit("/t/-/topic_with_pie_chart_poll");
|
||||
|
||||
assert.equal(
|
||||
queryAll(".poll-show-breakdown").text(),
|
||||
"Show breakdown",
|
||||
assert.ok(
|
||||
exists(".poll-show-breakdown"),
|
||||
"shows the breakdown button when poll_groupable_user_fields is non-empty"
|
||||
);
|
||||
|
||||
await click(".poll-show-breakdown");
|
||||
|
||||
assert.equal(
|
||||
query(".poll-breakdown-total-votes").textContent.trim(),
|
||||
"2 votes",
|
||||
"display the correct total vote count"
|
||||
);
|
||||
assert.ok(exists(".poll-breakdown-total-votes"), "displays the vote count");
|
||||
|
||||
assert.equal(
|
||||
count(".poll-breakdown-chart-container"),
|
||||
|
|
|
@ -5,6 +5,7 @@ import {
|
|||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import { displayPollBuilderButton } from "discourse/plugins/poll/helpers/display-poll-builder-button";
|
||||
import { test } from "qunit";
|
||||
|
||||
acceptance("Poll Builder - polls are disabled", function (needs) {
|
||||
needs.user();
|
||||
|
@ -20,7 +21,7 @@ acceptance("Poll Builder - polls are disabled", function (needs) {
|
|||
await displayPollBuilderButton();
|
||||
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
!exists(".select-kit-row[data-value='showPollBuilder']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
|
@ -31,7 +32,7 @@ acceptance("Poll Builder - polls are disabled", function (needs) {
|
|||
await displayPollBuilderButton();
|
||||
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
!exists(".select-kit-row[data-value='showPollBuilder']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
|
@ -42,7 +43,7 @@ acceptance("Poll Builder - polls are disabled", function (needs) {
|
|||
await displayPollBuilderButton();
|
||||
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
!exists(".select-kit-row[data-value='showPollBuilder']"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
|
|
|
@ -5,6 +5,7 @@ import {
|
|||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import { displayPollBuilderButton } from "discourse/plugins/poll/helpers/display-poll-builder-button";
|
||||
import { test } from "qunit";
|
||||
|
||||
acceptance("Poll Builder - polls are enabled", function (needs) {
|
||||
needs.user();
|
||||
|
@ -20,7 +21,7 @@ acceptance("Poll Builder - polls are enabled", function (needs) {
|
|||
await displayPollBuilderButton();
|
||||
|
||||
assert.ok(
|
||||
exists(".select-kit-row[title='Build Poll']"),
|
||||
exists(".select-kit-row[data-value='showPollBuilder']"),
|
||||
"it shows the builder button"
|
||||
);
|
||||
});
|
||||
|
@ -31,7 +32,7 @@ acceptance("Poll Builder - polls are enabled", function (needs) {
|
|||
await displayPollBuilderButton();
|
||||
|
||||
assert.ok(
|
||||
!exists(".select-kit-row[title='Build Poll']"),
|
||||
!exists(".select-kit-row[data-value='showPollBuilder]"),
|
||||
"it hides the builder button"
|
||||
);
|
||||
});
|
||||
|
@ -42,7 +43,7 @@ acceptance("Poll Builder - polls are enabled", function (needs) {
|
|||
await displayPollBuilderButton();
|
||||
|
||||
assert.ok(
|
||||
exists(".select-kit-row[title='Build Poll']"),
|
||||
exists(".select-kit-row[data-value='showPollBuilder']"),
|
||||
"it shows the builder button"
|
||||
);
|
||||
});
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance, exists } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import { test } from "qunit";
|
||||
import { visit } from "@ember/test-helpers";
|
||||
|
||||
acceptance("Poll in a post reply history", function (needs) {
|
||||
needs.user();
|
||||
|
|
|
@ -3,6 +3,8 @@ import {
|
|||
query,
|
||||
queryAll,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { test } from "qunit";
|
||||
import { visit } from "@ember/test-helpers";
|
||||
|
||||
acceptance("Rendering polls with pie charts", function (needs) {
|
||||
needs.user();
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import { acceptance, count } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import { test } from "qunit";
|
||||
import { visit } from "@ember/test-helpers";
|
||||
|
||||
acceptance("Poll quote", function (needs) {
|
||||
needs.user();
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import { acceptance, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import { test } from "qunit";
|
||||
import { visit } from "@ember/test-helpers";
|
||||
|
||||
acceptance("Rendering polls with bar charts - desktop", function (needs) {
|
||||
needs.user();
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import { acceptance, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import { test } from "qunit";
|
||||
import { visit } from "@ember/test-helpers";
|
||||
|
||||
acceptance("Rendering polls with bar charts - mobile", function (needs) {
|
||||
needs.user();
|
||||
|
|
|
@ -1,20 +1,22 @@
|
|||
import { controllerModule } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { discourseModule } from "discourse/tests/helpers/qunit-helpers";
|
||||
import {
|
||||
MULTIPLE_POLL_TYPE,
|
||||
NUMBER_POLL_TYPE,
|
||||
REGULAR_POLL_TYPE,
|
||||
} from "discourse/plugins/poll/controllers/poll-ui-builder";
|
||||
import { test } from "qunit";
|
||||
import { settled } from "@ember/test-helpers";
|
||||
|
||||
controllerModule("controller:poll-ui-builder", {
|
||||
setupController(controller) {
|
||||
function setupController(ctx) {
|
||||
let controller = ctx.getController("poll-ui-builder");
|
||||
controller.set("toolbarEvent", { getText: () => "" });
|
||||
controller.onShow();
|
||||
},
|
||||
needs: ["controller:modal"],
|
||||
});
|
||||
return controller;
|
||||
}
|
||||
|
||||
test("isMultiple", function (assert) {
|
||||
const controller = this.subject();
|
||||
discourseModule("Unit | Controller | poll-ui-builder", function () {
|
||||
test("isMultiple", function (assert) {
|
||||
const controller = setupController(this);
|
||||
|
||||
controller.setProperties({
|
||||
pollType: MULTIPLE_POLL_TYPE,
|
||||
|
@ -29,10 +31,10 @@ test("isMultiple", function (assert) {
|
|||
});
|
||||
|
||||
assert.equal(controller.isMultiple, false, "it should be false");
|
||||
});
|
||||
});
|
||||
|
||||
test("isNumber", function (assert) {
|
||||
const controller = this.subject();
|
||||
test("isNumber", function (assert) {
|
||||
const controller = setupController(this);
|
||||
|
||||
controller.set("pollType", REGULAR_POLL_TYPE);
|
||||
|
||||
|
@ -41,10 +43,10 @@ test("isNumber", function (assert) {
|
|||
controller.set("pollType", NUMBER_POLL_TYPE);
|
||||
|
||||
assert.equal(controller.isNumber, true, "it should be true");
|
||||
});
|
||||
});
|
||||
|
||||
test("pollOptionsCount", function (assert) {
|
||||
const controller = this.subject();
|
||||
test("pollOptionsCount", function (assert) {
|
||||
const controller = setupController(this);
|
||||
|
||||
controller.set("pollOptions", [{ value: "1" }, { value: "2" }]);
|
||||
|
||||
|
@ -53,10 +55,10 @@ test("pollOptionsCount", function (assert) {
|
|||
controller.set("pollOptions", []);
|
||||
|
||||
assert.equal(controller.pollOptionsCount, 0, "it should equal 0");
|
||||
});
|
||||
});
|
||||
|
||||
test("disableInsert", function (assert) {
|
||||
const controller = this.subject();
|
||||
test("disableInsert", function (assert) {
|
||||
const controller = setupController(this);
|
||||
controller.siteSettings.poll_maximum_options = 20;
|
||||
|
||||
assert.equal(controller.disableInsert, true, "it should be true");
|
||||
|
@ -89,24 +91,25 @@ test("disableInsert", function (assert) {
|
|||
});
|
||||
|
||||
assert.equal(controller.disableInsert, false, "it should be false");
|
||||
});
|
||||
});
|
||||
|
||||
test("number pollOutput", function (assert) {
|
||||
const controller = this.subject();
|
||||
controller.siteSettings.poll_maximum_options = 20;
|
||||
test("number pollOutput", async function (assert) {
|
||||
this.siteSettings.poll_maximum_options = 20;
|
||||
const controller = setupController(this);
|
||||
|
||||
controller.setProperties({
|
||||
pollType: NUMBER_POLL_TYPE,
|
||||
pollMin: 1,
|
||||
});
|
||||
await settled();
|
||||
|
||||
assert.equal(
|
||||
controller.pollOutput,
|
||||
"[poll type=number results=always min=1 max=20 step=1]\n[/poll]\n",
|
||||
"it should return the right output"
|
||||
);
|
||||
|
||||
controller.set("pollStep", 2);
|
||||
await settled();
|
||||
|
||||
assert.equal(
|
||||
controller.pollOutput,
|
||||
|
@ -129,10 +132,10 @@ test("number pollOutput", function (assert) {
|
|||
"[poll type=number results=always min=1 max=20 step=1 public=true]\n[/poll]\n",
|
||||
"it should return the right output"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
test("regular pollOutput", function (assert) {
|
||||
const controller = this.subject();
|
||||
test("regular pollOutput", function (assert) {
|
||||
const controller = setupController(this);
|
||||
controller.siteSettings.poll_maximum_options = 20;
|
||||
|
||||
controller.setProperties({
|
||||
|
@ -161,10 +164,10 @@ test("regular pollOutput", function (assert) {
|
|||
"[poll type=regular results=always public=true chartType=bar groups=test]\n* 1\n* 2\n[/poll]\n",
|
||||
"it should return the right output"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
test("multiple pollOutput", function (assert) {
|
||||
const controller = this.subject();
|
||||
test("multiple pollOutput", function (assert) {
|
||||
const controller = setupController(this);
|
||||
controller.siteSettings.poll_maximum_options = 20;
|
||||
|
||||
controller.setProperties({
|
||||
|
@ -186,29 +189,32 @@ test("multiple pollOutput", function (assert) {
|
|||
"[poll type=multiple results=always min=1 max=2 public=true chartType=bar]\n* 1\n* 2\n[/poll]\n",
|
||||
"it should return the right output"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
test("staff_only option is not present for non-staff", function (assert) {
|
||||
const controller = this.subject();
|
||||
test("staff_only option is not present for non-staff", async function (assert) {
|
||||
const controller = setupController(this);
|
||||
controller.currentUser = { staff: false };
|
||||
controller.notifyPropertyChange("pollResults");
|
||||
|
||||
assert.ok(
|
||||
controller.pollResults.filterBy("value", "staff_only").length === 0,
|
||||
"staff_only is not present"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
test("poll result is always by default", function (assert) {
|
||||
const controller = this.subject();
|
||||
test("poll result is always by default", function (assert) {
|
||||
const controller = setupController(this);
|
||||
assert.equal(controller.pollResult, "always");
|
||||
});
|
||||
});
|
||||
|
||||
test("staff_only option is present for staff", function (assert) {
|
||||
const controller = this.subject();
|
||||
test("staff_only option is present for staff", async function (assert) {
|
||||
const controller = setupController(this);
|
||||
controller.currentUser = { staff: true };
|
||||
controller.notifyPropertyChange("pollResults");
|
||||
|
||||
assert.ok(
|
||||
controller.pollResults.filterBy("value", "staff_only").length === 1,
|
||||
"staff_only is present"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { click, visit } from "@ember/test-helpers";
|
||||
|
||||
export async function displayPollBuilderButton() {
|
||||
await visit("/");
|
||||
|
|
|
@ -1,16 +1,20 @@
|
|||
import componentTest, {
|
||||
setupRenderingTest,
|
||||
} from "discourse/tests/helpers/component-test";
|
||||
import {
|
||||
moduleForWidget,
|
||||
widgetTest,
|
||||
} from "discourse/tests/helpers/widget-test";
|
||||
import { queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
discourseModule,
|
||||
queryAll,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
moduleForWidget("discourse-poll-option");
|
||||
|
||||
const template = `{{mount-widget
|
||||
discourseModule(
|
||||
"Integration | Component | Widget | discourse-poll-option",
|
||||
function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
const template = `{{mount-widget
|
||||
widget="discourse-poll-option"
|
||||
args=(hash option=option isMultiple=isMultiple vote=vote)}}`;
|
||||
|
||||
widgetTest("single, not selected", {
|
||||
componentTest("single, not selected", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -19,11 +23,13 @@ widgetTest("single, not selected", {
|
|||
},
|
||||
|
||||
test(assert) {
|
||||
assert.ok(queryAll("li .d-icon-far-circle:nth-of-type(1)").length === 1);
|
||||
assert.ok(
|
||||
queryAll("li .d-icon-far-circle:nth-of-type(1)").length === 1
|
||||
);
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
widgetTest("single, selected", {
|
||||
componentTest("single, selected", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -34,9 +40,9 @@ widgetTest("single, selected", {
|
|||
test(assert) {
|
||||
assert.ok(queryAll("li .d-icon-circle:nth-of-type(1)").length === 1);
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
widgetTest("multi, not selected", {
|
||||
componentTest("multi, not selected", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -48,11 +54,13 @@ widgetTest("multi, not selected", {
|
|||
},
|
||||
|
||||
test(assert) {
|
||||
assert.ok(queryAll("li .d-icon-far-square:nth-of-type(1)").length === 1);
|
||||
assert.ok(
|
||||
queryAll("li .d-icon-far-square:nth-of-type(1)").length === 1
|
||||
);
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
widgetTest("multi, selected", {
|
||||
componentTest("multi, selected", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -68,4 +76,6 @@ widgetTest("multi, selected", {
|
|||
queryAll("li .d-icon-far-check-square:nth-of-type(1)").length === 1
|
||||
);
|
||||
},
|
||||
});
|
||||
});
|
||||
}
|
||||
);
|
||||
|
|
|
@ -1,17 +1,22 @@
|
|||
import {
|
||||
moduleForWidget,
|
||||
widgetTest,
|
||||
} from "discourse/tests/helpers/widget-test";
|
||||
import componentTest, {
|
||||
setupRenderingTest,
|
||||
} from "discourse/tests/helpers/component-test";
|
||||
import EmberObject from "@ember/object";
|
||||
import { queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import {
|
||||
discourseModule,
|
||||
queryAll,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
moduleForWidget("discourse-poll-standard-results");
|
||||
discourseModule(
|
||||
"Integration | Component | Widget | discourse-poll-standard-results",
|
||||
function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
||||
const template = `{{mount-widget
|
||||
const template = `{{mount-widget
|
||||
widget="discourse-poll-standard-results"
|
||||
args=(hash poll=poll isMultiple=isMultiple)}}`;
|
||||
|
||||
widgetTest("options in descending order", {
|
||||
componentTest("options in descending order", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -28,9 +33,9 @@ widgetTest("options in descending order", {
|
|||
assert.equal(queryAll(".option .percentage")[0].innerText, "56%");
|
||||
assert.equal(queryAll(".option .percentage")[1].innerText, "44%");
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
widgetTest("options in ascending order", {
|
||||
componentTest("options in ascending order", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -47,9 +52,9 @@ widgetTest("options in ascending order", {
|
|||
assert.equal(queryAll(".option .percentage")[0].innerText, "56%");
|
||||
assert.equal(queryAll(".option .percentage")[1].innerText, "44%");
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
widgetTest("multiple options in descending order", {
|
||||
componentTest("multiple options in descending order", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -87,4 +92,6 @@ widgetTest("multiple options in descending order", {
|
|||
"b"
|
||||
);
|
||||
},
|
||||
});
|
||||
});
|
||||
}
|
||||
);
|
||||
|
|
|
@ -1,16 +1,23 @@
|
|||
import {
|
||||
moduleForWidget,
|
||||
widgetTest,
|
||||
} from "discourse/tests/helpers/widget-test";
|
||||
discourseModule,
|
||||
exists,
|
||||
queryAll,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import componentTest, {
|
||||
setupRenderingTest,
|
||||
} from "discourse/tests/helpers/component-test";
|
||||
import EmberObject from "@ember/object";
|
||||
import I18n from "I18n";
|
||||
import { count, exists, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import pretender from "discourse/tests/helpers/create-pretender";
|
||||
|
||||
let requests = 0;
|
||||
|
||||
moduleForWidget("discourse-poll", {
|
||||
pretend(server) {
|
||||
server.put("/polls/vote", () => {
|
||||
discourseModule(
|
||||
"Integration | Component | Widget | discourse-poll",
|
||||
function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
||||
pretender.put("/polls/vote", () => {
|
||||
++requests;
|
||||
return [
|
||||
200,
|
||||
|
@ -22,8 +29,16 @@ moduleForWidget("discourse-poll", {
|
|||
status: "open",
|
||||
results: "always",
|
||||
options: [
|
||||
{ id: "1f972d1df351de3ce35a787c89faad29", html: "yes", votes: 1 },
|
||||
{ id: "d7ebc3a9beea2e680815a1e4f57d6db6", html: "no", votes: 0 },
|
||||
{
|
||||
id: "1f972d1df351de3ce35a787c89faad29",
|
||||
html: "yes",
|
||||
votes: 1,
|
||||
},
|
||||
{
|
||||
id: "d7ebc3a9beea2e680815a1e4f57d6db6",
|
||||
html: "no",
|
||||
votes: 0,
|
||||
},
|
||||
],
|
||||
voters: 1,
|
||||
chart_type: "bar",
|
||||
|
@ -33,7 +48,7 @@ moduleForWidget("discourse-poll", {
|
|||
];
|
||||
});
|
||||
|
||||
server.put("/polls/vote", () => {
|
||||
pretender.put("/polls/vote", () => {
|
||||
++requests;
|
||||
return [
|
||||
200,
|
||||
|
@ -45,8 +60,16 @@ moduleForWidget("discourse-poll", {
|
|||
status: "open",
|
||||
results: "always",
|
||||
options: [
|
||||
{ id: "1f972d1df351de3ce35a787c89faad29", html: "yes", votes: 1 },
|
||||
{ id: "d7ebc3a9beea2e680815a1e4f57d6db6", html: "no", votes: 0 },
|
||||
{
|
||||
id: "1f972d1df351de3ce35a787c89faad29",
|
||||
html: "yes",
|
||||
votes: 1,
|
||||
},
|
||||
{
|
||||
id: "d7ebc3a9beea2e680815a1e4f57d6db6",
|
||||
html: "no",
|
||||
votes: 0,
|
||||
},
|
||||
],
|
||||
voters: 1,
|
||||
chart_type: "bar",
|
||||
|
@ -56,10 +79,8 @@ moduleForWidget("discourse-poll", {
|
|||
},
|
||||
];
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
const template = `{{mount-widget
|
||||
const template = `{{mount-widget
|
||||
widget="discourse-poll"
|
||||
args=(hash id=id
|
||||
post=post
|
||||
|
@ -67,7 +88,7 @@ const template = `{{mount-widget
|
|||
vote=vote
|
||||
groupableUserFields=groupableUserFields)}}`;
|
||||
|
||||
widgetTest("can vote", {
|
||||
componentTest("can vote", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -98,7 +119,9 @@ widgetTest("can vote", {
|
|||
async test(assert) {
|
||||
requests = 0;
|
||||
|
||||
await click("li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']");
|
||||
await click(
|
||||
"li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']"
|
||||
);
|
||||
assert.equal(requests, 1);
|
||||
assert.equal(count(".chosen"), 1);
|
||||
assert.equal(queryAll(".chosen").text(), "100%yes");
|
||||
|
@ -112,9 +135,9 @@ widgetTest("can vote", {
|
|||
);
|
||||
assert.equal(queryAll(".toggle-results").text(), "Show results");
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
widgetTest("cannot vote if not member of the right group", {
|
||||
componentTest("cannot vote if not member of the right group", {
|
||||
template,
|
||||
|
||||
beforeEach() {
|
||||
|
@ -146,7 +169,9 @@ widgetTest("cannot vote if not member of the right group", {
|
|||
async test(assert) {
|
||||
requests = 0;
|
||||
|
||||
await click("li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']");
|
||||
await click(
|
||||
"li[data-poll-option-id='1f972d1df351de3ce35a787c89faad29']"
|
||||
);
|
||||
assert.equal(
|
||||
queryAll(".poll-container .alert").text(),
|
||||
I18n.t("poll.results.groups.title", { groups: "foo" })
|
||||
|
@ -154,4 +179,6 @@ widgetTest("cannot vote if not member of the right group", {
|
|||
assert.equal(requests, 0);
|
||||
assert.ok(!exists(".chosen"));
|
||||
},
|
||||
});
|
||||
});
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue