Using arrow functions changes `this` context, which is undesired in tests, e.g. it makes it impossible to setup things like pretender (`this.server`) in `beforeEach` hooks. Ember guides always use classic functions in examples (e.g. https://guides.emberjs.com/release/testing/test-types/), and that's what it uses in its own test suite, as do various addons and ember apps. It was also already used in Discourse where `this` was required. Moving forward, it will be needed in more places as we migrate toward ember-cli. (I might later add a custom rule to eslint-discourse-ember to enforce this)
81 lines
2.3 KiB
JavaScript
81 lines
2.3 KiB
JavaScript
import { queryAll } from "discourse/tests/helpers/qunit-helpers";
|
|
import { exists } from "discourse/tests/helpers/qunit-helpers";
|
|
import { fillIn, click, visit } from "@ember/test-helpers";
|
|
import { test } from "qunit";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("Admin - Watched Words", function (needs) {
|
|
needs.user();
|
|
|
|
test("list words in groups", async function (assert) {
|
|
await visit("/admin/logs/watched_words/action/block");
|
|
|
|
assert.ok(exists(".watched-words-list"));
|
|
assert.ok(
|
|
!exists(".watched-words-list .watched-word"),
|
|
"Don't show bad words by default."
|
|
);
|
|
|
|
await fillIn(".admin-controls .controls input[type=text]", "li");
|
|
|
|
assert.equal(
|
|
queryAll(".watched-words-list .watched-word").length,
|
|
1,
|
|
"When filtering, show words even if checkbox is unchecked."
|
|
);
|
|
|
|
await fillIn(".admin-controls .controls input[type=text]", "");
|
|
|
|
assert.ok(
|
|
!exists(".watched-words-list .watched-word"),
|
|
"Clearing the filter hides words again."
|
|
);
|
|
|
|
await click(".show-words-checkbox");
|
|
|
|
assert.ok(
|
|
exists(".watched-words-list .watched-word"),
|
|
"Always show the words when checkbox is checked."
|
|
);
|
|
|
|
await click(".nav-stacked .censor a");
|
|
|
|
assert.ok(exists(".watched-words-list"));
|
|
assert.ok(!exists(".watched-words-list .watched-word"), "Empty word list.");
|
|
});
|
|
|
|
test("add words", async function (assert) {
|
|
await visit("/admin/logs/watched_words/action/block");
|
|
|
|
click(".show-words-checkbox");
|
|
fillIn(".watched-word-form input", "poutine");
|
|
|
|
await click(".watched-word-form button");
|
|
|
|
let found = [];
|
|
$.each(queryAll(".watched-words-list .watched-word"), (index, elem) => {
|
|
if ($(elem).text().trim() === "poutine") {
|
|
found.push(true);
|
|
}
|
|
});
|
|
assert.equal(found.length, 1);
|
|
});
|
|
|
|
test("remove words", async function (assert) {
|
|
await visit("/admin/logs/watched_words/action/block");
|
|
await click(".show-words-checkbox");
|
|
|
|
let word = null;
|
|
|
|
$.each(queryAll(".watched-words-list .watched-word"), (index, elem) => {
|
|
if ($(elem).text().trim() === "anise") {
|
|
word = elem;
|
|
}
|
|
});
|
|
|
|
await click("#" + $(word).attr("id"));
|
|
|
|
assert.equal(queryAll(".watched-words-list .watched-word").length, 2);
|
|
});
|
|
});
|