DEV: Replace remaining uses of `query` helper
This commit is contained in:
parent
489b27ca03
commit
75d85115e8
|
@ -204,6 +204,10 @@ export function caretPosition(el) {
|
|||
|
||||
// Set the caret's position
|
||||
export function setCaretPosition(ctrl, pos) {
|
||||
if (typeof ctrl === "string") {
|
||||
ctrl = document.querySelector(ctrl);
|
||||
}
|
||||
|
||||
let range;
|
||||
if (ctrl.setSelectionRange) {
|
||||
ctrl.focus();
|
||||
|
|
|
@ -6,7 +6,6 @@ import { toggleCheckDraftPopup } from "discourse/services/composer";
|
|||
import userFixtures from "discourse/tests/fixtures/user-fixtures";
|
||||
import {
|
||||
acceptance,
|
||||
query,
|
||||
selectText,
|
||||
updateCurrentUser,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
|
@ -127,7 +126,9 @@ acceptance("Composer Actions", function (needs) {
|
|||
|
||||
assert.strictEqual(categoryChooserReplyArea.header().name(), "faq");
|
||||
assert.dom(".action-title").hasText(i18n("topic.create_long"));
|
||||
assert.true(query(".d-editor-input").value.includes(quote));
|
||||
assert.true(
|
||||
document.querySelector(".d-editor-input").value.includes(quote)
|
||||
);
|
||||
});
|
||||
|
||||
test("reply_as_new_topic without a new_topic draft", async function (assert) {
|
||||
|
@ -210,7 +211,9 @@ acceptance("Composer Actions", function (needs) {
|
|||
await composerActions.expand();
|
||||
|
||||
assert.dom(".action-title").hasText(i18n("topic.create_long"));
|
||||
assert.true(query(".d-editor-input").value.includes(quote));
|
||||
assert.true(
|
||||
document.querySelector(".d-editor-input").value.includes(quote)
|
||||
);
|
||||
assert.strictEqual(composerActions.rowByIndex(0).value(), "reply_to_post");
|
||||
assert.strictEqual(composerActions.rowByIndex(1).value(), "reply_to_topic");
|
||||
assert.strictEqual(composerActions.rowByIndex(2).value(), "shared_draft");
|
||||
|
|
|
@ -6,7 +6,6 @@ import {
|
|||
acceptance,
|
||||
fakeTime,
|
||||
loggedInUser,
|
||||
query,
|
||||
queryAll,
|
||||
simulateKeys,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
|
@ -67,7 +66,7 @@ acceptance("Composer - editor mentions", function (needs) {
|
|||
await visit("/");
|
||||
await click("#create-topic");
|
||||
|
||||
await simulateKeys(query(".d-editor-input"), "abc @u\r");
|
||||
await simulateKeys(".d-editor-input", "abc @u\r");
|
||||
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
|
@ -78,7 +77,7 @@ acceptance("Composer - editor mentions", function (needs) {
|
|||
await visit("/");
|
||||
await click("#create-topic");
|
||||
|
||||
await simulateKeys(query(".d-editor-input"), "abc @user a\b\b\r");
|
||||
await simulateKeys(".d-editor-input", "abc @user a\b\b\r");
|
||||
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
|
@ -89,11 +88,9 @@ acceptance("Composer - editor mentions", function (needs) {
|
|||
await visit("/");
|
||||
await click("#create-topic");
|
||||
|
||||
const editor = query(".d-editor-input");
|
||||
|
||||
await simulateKeys(editor, "abc @user 123");
|
||||
await setCaretPosition(editor, 9);
|
||||
await simulateKeys(editor, "\b\b\r");
|
||||
await simulateKeys(".d-editor-input", "abc @user 123");
|
||||
await setCaretPosition(".d-editor-input", 9);
|
||||
await simulateKeys(".d-editor-input", "\b\b\r");
|
||||
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
|
@ -108,9 +105,7 @@ acceptance("Composer - editor mentions", function (needs) {
|
|||
await visit("/");
|
||||
await click("#create-topic");
|
||||
|
||||
const editor = query(".d-editor-input");
|
||||
|
||||
await simulateKeys(editor, "@u");
|
||||
await simulateKeys(".d-editor-input", "@u");
|
||||
|
||||
assert
|
||||
.dom(`.autocomplete .emoji[alt='${status.emoji}']`)
|
||||
|
@ -125,16 +120,14 @@ acceptance("Composer - editor mentions", function (needs) {
|
|||
await visit("/");
|
||||
await click("#create-topic");
|
||||
|
||||
const editor = query(".d-editor-input");
|
||||
|
||||
await simulateKeys(editor, "abc @u");
|
||||
await simulateKeys(".d-editor-input", "abc @u");
|
||||
|
||||
assert.deepEqual(
|
||||
[...queryAll(".ac-user .username")].map((e) => e.innerText),
|
||||
["user", "user2", "user_group", "foo"]
|
||||
);
|
||||
|
||||
await simulateKeys(editor, "\bf");
|
||||
await simulateKeys(".d-editor-input", "\bf");
|
||||
|
||||
assert.deepEqual(
|
||||
[...queryAll(".ac-user .username")].map((e) => e.innerText),
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { click, fillIn, triggerKeyEvent, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import { withPluginApi } from "discourse/lib/plugin-api";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
acceptance("Composer - Image Preview", function (needs) {
|
||||
needs.user({});
|
||||
|
@ -340,7 +340,9 @@ acceptance("Composer - Image Preview", function (needs) {
|
|||
.hasValue(uploads.join("\n"), "Image should be removed from the editor");
|
||||
|
||||
assert.false(
|
||||
query(".d-editor-input").value.includes("image_example_0"),
|
||||
document
|
||||
.querySelector(".d-editor-input")
|
||||
.value.includes("image_example_0"),
|
||||
"does not have the first image"
|
||||
);
|
||||
|
||||
|
@ -368,8 +370,7 @@ acceptance("Composer - Image Preview - Plugin API", function (needs) {
|
|||
"lock",
|
||||
(event) => {
|
||||
if (event.target.classList.contains("custom-button-class")) {
|
||||
document.querySelector(".d-editor-input").value =
|
||||
"custom button change";
|
||||
fillIn(".d-editor-input", "custom button change");
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
import {
|
||||
click,
|
||||
fillIn,
|
||||
triggerEvent,
|
||||
triggerKeyEvent,
|
||||
visit,
|
||||
waitUntil,
|
||||
} from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { i18n } from "discourse-i18n";
|
||||
import pretender, { response } from "../helpers/create-pretender";
|
||||
|
@ -153,9 +154,7 @@ acceptance("Composer - Messages - Duplicate links", function (needs) {
|
|||
await click("button.create");
|
||||
|
||||
// Work around the lack of CSS transitions in the test env
|
||||
const event = new Event("transitionend");
|
||||
event.propertyName = "height";
|
||||
query("#reply-control").dispatchEvent(event);
|
||||
triggerEvent("#reply-control", "transitionend", { propertyName: "height" });
|
||||
|
||||
assert
|
||||
.dom(".composer-popup")
|
||||
|
|
|
@ -25,7 +25,6 @@ import pretender, { response } from "discourse/tests/helpers/create-pretender";
|
|||
import {
|
||||
acceptance,
|
||||
metaModifier,
|
||||
query,
|
||||
updateCurrentUser,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
|
@ -205,17 +204,16 @@ acceptance("Composer", function (needs) {
|
|||
.dom(".d-editor-textarea-wrapper .popup-tip.good")
|
||||
.exists("the body is now good");
|
||||
|
||||
const textarea = query("#reply-control .d-editor-input");
|
||||
const textarea = document.querySelector("#reply-control .d-editor-input");
|
||||
textarea.selectionStart = textarea.value.length;
|
||||
textarea.selectionEnd = textarea.value.length;
|
||||
|
||||
await triggerKeyEvent(textarea, "keydown", "B", metaModifier);
|
||||
|
||||
const example = i18n(`composer.bold_text`);
|
||||
assert
|
||||
.dom("#reply-control .d-editor-input")
|
||||
.hasValue(
|
||||
`this is the *content* of a post**${example}**`,
|
||||
`this is the *content* of a post**${i18n("composer.bold_text")}**`,
|
||||
"supports keyboard shortcuts"
|
||||
);
|
||||
|
||||
|
@ -365,7 +363,8 @@ acceptance("Composer", function (needs) {
|
|||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasValue(
|
||||
query(".topic-post:nth-of-type(1) .cooked > p").innerText,
|
||||
document.querySelector(".topic-post:nth-of-type(1) .cooked > p")
|
||||
.innerText,
|
||||
"composer has contents of post to be edited"
|
||||
);
|
||||
});
|
||||
|
@ -848,7 +847,7 @@ acceptance("Composer", function (needs) {
|
|||
assert.dom(".d-modal__body").doesNotExist("abandon popup shouldn't come");
|
||||
|
||||
assert.true(
|
||||
query(".d-editor-input").value.includes(longText),
|
||||
document.querySelector(".d-editor-input").value.includes(longText),
|
||||
"entered text should still be there"
|
||||
);
|
||||
|
||||
|
@ -1311,7 +1310,8 @@ acceptance("Composer - current time", function (needs) {
|
|||
});
|
||||
|
||||
assert.true(
|
||||
query("#reply-control .d-editor-input")
|
||||
document
|
||||
.querySelector("#reply-control .d-editor-input")
|
||||
.value.trim()
|
||||
.startsWith(`and the time now is: [date=${date}`),
|
||||
"adds the current date"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { getOwner } from "@ember/owner";
|
||||
import { click, fillIn, settled, visit } from "@ember/test-helpers";
|
||||
import { click, fillIn, focus, settled, visit } from "@ember/test-helpers";
|
||||
import { skip, test } from "qunit";
|
||||
import { Promise } from "rsvp";
|
||||
import sinon from "sinon";
|
||||
|
@ -10,7 +10,6 @@ import {
|
|||
chromeTest,
|
||||
createFile,
|
||||
paste,
|
||||
query,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -305,7 +304,7 @@ acceptance("Uppy Composer Attachment - Upload Placeholder", function (needs) {
|
|||
await visit("/");
|
||||
await click("#create-topic");
|
||||
await fillIn(".d-editor-input", "The image: Text after the image.");
|
||||
const textArea = query(".d-editor-input");
|
||||
const textArea = document.querySelector(".d-editor-input");
|
||||
textArea.selectionStart = 10;
|
||||
textArea.selectionEnd = 10;
|
||||
|
||||
|
@ -341,7 +340,7 @@ acceptance("Uppy Composer Attachment - Upload Placeholder", function (needs) {
|
|||
".d-editor-input",
|
||||
"The image: [paste here] Text after the image."
|
||||
);
|
||||
const textArea = query(".d-editor-input");
|
||||
const textArea = document.querySelector(".d-editor-input");
|
||||
textArea.selectionStart = 10;
|
||||
textArea.selectionEnd = 23;
|
||||
|
||||
|
@ -428,7 +427,7 @@ acceptance("Uppy Composer Attachment - Upload Placeholder", function (needs) {
|
|||
await visit("/");
|
||||
await click("#create-topic");
|
||||
await fillIn(".d-editor-input", "The image:\ntext after image");
|
||||
const input = query(".d-editor-input");
|
||||
const input = document.querySelector(".d-editor-input");
|
||||
input.selectionStart = 10;
|
||||
input.selectionEnd = 10;
|
||||
|
||||
|
@ -457,17 +456,15 @@ acceptance("Uppy Composer Attachment - Upload Placeholder", function (needs) {
|
|||
uppyEventFired = true;
|
||||
});
|
||||
|
||||
let element = query(".d-editor");
|
||||
let inputElement = query(".d-editor-input");
|
||||
inputElement.focus();
|
||||
await paste(element, "\ta\tb\n1\t2\t3", {
|
||||
focus(".d-editor-input");
|
||||
await paste(".d-editor", "\ta\tb\n1\t2\t3", {
|
||||
types: ["text/plain", "Files"],
|
||||
files: [createFile("avatar.png")],
|
||||
});
|
||||
await settled();
|
||||
|
||||
assert
|
||||
.dom(inputElement)
|
||||
.dom(".d-editor-input")
|
||||
.hasValue(
|
||||
"||a|b|\n|---|---|---|\n|1|2|3|\n",
|
||||
"only the plain text table is pasted"
|
||||
|
@ -546,7 +543,7 @@ acceptance(
|
|||
appEvents.on("composer:upload-error", async () => {
|
||||
await settled();
|
||||
|
||||
if (query(".dialog-body")) {
|
||||
if (document.querySelector(".dialog-body")) {
|
||||
assert
|
||||
.dom(".dialog-body")
|
||||
.hasText(
|
||||
|
|
|
@ -3,7 +3,6 @@ import { IMAGE_VERSION as v } from "pretty-text/emoji/version";
|
|||
import { test } from "qunit";
|
||||
import {
|
||||
acceptance,
|
||||
query,
|
||||
simulateKey,
|
||||
simulateKeys,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
|
@ -61,14 +60,10 @@ acceptance("Emoji", function (needs) {
|
|||
await visit("/t/internationalization-localization/280");
|
||||
await click("#topic-footer-buttons .btn.create");
|
||||
|
||||
const editor = query(".d-editor-input");
|
||||
|
||||
await simulateKeys(editor, ":s");
|
||||
|
||||
await simulateKeys(".d-editor-input", ":s");
|
||||
assert.dom(".autocomplete.ac-emoji").doesNotExist();
|
||||
|
||||
await simulateKey(editor, "w");
|
||||
|
||||
await simulateKey(".d-editor-input", "w");
|
||||
assert.dom(".autocomplete.ac-emoji").exists();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -4,7 +4,6 @@ import postFixtures from "discourse/tests/fixtures/post";
|
|||
import {
|
||||
acceptance,
|
||||
metaModifier,
|
||||
query,
|
||||
selectText,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { cloneJSON } from "discourse-common/lib/object";
|
||||
|
@ -23,7 +22,7 @@ acceptance("Fast Edit", function (needs) {
|
|||
test("Fast edit button works", async function (assert) {
|
||||
await visit("/t/internationalization-localization/280");
|
||||
|
||||
const textNode = query("#post_1 .cooked p").childNodes[0];
|
||||
const textNode = document.querySelector("#post_1 .cooked p").childNodes[0];
|
||||
|
||||
await selectText(textNode, 9);
|
||||
await click(".quote-button .quote-edit-label");
|
||||
|
@ -42,7 +41,7 @@ acceptance("Fast Edit", function (needs) {
|
|||
test("Works with keyboard shortcut", async function (assert) {
|
||||
await visit("/t/internationalization-localization/280");
|
||||
|
||||
const textNode = query("#post_1 .cooked p").childNodes[0];
|
||||
const textNode = document.querySelector("#post_1 .cooked p").childNodes[0];
|
||||
|
||||
await selectText(textNode, 9);
|
||||
|
||||
|
@ -77,7 +76,7 @@ acceptance("Fast Edit", function (needs) {
|
|||
test("Opens full composer for multi-line selection", async function (assert) {
|
||||
await visit("/t/internationalization-localization/280");
|
||||
|
||||
const textNode = query("#post_2 .cooked");
|
||||
const textNode = document.querySelector("#post_2 .cooked");
|
||||
|
||||
await selectText(textNode);
|
||||
await click(".quote-button .quote-edit-label");
|
||||
|
@ -89,8 +88,10 @@ acceptance("Fast Edit", function (needs) {
|
|||
test("Works with diacritics", async function (assert) {
|
||||
await visit("/t/internationalization-localization/280");
|
||||
|
||||
query("#post_2 .cooked").append(`Je suis désolé, comment ça va?`);
|
||||
const textNode = query("#post_2 .cooked").childNodes[2];
|
||||
document
|
||||
.querySelector("#post_2 .cooked")
|
||||
.append(`Je suis désolé, comment ça va?`);
|
||||
const textNode = document.querySelector("#post_2 .cooked").childNodes[2];
|
||||
|
||||
await selectText(textNode);
|
||||
await click(".quote-button .quote-edit-label");
|
||||
|
@ -101,8 +102,8 @@ acceptance("Fast Edit", function (needs) {
|
|||
test("Works with CJK ranges", async function (assert) {
|
||||
await visit("/t/internationalization-localization/280");
|
||||
|
||||
query("#post_2 .cooked").append(`这是一个测试`);
|
||||
const textNode = query("#post_2 .cooked").childNodes[2];
|
||||
document.querySelector("#post_2 .cooked").append(`这是一个测试`);
|
||||
const textNode = document.querySelector("#post_2 .cooked").childNodes[2];
|
||||
|
||||
await selectText(textNode);
|
||||
await click(".quote-button .quote-edit-label");
|
||||
|
@ -113,8 +114,8 @@ acceptance("Fast Edit", function (needs) {
|
|||
test("Works with emoji", async function (assert) {
|
||||
await visit("/t/internationalization-localization/280");
|
||||
|
||||
query("#post_2 .cooked").append(`This is great 👍`);
|
||||
const textNode = query("#post_2 .cooked").childNodes[2];
|
||||
document.querySelector("#post_2 .cooked").append(`This is great 👍`);
|
||||
const textNode = document.querySelector("#post_2 .cooked").childNodes[2];
|
||||
|
||||
await selectText(textNode);
|
||||
await click(".quote-button .quote-edit-label");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { click, fillIn, settled, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import userFixtures from "discourse/tests/fixtures/user-fixtures";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
|
||||
async function openFlagModal() {
|
||||
|
@ -13,7 +13,7 @@ async function openFlagModal() {
|
|||
await click(".topic-post:first-child button.create-flag");
|
||||
}
|
||||
|
||||
async function pressEnter(element, modifier) {
|
||||
async function pressEnter(selector, modifier) {
|
||||
const event = new KeyboardEvent("keydown", {
|
||||
bubbles: true,
|
||||
cancelable: true,
|
||||
|
@ -21,7 +21,7 @@ async function pressEnter(element, modifier) {
|
|||
keyCode: 13,
|
||||
[modifier]: true,
|
||||
});
|
||||
element.dispatchEvent(event);
|
||||
document.querySelector(selector).dispatchEvent(event);
|
||||
await settled();
|
||||
}
|
||||
|
||||
|
@ -187,14 +187,13 @@ acceptance("flagging", function (needs) {
|
|||
await visit("/t/internationalization-localization/280");
|
||||
await openFlagModal();
|
||||
|
||||
const modal = query(".d-modal");
|
||||
await pressEnter(modal, "ctrlKey");
|
||||
await pressEnter(".d-modal", "ctrlKey");
|
||||
assert
|
||||
.dom(".d-modal")
|
||||
.exists("The modal wasn't closed because the accept button was disabled");
|
||||
|
||||
await click("#radio_inappropriate"); // this enables the accept button
|
||||
await pressEnter(modal, "ctrlKey");
|
||||
await pressEnter(".d-modal", "ctrlKey");
|
||||
assert.dom(".d-modal").doesNotExist("The modal was closed");
|
||||
});
|
||||
|
||||
|
@ -202,14 +201,13 @@ acceptance("flagging", function (needs) {
|
|||
await visit("/t/internationalization-localization/280");
|
||||
await openFlagModal();
|
||||
|
||||
const modal = query(".d-modal");
|
||||
await pressEnter(modal, "metaKey");
|
||||
await pressEnter(".d-modal", "metaKey");
|
||||
assert
|
||||
.dom(".d-modal")
|
||||
.exists("The modal wasn't closed because the accept button was disabled");
|
||||
|
||||
await click("#radio_inappropriate"); // this enables the accept button
|
||||
await pressEnter(modal, "ctrlKey");
|
||||
await pressEnter(".d-modal", "ctrlKey");
|
||||
assert.dom(".d-modal").doesNotExist("The modal was closed");
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
import { visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
acceptance("Image aspect ratio", function () {
|
||||
test("it applies the aspect ratio", async function (assert) {
|
||||
test("applies the aspect ratio", async function (assert) {
|
||||
await visit("/t/2480");
|
||||
const image = query("#post_3 img[src='/assets/logo.png']");
|
||||
|
||||
assert.strictEqual(image.style.aspectRatio, "690 / 388");
|
||||
assert
|
||||
.dom("#post_3 img[src='/assets/logo.png']")
|
||||
.hasStyle({ aspectRatio: "690 / 388" });
|
||||
});
|
||||
});
|
||||
|
|
|
@ -4,7 +4,6 @@ import pretender, { response } from "discourse/tests/helpers/create-pretender";
|
|||
import {
|
||||
acceptance,
|
||||
publishToMessageBus,
|
||||
query,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { cloneJSON } from "discourse-common/lib/object";
|
||||
import topicFixtures from "../fixtures/topic";
|
||||
|
@ -52,13 +51,9 @@ acceptance("Post inline mentions", function (needs) {
|
|||
assert
|
||||
.dom(".topic-post .cooked .mention .user-status-message")
|
||||
.exists("user status is shown");
|
||||
const statusElement = query(
|
||||
".topic-post .cooked .mention .user-status-message img"
|
||||
);
|
||||
assert.true(
|
||||
statusElement.src.includes(status.emoji),
|
||||
"status emoji is correct"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-post .cooked .mention .user-status-message img")
|
||||
.hasAttribute("src", /surfing_man/, "status emoji is correct");
|
||||
});
|
||||
|
||||
test("inserts user status on message bus message", async function (assert) {
|
||||
|
@ -81,13 +76,9 @@ acceptance("Post inline mentions", function (needs) {
|
|||
assert
|
||||
.dom(".topic-post .cooked .mention .user-status-message")
|
||||
.exists("user status is shown");
|
||||
const statusElement = query(
|
||||
".topic-post .cooked .mention .user-status-message img"
|
||||
);
|
||||
assert.true(
|
||||
statusElement.src.includes(status.emoji),
|
||||
"status emoji is correct"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-post .cooked .mention .user-status-message img")
|
||||
.hasAttribute("src", /surfing_man/, "status emoji is correct");
|
||||
});
|
||||
|
||||
test("updates user status on message bus message", async function (assert) {
|
||||
|
@ -114,13 +105,9 @@ acceptance("Post inline mentions", function (needs) {
|
|||
assert
|
||||
.dom(".topic-post .cooked .mention .user-status-message")
|
||||
.exists("updated user status is shown");
|
||||
const statusElement = query(
|
||||
".topic-post .cooked .mention .user-status-message img"
|
||||
);
|
||||
assert.true(
|
||||
statusElement.src.includes(newStatus.emoji),
|
||||
"updated status emoji is correct"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-post .cooked .mention .user-status-message img")
|
||||
.hasAttribute("src", /tooth/, "updated status emoji is correct");
|
||||
});
|
||||
|
||||
test("removes user status on message bus message", async function (assert) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { click, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
acceptance("Post Table Wrapper Test", function () {
|
||||
test("fullscreen table wrapper appears on post with large table", async function (assert) {
|
||||
|
@ -16,7 +16,7 @@ acceptance("Post Table Wrapper Test", function () {
|
|||
)
|
||||
.exists("buttons for the table wrapper appear inside a separate div");
|
||||
|
||||
const fullscreenButtonWrapper = query(
|
||||
const fullscreenButtonWrapper = document.querySelector(
|
||||
`${postWithLargeTable} .fullscreen-table-wrapper .fullscreen-table-wrapper__buttons`
|
||||
);
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@ import {
|
|||
import { test } from "qunit";
|
||||
import {
|
||||
acceptance,
|
||||
query,
|
||||
updateCurrentUser,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
|
@ -55,7 +54,7 @@ acceptance("User Preferences", function (needs) {
|
|||
assert.dom(".saved").doesNotExist("it hasn't been saved yet");
|
||||
await click(".save-changes");
|
||||
assert.dom(".saved").exists("it displays the saved message");
|
||||
query(".saved").remove();
|
||||
document.querySelector(".saved").remove();
|
||||
};
|
||||
|
||||
await fillIn(".pref-name input[type=text]", "Jon Snow");
|
||||
|
|
|
@ -11,11 +11,7 @@ import { test } from "qunit";
|
|||
import { DEFAULT_TYPE_FILTER } from "discourse/components/search-menu";
|
||||
import { withPluginApi } from "discourse/lib/plugin-api";
|
||||
import searchFixtures from "discourse/tests/fixtures/search-fixtures";
|
||||
import {
|
||||
acceptance,
|
||||
query,
|
||||
queryAll,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -349,7 +345,7 @@ acceptance("Search - Anonymous", function (needs) {
|
|||
.doesNotExist("search context indicator is no longer visible");
|
||||
|
||||
await fillIn("#search-term", "dev");
|
||||
await query("#search-term").focus();
|
||||
focus("#search-term");
|
||||
await triggerKeyEvent(document.activeElement, "keyup", "ArrowDown");
|
||||
await triggerKeyEvent(document.activeElement, "keydown", "ArrowDown");
|
||||
await click(document.activeElement);
|
||||
|
@ -359,7 +355,7 @@ acceptance("Search - Anonymous", function (needs) {
|
|||
.exists("search context indicator is visible");
|
||||
|
||||
await fillIn("#search-term", "");
|
||||
await query("#search-term").focus();
|
||||
focus("#search-term");
|
||||
await triggerKeyEvent("#search-term", "keyup", "Backspace");
|
||||
|
||||
assert
|
||||
|
@ -548,9 +544,7 @@ acceptance("Search - Authenticated", function (needs) {
|
|||
assert.dom(`${container} ul li`).exists("has a list of items");
|
||||
|
||||
await triggerKeyEvent("#search-term", "keyup", "Enter");
|
||||
assert
|
||||
.dom(query(`${container} .search-result-topic`))
|
||||
.exists("has topic results");
|
||||
assert.dom(`${container} .search-result-topic`).exists("has topic results");
|
||||
|
||||
await triggerKeyEvent("#search-term", "keyup", "ArrowDown");
|
||||
assert
|
||||
|
@ -576,11 +570,9 @@ acceptance("Search - Authenticated", function (needs) {
|
|||
);
|
||||
|
||||
await triggerKeyEvent("#search-term", "keydown", "Escape");
|
||||
assert.strictEqual(
|
||||
document.activeElement,
|
||||
query("#search-button"),
|
||||
"Escaping search returns focus to search button"
|
||||
);
|
||||
assert
|
||||
.dom("#search-button")
|
||||
.isFocused("Escaping search returns focus to search button");
|
||||
assert.dom(".search-menu").doesNotExist("Esc removes search dropdown");
|
||||
|
||||
await click("#search-button");
|
||||
|
@ -593,16 +585,14 @@ acceptance("Search - Authenticated", function (needs) {
|
|||
);
|
||||
|
||||
await triggerKeyEvent("#search-term", "keyup", "Enter");
|
||||
assert
|
||||
.dom(query(`${container} .search-result-topic`))
|
||||
.exists("has topic results");
|
||||
assert.dom(`${container} .search-result-topic`).exists("has topic results");
|
||||
|
||||
await triggerKeyEvent("#search-term", "keyup", "Enter");
|
||||
assert
|
||||
.dom(query(`.search-container`))
|
||||
.dom(".search-container")
|
||||
.exists("second Enter hit goes to full page search");
|
||||
assert
|
||||
.dom(query(`.search-menu`))
|
||||
.dom(".search-menu")
|
||||
.doesNotExist("search dropdown is collapsed after second Enter hit");
|
||||
|
||||
// new search launched, Enter key should be reset
|
||||
|
@ -628,9 +618,9 @@ acceptance("Search - Authenticated", function (needs) {
|
|||
.hasValue(/a link/, "still has the original composer content");
|
||||
|
||||
assert.true(
|
||||
query(".d-editor-input").value.includes(
|
||||
searchFixtures["search/query"].topics[0].slug
|
||||
),
|
||||
document
|
||||
.querySelector(".d-editor-input")
|
||||
.value.includes(searchFixtures["search/query"].topics[0].slug),
|
||||
"adds link from search to composer"
|
||||
);
|
||||
});
|
||||
|
@ -1164,7 +1154,7 @@ acceptance("Search - assistant", function (needs) {
|
|||
assert.dom(".btn.search-context").exists("shows the button");
|
||||
|
||||
await fillIn("#search-term", "");
|
||||
await query("input#search-term").focus();
|
||||
focus("input#search-term");
|
||||
await triggerKeyEvent("input#search-term", "keyup", "Backspace");
|
||||
|
||||
assert.dom(".btn.search-context").doesNotExist("removes the button");
|
||||
|
@ -1176,7 +1166,7 @@ acceptance("Search - assistant", function (needs) {
|
|||
.exists("shows the button when reinvoking search");
|
||||
|
||||
await fillIn("#search-term", "emoji");
|
||||
await query("input#search-term").focus();
|
||||
focus("input#search-term");
|
||||
await triggerKeyEvent("#search-term", "keyup", "Enter");
|
||||
|
||||
assert
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { click, currentURL, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import CategoryFixtures from "discourse/tests/fixtures/category-fixtures";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -38,10 +38,10 @@ acceptance("Share and Invite modal", function (needs) {
|
|||
.doesNotExist("it does not show the alert with restricted groups");
|
||||
|
||||
assert.true(
|
||||
query("input.invite-link").value.includes(
|
||||
"/t/internationalization-localization/280?u=eviltrout"
|
||||
),
|
||||
"it shows the topic sharing url"
|
||||
document
|
||||
.querySelector("input.invite-link")
|
||||
.value.includes("/t/internationalization-localization/280?u=eviltrout"),
|
||||
"shows the topic sharing url"
|
||||
);
|
||||
|
||||
assert
|
||||
|
@ -128,8 +128,10 @@ acceptance("Share url with badges disabled - desktop", function (needs) {
|
|||
await click("#topic-footer-button-share-and-invite");
|
||||
|
||||
assert.false(
|
||||
query("input.invite-link").value.includes("?u=eviltrout"),
|
||||
"it doesn't add the username param when badges are disabled"
|
||||
document
|
||||
.querySelector("input.invite-link")
|
||||
.value.includes("?u=eviltrout"),
|
||||
"doesn't add the username param when badges are disabled"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
@ -149,8 +151,10 @@ acceptance("With username in share links disabled - desktop", function (needs) {
|
|||
await click("#topic-footer-button-share-and-invite");
|
||||
|
||||
assert.false(
|
||||
query("input.invite-link").value.includes("?u=eviltrout"),
|
||||
"it doesn't add the username param when username in share links are disabled"
|
||||
document
|
||||
.querySelector("input.invite-link")
|
||||
.value.includes("?u=eviltrout"),
|
||||
"doesn't add the username param when username in share links are disabled"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -7,7 +7,6 @@ import topFixtures from "discourse/tests/fixtures/top-fixtures";
|
|||
import {
|
||||
acceptance,
|
||||
publishToMessageBus,
|
||||
query,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { cloneJSON } from "discourse-common/lib/object";
|
||||
|
@ -142,20 +141,20 @@ acceptance("Topic Discovery", function (needs) {
|
|||
|
||||
test("switching between tabs", async function (assert) {
|
||||
await visit("/latest");
|
||||
assert.strictEqual(
|
||||
query(".topic-list-body .topic-list-item:first-of-type").dataset.topicId,
|
||||
"11557",
|
||||
"shows the correct latest topics"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-list-body .topic-list-item:first-of-type")
|
||||
.hasAttribute(
|
||||
"data-topic-id",
|
||||
"11557",
|
||||
"shows the correct latest topics"
|
||||
);
|
||||
|
||||
await click(".navigation-container a[href='/hot']");
|
||||
assert.strictEqual(currentURL(), "/hot", "switches to hot");
|
||||
|
||||
assert.deepEqual(
|
||||
query(".topic-list-body .topic-list-item:first-of-type").dataset.topicId,
|
||||
"13088",
|
||||
"shows the correct hot topics"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-list-body .topic-list-item:first-of-type")
|
||||
.hasAttribute("data-topic-id", "13088", "shows the correct hot topics");
|
||||
|
||||
await click(".navigation-container a[href='/categories']");
|
||||
assert.strictEqual(currentURL(), "/categories", "switches to categories");
|
||||
|
@ -164,13 +163,16 @@ acceptance("Topic Discovery", function (needs) {
|
|||
test("refreshing tabs", async function (assert) {
|
||||
const assertShowingLatest = (url) => {
|
||||
assert.strictEqual(currentURL(), url, "stays on latest");
|
||||
const el = query(".topic-list-body .topic-list-item:first-of-type");
|
||||
assert.strictEqual(el.closest(".hidden"), null, "topic list is visible");
|
||||
assert.strictEqual(
|
||||
el.dataset.topicId,
|
||||
"11557",
|
||||
"shows the correct topic"
|
||||
document
|
||||
.querySelector(".topic-list-body .topic-list-item:first-of-type")
|
||||
.closest(".hidden"),
|
||||
null,
|
||||
"topic list is visible"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-list-body .topic-list-item:first-of-type")
|
||||
.hasAttribute("data-topic-id", "11557", "shows the correct topic");
|
||||
};
|
||||
|
||||
await visit("/latest");
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
import { click, triggerKeyEvent, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import topicFixtures from "discourse/tests/fixtures/topic";
|
||||
import {
|
||||
acceptance,
|
||||
query,
|
||||
selectText,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance, selectText } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { cloneJSON } from "discourse-common/lib/object";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -82,12 +78,12 @@ acceptance("Closed Topic - Quote button - logged in", function (needs) {
|
|||
assert.dom(".insert-quote").exists("shows the quote button");
|
||||
|
||||
await click(".insert-quote");
|
||||
assert.true(
|
||||
query(".d-editor-input")
|
||||
.value.trim()
|
||||
.startsWith("Continuing the discussion from"),
|
||||
"quote action defaults to reply as new topic (since topic is closed)"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasValue(
|
||||
/^\s*Continuing the discussion from/,
|
||||
"quote action defaults to reply as new topic (since topic is closed)"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@ import {
|
|||
acceptance,
|
||||
chromeTest,
|
||||
publishToMessageBus,
|
||||
query,
|
||||
selectText,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
|
@ -373,9 +372,9 @@ acceptance("Topic featured links", function (needs) {
|
|||
await click(".quote-button .insert-quote");
|
||||
|
||||
assert.true(
|
||||
query(".d-editor-input").value.includes(
|
||||
'quote="codinghorror said, post:3, topic:280"'
|
||||
)
|
||||
document
|
||||
.querySelector(".d-editor-input")
|
||||
.value.includes('quote="codinghorror said, post:3, topic:280"')
|
||||
);
|
||||
});
|
||||
|
||||
|
@ -385,9 +384,11 @@ acceptance("Topic featured links", function (needs) {
|
|||
await click(".quote-button .insert-quote");
|
||||
|
||||
assert.true(
|
||||
query(".d-editor-input").value.includes(
|
||||
'quote="A new topic with a link to another topic, post:3, topic:62"'
|
||||
)
|
||||
document
|
||||
.querySelector(".d-editor-input")
|
||||
.value.includes(
|
||||
'quote="A new topic with a link to another topic, post:3, topic:62"'
|
||||
)
|
||||
);
|
||||
});
|
||||
|
||||
|
@ -397,9 +398,9 @@ acceptance("Topic featured links", function (needs) {
|
|||
await click(".reply");
|
||||
|
||||
assert.true(
|
||||
query(".d-editor-input").value.includes(
|
||||
'quote="codinghorror said, post:3, topic:280"'
|
||||
)
|
||||
document
|
||||
.querySelector(".d-editor-input")
|
||||
.value.includes('quote="codinghorror said, post:3, topic:280"')
|
||||
);
|
||||
});
|
||||
|
||||
|
@ -413,9 +414,9 @@ acceptance("Topic featured links", function (needs) {
|
|||
await triggerKeyEvent(document, "keypress", "T");
|
||||
|
||||
assert.true(
|
||||
query(".d-editor-input").value.includes(
|
||||
'quote="codinghorror said, post:3, topic:280"'
|
||||
)
|
||||
document
|
||||
.querySelector(".d-editor-input")
|
||||
.value.includes('quote="codinghorror said, post:3, topic:280"')
|
||||
);
|
||||
}
|
||||
);
|
||||
|
@ -425,9 +426,9 @@ acceptance("Topic featured links", function (needs) {
|
|||
await selectText("#post_5 .cooked");
|
||||
await click(".quote-button .insert-quote");
|
||||
assert.true(
|
||||
query(".d-editor-input").value.includes(
|
||||
'quote="pekka, post:5, topic:280, full:true"'
|
||||
)
|
||||
document
|
||||
.querySelector(".d-editor-input")
|
||||
.value.includes('quote="pekka, post:5, topic:280, full:true"')
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -4,19 +4,16 @@ import TopicFixtures from "discourse/tests/fixtures/topic";
|
|||
import {
|
||||
acceptance,
|
||||
publishToMessageBus,
|
||||
query,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { cloneJSON } from "discourse-common/lib/object";
|
||||
|
||||
acceptance("Topic - User Status", function (needs) {
|
||||
const status = { emoji: "tooth", description: "off to dentist" };
|
||||
|
||||
needs.user();
|
||||
needs.pretender((server, helper) => {
|
||||
server.get("/t/299/1.json", () => {
|
||||
const response = cloneJSON(TopicFixtures["/t/299/1.json"]);
|
||||
response.post_stream.posts.forEach((post) => {
|
||||
post.user_status = status;
|
||||
post.user_status = { emoji: "tooth", description: "off to dentist" };
|
||||
|
||||
// we need the poster's name to be different from username
|
||||
// so when display_name_on_posts = true, both name and username will be shown:
|
||||
|
@ -50,7 +47,6 @@ acceptance("Topic - User Status", function (needs) {
|
|||
|
||||
acceptance("Topic - User Status - live updates", function (needs) {
|
||||
const userId = 1;
|
||||
const status = { emoji: "tooth", description: "off to dentist" };
|
||||
|
||||
needs.user();
|
||||
needs.pretender((server, helper) => {
|
||||
|
@ -72,12 +68,9 @@ acceptance("Topic - User Status - live updates", function (needs) {
|
|||
assert
|
||||
.dom(".topic-post .user-status-message")
|
||||
.exists({ count: 3 }, "all posts has user status");
|
||||
assert.true(
|
||||
query(".topic-post .user-status-message .emoji").src.includes(
|
||||
status.emoji
|
||||
),
|
||||
"status emoji is correct"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-post .user-status-message .emoji")
|
||||
.hasAttribute("src", /tooth/, "status emoji is correct");
|
||||
|
||||
const newStatus = { emoji: "surfing_man", description: "surfing" };
|
||||
await publishToMessageBus(`/user-status`, { [userId]: newStatus });
|
||||
|
@ -85,12 +78,9 @@ acceptance("Topic - User Status - live updates", function (needs) {
|
|||
assert
|
||||
.dom(".topic-post .user-status-message")
|
||||
.exists({ count: 3 }, "all posts has user status");
|
||||
assert.true(
|
||||
query(".topic-post .user-status-message .emoji").src.includes(
|
||||
newStatus.emoji
|
||||
),
|
||||
"status emoji is correct"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-post .user-status-message .emoji")
|
||||
.hasAttribute("src", /surfing_man/, "status emoji is correct");
|
||||
});
|
||||
|
||||
test("removing status and setting again", async function (assert) {
|
||||
|
@ -100,12 +90,9 @@ acceptance("Topic - User Status - live updates", function (needs) {
|
|||
assert
|
||||
.dom(".topic-post .user-status-message")
|
||||
.exists({ count: 3 }, "all posts has user status");
|
||||
assert.true(
|
||||
query(".topic-post .user-status-message .emoji").src.includes(
|
||||
status.emoji
|
||||
),
|
||||
"status emoji is correct"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-post .user-status-message .emoji")
|
||||
.hasAttribute("src", /tooth/, "status emoji is correct");
|
||||
|
||||
await publishToMessageBus(`/user-status`, { [userId]: null });
|
||||
|
||||
|
@ -119,11 +106,8 @@ acceptance("Topic - User Status - live updates", function (needs) {
|
|||
assert
|
||||
.dom(".topic-post .user-status-message")
|
||||
.exists({ count: 3 }, "all posts have user status");
|
||||
assert.true(
|
||||
query(".topic-post .user-status-message .emoji").src.includes(
|
||||
newStatus.emoji
|
||||
),
|
||||
"status emoji is correct"
|
||||
);
|
||||
assert
|
||||
.dom(".topic-post .user-status-message .emoji")
|
||||
.hasAttribute("src", /surfing_man/, "status emoji is correct");
|
||||
});
|
||||
});
|
||||
|
|
|
@ -19,7 +19,6 @@ import {
|
|||
acceptance,
|
||||
loggedInUser,
|
||||
publishToMessageBus,
|
||||
query,
|
||||
queryAll,
|
||||
updateCurrentUser,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
|
@ -296,34 +295,28 @@ acceptance("User menu", function (needs) {
|
|||
expectedTabOrder,
|
||||
"data-tab-number of the tabs has no gaps when custom tabs are added and the tabs are in the right order"
|
||||
);
|
||||
assert.strictEqual(
|
||||
query(".tabs-list.bottom-tabs .btn").dataset.tabNumber,
|
||||
"9",
|
||||
"bottom tab has the correct data-tab-number"
|
||||
);
|
||||
assert
|
||||
.dom(".tabs-list.bottom-tabs .btn")
|
||||
.hasAttribute(
|
||||
"data-tab-number",
|
||||
"9",
|
||||
"bottom tab has the correct data-tab-number"
|
||||
);
|
||||
|
||||
let customTab1Bubble = query(
|
||||
"#user-menu-button-custom-tab-1 .badge-notification"
|
||||
);
|
||||
assert
|
||||
.dom("#user-menu-button-custom-tab-1 .badge-notification")
|
||||
.hasText("73", "bubble shows the right count");
|
||||
|
||||
assert.dom(customTab1Bubble).hasText("73", "bubble shows the right count");
|
||||
|
||||
const customTab2Bubble = query(
|
||||
"#user-menu-button-custom-tab-2 .badge-notification"
|
||||
);
|
||||
|
||||
assert.dom(customTab2Bubble).hasText("29", "bubble shows the right count");
|
||||
assert
|
||||
.dom("#user-menu-button-custom-tab-2 .badge-notification")
|
||||
.hasText("29", "bubble shows the right count");
|
||||
|
||||
await publishToMessageBus(`/notification/${loggedInUser().id}`, {
|
||||
unread_high_priority_notifications: 18,
|
||||
});
|
||||
|
||||
customTab1Bubble = query(
|
||||
"#user-menu-button-custom-tab-1 .badge-notification"
|
||||
);
|
||||
|
||||
assert
|
||||
.dom(customTab1Bubble)
|
||||
.dom("#user-menu-button-custom-tab-1 .badge-notification")
|
||||
.hasText(
|
||||
"18",
|
||||
"displayed bubble count updates when the value is changed"
|
||||
|
@ -421,43 +414,49 @@ acceptance("User menu", function (needs) {
|
|||
await click(".d-header-icons .current-user button");
|
||||
await click("#user-menu-button-profile");
|
||||
|
||||
const summaryLink = query("#quick-access-profile ul li.summary a");
|
||||
assert.true(
|
||||
summaryLink.href.endsWith("/u/eviltrout/summary"),
|
||||
"has a link to the summary page of the user"
|
||||
);
|
||||
assert
|
||||
.dom(summaryLink)
|
||||
.dom("#quick-access-profile ul li.summary a")
|
||||
.hasAttribute(
|
||||
"href",
|
||||
/\/u\/eviltrout\/summary$/,
|
||||
"has a link to the summary page of the user"
|
||||
);
|
||||
assert
|
||||
.dom("#quick-access-profile ul li.summary a")
|
||||
.hasText(i18n("user.summary.title"), "summary link has the right label");
|
||||
assert
|
||||
.dom(".d-icon-user", summaryLink)
|
||||
.dom("#quick-access-profile ul li.summary a .d-icon-user")
|
||||
.exists("summary link has the right icon");
|
||||
|
||||
const activityLink = query("#quick-access-profile ul li.activity a");
|
||||
assert.true(
|
||||
activityLink.href.endsWith("/u/eviltrout/activity"),
|
||||
"has a link to the activity page of the user"
|
||||
);
|
||||
assert
|
||||
.dom(activityLink)
|
||||
.dom("#quick-access-profile ul li.activity a")
|
||||
.hasAttribute(
|
||||
"href",
|
||||
/\/u\/eviltrout\/activity$/,
|
||||
"has a link to the activity page of the user"
|
||||
);
|
||||
assert
|
||||
.dom("#quick-access-profile ul li.activity a")
|
||||
.hasText(
|
||||
i18n("user.activity_stream"),
|
||||
"activity link has the right label"
|
||||
);
|
||||
assert
|
||||
.dom(".d-icon-bars-staggered", activityLink)
|
||||
.dom("#quick-access-profile ul li.activity a .d-icon-bars-staggered")
|
||||
.exists("activity link has the right icon");
|
||||
|
||||
const invitesLink = query("#quick-access-profile ul li.invites a");
|
||||
assert.true(
|
||||
invitesLink.href.endsWith("/u/eviltrout/invited"),
|
||||
"has a link to the invites page of the user"
|
||||
);
|
||||
assert
|
||||
.dom(invitesLink)
|
||||
.dom("#quick-access-profile ul li.invites a")
|
||||
.hasAttribute(
|
||||
"href",
|
||||
/\/u\/eviltrout\/invited$/,
|
||||
"has a link to the invites page of the user"
|
||||
);
|
||||
assert
|
||||
.dom("#quick-access-profile ul li.invites a")
|
||||
.hasText(i18n("user.invited.title"), "invites link has the right label");
|
||||
assert
|
||||
.dom(".d-icon-user-plus", invitesLink)
|
||||
.dom("#quick-access-profile ul li.invites a .d-icon-user-plus")
|
||||
.exists("invites link has the right icon");
|
||||
|
||||
await clickOutside();
|
||||
|
@ -470,47 +469,48 @@ acceptance("User menu", function (needs) {
|
|||
.dom("#quick-access-profile ul li.invites")
|
||||
.doesNotExist("invites link not shown when the user can't invite");
|
||||
|
||||
const draftsLink = query("#quick-access-profile ul li.drafts a");
|
||||
assert.true(
|
||||
draftsLink.href.endsWith("/u/eviltrout/activity/drafts"),
|
||||
"has a link to the drafts page of the user"
|
||||
);
|
||||
assert
|
||||
.dom(draftsLink)
|
||||
.dom("#quick-access-profile ul li.drafts a")
|
||||
.hasAttribute(
|
||||
"href",
|
||||
/\/u\/eviltrout\/activity\/drafts$/,
|
||||
"has a link to the drafts page of the user"
|
||||
);
|
||||
assert
|
||||
.dom("#quick-access-profile ul li.drafts a")
|
||||
.hasText(
|
||||
i18n("drafts.label_with_count", { count: 13 }),
|
||||
"drafts link has the right label with count of the user's drafts"
|
||||
);
|
||||
assert
|
||||
.dom(".d-icon-user_menu\\.drafts", draftsLink)
|
||||
.dom("#quick-access-profile ul li.drafts a .d-icon-user_menu\\.drafts")
|
||||
.exists("drafts link has the right icon");
|
||||
|
||||
const preferencesLink = query("#quick-access-profile ul li.preferences a");
|
||||
assert.true(
|
||||
preferencesLink.href.endsWith("/u/eviltrout/preferences"),
|
||||
"has a link to the preferences page of the user"
|
||||
);
|
||||
assert
|
||||
.dom(preferencesLink)
|
||||
.dom("#quick-access-profile ul li.preferences a")
|
||||
.hasAttribute(
|
||||
"href",
|
||||
/\/u\/eviltrout\/preferences$/,
|
||||
"has a link to the preferences page of the user"
|
||||
);
|
||||
assert
|
||||
.dom("#quick-access-profile ul li.preferences a")
|
||||
.hasText(
|
||||
i18n("user.preferences.title"),
|
||||
"preferences link has the right label"
|
||||
);
|
||||
assert
|
||||
.dom(".d-icon-gear", preferencesLink)
|
||||
.dom("#quick-access-profile ul li.preferences a .d-icon-gear")
|
||||
.exists("preferences link has the right icon");
|
||||
|
||||
let doNotDisturbButton = query(
|
||||
"#quick-access-profile ul li.do-not-disturb .btn"
|
||||
);
|
||||
assert
|
||||
.dom(doNotDisturbButton)
|
||||
.dom("#quick-access-profile ul li.do-not-disturb .btn")
|
||||
.hasText(
|
||||
i18n("pause_notifications.label"),
|
||||
"Do Not Disturb button has the right label"
|
||||
);
|
||||
assert
|
||||
.dom(".d-icon-toggle-off", doNotDisturbButton)
|
||||
.dom("#quick-access-profile ul li.do-not-disturb .btn .d-icon-toggle-off")
|
||||
.exists("Do Not Disturb button has the right icon");
|
||||
|
||||
await clickOutside();
|
||||
|
@ -520,17 +520,14 @@ acceptance("User menu", function (needs) {
|
|||
await click(".d-header-icons .current-user button");
|
||||
await click("#user-menu-button-profile");
|
||||
|
||||
doNotDisturbButton = query(
|
||||
"#quick-access-profile ul li.do-not-disturb .btn"
|
||||
);
|
||||
assert
|
||||
.dom(doNotDisturbButton)
|
||||
.dom("#quick-access-profile ul li.do-not-disturb .btn")
|
||||
.hasText(
|
||||
`${i18n("pause_notifications.label")} 2h`,
|
||||
"Do Not Disturb button has the right label when Do Not Disturb is enabled"
|
||||
);
|
||||
assert
|
||||
.dom(".d-icon-toggle-on", doNotDisturbButton)
|
||||
.dom("#quick-access-profile ul li.do-not-disturb .btn .d-icon-toggle-on")
|
||||
.exists(
|
||||
"Do Not Disturb button has the right icon when Do Not Disturb is enabled"
|
||||
);
|
||||
|
@ -538,17 +535,16 @@ acceptance("User menu", function (needs) {
|
|||
assert
|
||||
.dom("#quick-access-profile ul li.enable-anonymous .btn")
|
||||
.exists("toggle anon button is shown");
|
||||
let toggleAnonButton = query(
|
||||
"#quick-access-profile ul li.enable-anonymous .btn"
|
||||
);
|
||||
assert
|
||||
.dom(toggleAnonButton)
|
||||
.dom("#quick-access-profile ul li.enable-anonymous .btn")
|
||||
.hasText(
|
||||
i18n("switch_to_anon"),
|
||||
"toggle anonymous button has the right label when the user isn't anonymous"
|
||||
);
|
||||
assert
|
||||
.dom(".d-icon-user-secret", toggleAnonButton)
|
||||
.dom(
|
||||
"#quick-access-profile ul li.enable-anonymous .btn .d-icon-user-secret"
|
||||
)
|
||||
.exists(
|
||||
"toggle anonymous button has the right icon when the user isn't anonymous"
|
||||
);
|
||||
|
@ -558,17 +554,14 @@ acceptance("User menu", function (needs) {
|
|||
await click(".d-header-icons .current-user button");
|
||||
await click("#user-menu-button-profile");
|
||||
|
||||
toggleAnonButton = query(
|
||||
"#quick-access-profile ul li.disable-anonymous .btn"
|
||||
);
|
||||
assert
|
||||
.dom(toggleAnonButton)
|
||||
.dom("#quick-access-profile ul li.disable-anonymous .btn")
|
||||
.hasText(
|
||||
i18n("switch_from_anon"),
|
||||
"toggle anonymous button has the right label when the user is anonymous"
|
||||
);
|
||||
assert
|
||||
.dom(".d-icon-ban", toggleAnonButton)
|
||||
.dom("#quick-access-profile ul li.disable-anonymous .btn .d-icon-ban")
|
||||
.exists(
|
||||
"toggle anonymous button has the right icon when the user is anonymous"
|
||||
);
|
||||
|
@ -658,12 +651,11 @@ acceptance("User menu", function (needs) {
|
|||
"toggle anon button is not shown if the user is not allowed to post anonymously"
|
||||
);
|
||||
|
||||
const logoutButton = query("#quick-access-profile ul li.logout .btn");
|
||||
assert
|
||||
.dom(logoutButton)
|
||||
.dom("#quick-access-profile ul li.logout .btn")
|
||||
.hasText(i18n("user.log_out"), "logout button has the right label");
|
||||
assert
|
||||
.dom(".d-icon-right-from-bracket", logoutButton)
|
||||
.dom("#quick-access-profile ul li.logout .btn .d-icon-right-from-bracket")
|
||||
.exists("logout button has the right icon");
|
||||
});
|
||||
|
||||
|
@ -687,25 +679,27 @@ acceptance("User menu", function (needs) {
|
|||
await click(".d-header-icons .current-user button");
|
||||
await click("#user-menu-button-profile");
|
||||
|
||||
const item1 = query("#quick-access-profile ul li.test-1-item");
|
||||
|
||||
assert
|
||||
.dom(".d-icon-wrench", item1)
|
||||
.dom("#quick-access-profile ul li.test-1-item .d-icon-wrench")
|
||||
.exists("The first item's icon is rendered");
|
||||
assert.true(
|
||||
item1.querySelector("a").href.endsWith("/test_1_path"),
|
||||
"The first item's link is present with correct href"
|
||||
);
|
||||
|
||||
const item2 = query("#quick-access-profile ul li.test-2-item");
|
||||
assert
|
||||
.dom("#quick-access-profile ul li.test-1-item a")
|
||||
.hasAttribute(
|
||||
"href",
|
||||
/\/test_1_path$/,
|
||||
"The first item's link is present with correct href"
|
||||
);
|
||||
|
||||
assert
|
||||
.dom(".d-icon", item2)
|
||||
.dom("#quick-access-profile ul li.test-2-item .d-icon")
|
||||
.doesNotExist("The second item doesn't have an icon");
|
||||
assert.true(
|
||||
item2.querySelector("a").href.endsWith("/test_2_path"),
|
||||
"The second item's link is present with correct href"
|
||||
);
|
||||
assert
|
||||
.dom("#quick-access-profile ul li.test-2-item a")
|
||||
.hasAttribute(
|
||||
"href",
|
||||
/\/test_2_path$/,
|
||||
"The second item's link is present with correct href"
|
||||
);
|
||||
});
|
||||
|
||||
test("the active tab can be clicked again to navigate to a page", async function (assert) {
|
||||
|
@ -1031,11 +1025,8 @@ acceptance("User menu - Dismiss button", function (needs) {
|
|||
await click(".d-header-icons .current-user button");
|
||||
|
||||
await click("#user-menu-button-other-notifications");
|
||||
let othersBadgeNotification = query(
|
||||
"#user-menu-button-other-notifications .badge-notification"
|
||||
);
|
||||
assert
|
||||
.dom(othersBadgeNotification)
|
||||
.dom("#user-menu-button-other-notifications .badge-notification")
|
||||
.hasText("4", "badge shows the right count");
|
||||
|
||||
await click(".user-menu .notifications-dismiss");
|
||||
|
|
|
@ -4,7 +4,7 @@ import cookie, { removeCookie } from "discourse/lib/cookie";
|
|||
import Session from "discourse/models/session";
|
||||
import Site from "discourse/models/site";
|
||||
import userFixtures from "discourse/tests/fixtures/user-fixtures";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -26,7 +26,7 @@ acceptance("User Preferences - Interface", function (needs) {
|
|||
assert.dom(".saved").doesNotExist("hasn't been saved yet");
|
||||
await click(".save-changes");
|
||||
assert.dom(".saved").exists("it displays the saved message");
|
||||
query(".saved").remove();
|
||||
document.querySelector(".saved").remove();
|
||||
};
|
||||
|
||||
await visit("/u/eviltrout/preferences/interface");
|
||||
|
@ -213,11 +213,13 @@ acceptance(
|
|||
|
||||
await visit("/u/eviltrout/preferences/interface");
|
||||
assert.dom(".light-color-scheme").exists("has light scheme dropdown");
|
||||
assert.strictEqual(
|
||||
query(".light-color-scheme .selected-name").dataset.value,
|
||||
session.userColorSchemeId.toString(),
|
||||
"user's selected color scheme is selected value in light scheme dropdown"
|
||||
);
|
||||
assert
|
||||
.dom(".light-color-scheme .selected-name")
|
||||
.hasAttribute(
|
||||
"data-value",
|
||||
session.userColorSchemeId.toString(),
|
||||
"user's selected color scheme is selected value in light scheme dropdown"
|
||||
);
|
||||
});
|
||||
|
||||
test("display 'Theme default' when default color scheme is not marked as selectable", async function (assert) {
|
||||
|
@ -264,17 +266,19 @@ acceptance(
|
|||
assert.dom(".saved").doesNotExist("hasn't been saved yet");
|
||||
await click(".save-changes");
|
||||
assert.dom(".saved").exists("displays the saved message");
|
||||
query(".saved").remove();
|
||||
document.querySelector(".saved").remove();
|
||||
};
|
||||
|
||||
await visit("/u/eviltrout/preferences/interface");
|
||||
assert.dom(".light-color-scheme").exists("has regular dropdown");
|
||||
assert.dom(".dark-color-scheme").exists("has dark color scheme dropdown");
|
||||
assert.strictEqual(
|
||||
query(".dark-color-scheme .selected-name").dataset.value,
|
||||
session.userDarkSchemeId.toString(),
|
||||
"sets site default as selected dark scheme"
|
||||
);
|
||||
assert
|
||||
.dom(".dark-color-scheme .selected-name")
|
||||
.hasAttribute(
|
||||
"data-value",
|
||||
session.userDarkSchemeId.toString(),
|
||||
"sets site default as selected dark scheme"
|
||||
);
|
||||
assert
|
||||
.dom(".control-group.dark-mode")
|
||||
.doesNotExist("does not show disable dark mode checkbox");
|
||||
|
|
|
@ -580,15 +580,24 @@ export function createFile(name, type = "image/png", blobData = null) {
|
|||
return file;
|
||||
}
|
||||
|
||||
export async function paste(element, text, otherClipboardData = {}) {
|
||||
let e = new Event("paste", { cancelable: true });
|
||||
export async function paste(selector, text, otherClipboardData = {}) {
|
||||
const e = new Event("paste", { cancelable: true });
|
||||
e.clipboardData = deepMerge({ getData: () => text }, otherClipboardData);
|
||||
|
||||
const element =
|
||||
typeof selector === "string" ? document.querySelector(selector) : selector;
|
||||
|
||||
element.dispatchEvent(e);
|
||||
|
||||
await settled();
|
||||
return e;
|
||||
}
|
||||
|
||||
export async function simulateKey(element, key) {
|
||||
if (typeof element === "string") {
|
||||
element = document.querySelector(element);
|
||||
}
|
||||
|
||||
if (key === "\b") {
|
||||
await triggerKeyEvent(element, "keydown", "Backspace");
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import { click, fillIn, render } from "@ember/test-helpers";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import ThemeSettingsEditor from "admin/components/theme-settings-editor";
|
||||
|
||||
module(
|
||||
|
@ -89,9 +88,11 @@ module(
|
|||
<ThemeSettingsEditor @model={{model}} />
|
||||
</template>);
|
||||
|
||||
query(".ace").aceEditor.session.doc.setValue(
|
||||
JSON.stringify([{ setting: "bar", value: "bar" }])
|
||||
);
|
||||
document
|
||||
.querySelector(".ace")
|
||||
.aceEditor.session.doc.setValue(
|
||||
JSON.stringify([{ setting: "bar", value: "bar" }])
|
||||
);
|
||||
await click("button#save");
|
||||
|
||||
assert
|
||||
|
@ -112,7 +113,7 @@ module(
|
|||
<ThemeSettingsEditor @model={{model}} />
|
||||
</template>);
|
||||
|
||||
query(".ace").aceEditor.session.doc.setValue(
|
||||
document.querySelector(".ace").aceEditor.session.doc.setValue(
|
||||
JSON.stringify([
|
||||
{ setting: "foo", value: "foo" },
|
||||
{ setting: "bar", value: "bar" },
|
||||
|
|
|
@ -13,7 +13,7 @@ import { withPluginApi } from "discourse/lib/plugin-api";
|
|||
import { setCaretPosition } from "discourse/lib/utilities";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import formatTextWithSelection from "discourse/tests/helpers/d-editor-helper";
|
||||
import { paste, query, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { paste, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import {
|
||||
getTextareaSelection,
|
||||
setTextareaSelection,
|
||||
|
@ -60,7 +60,8 @@ module("Integration | Component | d-editor", function (hooks) {
|
|||
assert.dom(".d-editor-preview").hasHtml("<p>zogstrip</p>");
|
||||
});
|
||||
|
||||
function jumpEnd(textarea) {
|
||||
function jumpEnd(selector) {
|
||||
const textarea = document.querySelector(selector);
|
||||
textarea.selectionStart = textarea.value.length;
|
||||
textarea.selectionEnd = textarea.value.length;
|
||||
return textarea;
|
||||
|
@ -77,7 +78,7 @@ module("Integration | Component | d-editor", function (hooks) {
|
|||
|
||||
await render(hbs`<DEditor @value={{this.value}} />`);
|
||||
|
||||
const textarea = jumpEnd(query("textarea.d-editor-input"));
|
||||
const textarea = jumpEnd("textarea.d-editor-input");
|
||||
await testFunc.call(this, assert, textarea);
|
||||
});
|
||||
}
|
||||
|
@ -90,7 +91,7 @@ module("Integration | Component | d-editor", function (hooks) {
|
|||
hbs`<DEditor @value={{this.value}} @composerEvents={{true}} />`
|
||||
);
|
||||
|
||||
const textarea = jumpEnd(query("textarea.d-editor-input"));
|
||||
const textarea = jumpEnd("textarea.d-editor-input");
|
||||
await testFunc.call(this, assert, textarea);
|
||||
});
|
||||
}
|
||||
|
@ -245,7 +246,7 @@ function xyz(x, y, z) {
|
|||
|
||||
await render(hbs`<DEditor @value={{this.value}} />`);
|
||||
|
||||
const textarea = query("textarea.d-editor-input");
|
||||
const textarea = document.querySelector("textarea.d-editor-input");
|
||||
textarea.selectionStart = 0;
|
||||
textarea.selectionEnd = textarea.value.length;
|
||||
|
||||
|
@ -267,7 +268,7 @@ function xyz(x, y, z) {
|
|||
|
||||
await render(hbs`<DEditor @value={{this.value}} />`);
|
||||
|
||||
const textarea = jumpEnd(query("textarea.d-editor-input"));
|
||||
const textarea = jumpEnd("textarea.d-editor-input");
|
||||
|
||||
await click("button.code");
|
||||
assert.strictEqual(this.value, ` ${i18n("composer.code_text")}`);
|
||||
|
@ -349,7 +350,7 @@ third line`
|
|||
|
||||
await render(hbs`<DEditor @value={{this.value}} />`);
|
||||
|
||||
const textarea = jumpEnd(query("textarea.d-editor-input"));
|
||||
const textarea = jumpEnd("textarea.d-editor-input");
|
||||
|
||||
await click("button.code");
|
||||
assert.strictEqual(
|
||||
|
@ -464,7 +465,7 @@ third line`
|
|||
hbs`<DEditor @value={{this.value}} @composerEvents={{true}} />`
|
||||
);
|
||||
|
||||
const textarea = jumpEnd(query("textarea.d-editor-input"));
|
||||
const textarea = jumpEnd("textarea.d-editor-input");
|
||||
|
||||
textarea.selectionStart = 0;
|
||||
|
||||
|
@ -485,7 +486,7 @@ third line`
|
|||
hbs`<DEditor @value={{this.value}} @composerEvents={{true}} />`
|
||||
);
|
||||
|
||||
const textarea = jumpEnd(query("textarea.d-editor-input"));
|
||||
const textarea = jumpEnd("textarea.d-editor-input");
|
||||
|
||||
textarea.selectionStart = 6;
|
||||
textarea.selectionEnd = 10;
|
||||
|
@ -681,7 +682,7 @@ third line`
|
|||
|
||||
await render(hbs`<DEditor @value={{this.value}} />`);
|
||||
|
||||
jumpEnd(query("textarea.d-editor-input"));
|
||||
jumpEnd("textarea.d-editor-input");
|
||||
await click("button.emoji");
|
||||
|
||||
await click(
|
||||
|
@ -695,7 +696,7 @@ third line`
|
|||
|
||||
await click("textarea.d-editor-input");
|
||||
await fillIn(".d-editor-input", "starting to type an emoji like :gri");
|
||||
jumpEnd(query("textarea.d-editor-input"));
|
||||
jumpEnd("textarea.d-editor-input");
|
||||
await click("button.emoji");
|
||||
|
||||
await click(
|
||||
|
@ -867,8 +868,7 @@ third line`
|
|||
hbs`<DEditor @value={{this.value}} @composerEvents={{true}} />`
|
||||
);
|
||||
|
||||
let element = query(".d-editor");
|
||||
await paste(element, "\ta\tb\n1\t2\t3");
|
||||
await paste(".d-editor", "\ta\tb\n1\t2\t3");
|
||||
assert.strictEqual(this.value, "||a|b|\n|---|---|---|\n|1|2|3|\n");
|
||||
|
||||
document.execCommand("undo");
|
||||
|
@ -883,8 +883,7 @@ third line`
|
|||
hbs`<DEditor @value={{this.value}} @composerEvents={{true}} />`
|
||||
);
|
||||
|
||||
let element = query(".d-editor");
|
||||
await paste(element, '\ta\tb\n1\t"2\n2.5"\t3');
|
||||
await paste(".d-editor", '\ta\tb\n1\t"2\n2.5"\t3');
|
||||
assert.strictEqual(this.value, "||a|b|\n|---|---|---|\n|1|2<br>2.5|3|\n");
|
||||
});
|
||||
|
||||
|
@ -893,13 +892,12 @@ third line`
|
|||
async function (assert, textarea) {
|
||||
this.set("value", "See discourse in action");
|
||||
setTextareaSelection(textarea, 4, 13);
|
||||
const element = query(".d-editor");
|
||||
const event = await paste(element, "https://www.discourse.org/");
|
||||
const event = await paste(".d-editor", "https://www.discourse.org/");
|
||||
assert.strictEqual(
|
||||
this.value,
|
||||
"See [discourse](https://www.discourse.org/) in action"
|
||||
);
|
||||
assert.strictEqual(event.defaultPrevented, true);
|
||||
assert.true(event.defaultPrevented);
|
||||
|
||||
document.execCommand("undo");
|
||||
assert.strictEqual(this.value, "See discourse in action");
|
||||
|
@ -911,11 +909,10 @@ third line`
|
|||
async function (assert, textarea) {
|
||||
this.set("value", "good morning");
|
||||
setTextareaSelection(textarea, 5, 12);
|
||||
const element = query(".d-editor");
|
||||
const event = await paste(element, "evening");
|
||||
const event = await paste(".d-editor", "evening");
|
||||
// Synthetic paste events do not manipulate document content.
|
||||
assert.strictEqual(this.value, "good morning");
|
||||
assert.strictEqual(event.defaultPrevented, false);
|
||||
assert.false(event.defaultPrevented);
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -924,11 +921,10 @@ third line`
|
|||
async function (assert, textarea) {
|
||||
this.set("value", "a link example:");
|
||||
jumpEnd(textarea);
|
||||
const element = query(".d-editor");
|
||||
const event = await paste(element, "https://www.discourse.org/");
|
||||
const event = await paste(".d-editor", "https://www.discourse.org/");
|
||||
// Synthetic paste events do not manipulate document content.
|
||||
assert.strictEqual(this.value, "a link example:");
|
||||
assert.strictEqual(event.defaultPrevented, false);
|
||||
assert.false(event.defaultPrevented);
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -937,14 +933,13 @@ third line`
|
|||
async function (assert, textarea) {
|
||||
this.set("value", "a link example:");
|
||||
setTextareaSelection(textarea, 0, 1);
|
||||
const element = query(".d-editor");
|
||||
const event = await paste(
|
||||
element,
|
||||
".d-editor",
|
||||
"Try out Discourse at: https://www.discourse.org/"
|
||||
);
|
||||
// Synthetic paste events do not manipulate document content.
|
||||
assert.strictEqual(this.value, "a link example:");
|
||||
assert.strictEqual(event.defaultPrevented, false);
|
||||
assert.false(event.defaultPrevented);
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -953,10 +948,9 @@ third line`
|
|||
async function (assert, textarea) {
|
||||
this.set("value", "team email");
|
||||
setTextareaSelection(textarea, 5, 10);
|
||||
const element = query(".d-editor");
|
||||
const event = await paste(element, "mailto:team@discourse.org");
|
||||
const event = await paste(".d-editor", "mailto:team@discourse.org");
|
||||
assert.strictEqual(this.value, "team [email](mailto:team@discourse.org)");
|
||||
assert.strictEqual(event.defaultPrevented, true);
|
||||
assert.true(event.defaultPrevented);
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -965,11 +959,10 @@ third line`
|
|||
async function (assert, textarea) {
|
||||
this.set("value", "Try https://www.discourse.org");
|
||||
setTextareaSelection(textarea, 0, 29);
|
||||
const element = query(".d-editor");
|
||||
const event = await paste(element, "https://www.discourse.com/");
|
||||
const event = await paste(".d-editor", "https://www.discourse.com/");
|
||||
// Synthetic paste events do not manipulate document content.
|
||||
assert.strictEqual(this.value, "Try https://www.discourse.org");
|
||||
assert.strictEqual(event.defaultPrevented, false);
|
||||
assert.false(event.defaultPrevented);
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -978,11 +971,10 @@ third line`
|
|||
async function (assert, textarea) {
|
||||
this.set("value", "hello [url=foobar]foobar[/url]");
|
||||
setTextareaSelection(textarea, 0, 30);
|
||||
const element = query(".d-editor");
|
||||
const event = await paste(element, "https://www.discourse.com/");
|
||||
const event = await paste(".d-editor", "https://www.discourse.com/");
|
||||
// Synthetic paste events do not manipulate document content.
|
||||
assert.strictEqual(this.value, "hello [url=foobar]foobar[/url]");
|
||||
assert.strictEqual(event.defaultPrevented, false);
|
||||
assert.false(event.defaultPrevented);
|
||||
}
|
||||
);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { render } from "@ember/test-helpers";
|
||||
import { fillIn, render, triggerEvent } from "@ember/test-helpers";
|
||||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
|
@ -24,8 +24,8 @@ module("Integration | Component | date-input", function (hooks) {
|
|||
hbs`<DateInput @date={{this.date}} @onChange={{this.onChange}} />`
|
||||
);
|
||||
|
||||
document.querySelector(".date-picker").value = "2019-01-02";
|
||||
document.querySelector(".date-picker").dispatchEvent(new Event("change"));
|
||||
fillIn(".date-picker", "2019-01-02");
|
||||
triggerEvent(".date-picker", "change");
|
||||
|
||||
assert.true(this.date.isSame(DEFAULT_DATE));
|
||||
});
|
||||
|
@ -38,8 +38,8 @@ module("Integration | Component | date-input", function (hooks) {
|
|||
hbs`<DateInput @date={{this.date}} @onChange={{this.onChange}} />`
|
||||
);
|
||||
|
||||
document.querySelector(".date-picker").value = "2019-02-02";
|
||||
document.querySelector(".date-picker").dispatchEvent(new Event("change"));
|
||||
fillIn(".date-picker", "2019-02-02");
|
||||
triggerEvent(".date-picker", "change");
|
||||
|
||||
assert.true(this.date.isSame(moment("2019-02-02")));
|
||||
});
|
||||
|
|
|
@ -2,25 +2,8 @@ import { fillIn, render } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
|
||||
function fromDateInput() {
|
||||
return query(".from.d-date-time-input .date-picker");
|
||||
}
|
||||
|
||||
function fromTimeInput() {
|
||||
return query(".from.d-date-time-input .d-time-input .combo-box-header");
|
||||
}
|
||||
|
||||
function toDateInput() {
|
||||
return query(".to.d-date-time-input .date-picker");
|
||||
}
|
||||
|
||||
function toTimeInput() {
|
||||
return query(".to.d-date-time-input .d-time-input .combo-box-header");
|
||||
}
|
||||
|
||||
const DEFAULT_DATE_TIME_STRING = "2019-01-29 14:45";
|
||||
const DEFAULT_DATE_TIME = moment(DEFAULT_DATE_TIME_STRING);
|
||||
|
||||
|
@ -34,21 +17,27 @@ module("Integration | Component | date-time-input-range", function (hooks) {
|
|||
hbs`<DateTimeInputRange @from={{this.state.from}} @to={{this.state.to}} @onChange={{fn (mut this.state)}} />`
|
||||
);
|
||||
|
||||
assert.dom(fromDateInput()).hasValue("2019-01-29");
|
||||
assert.strictEqual(fromTimeInput().dataset.name, "14:45");
|
||||
assert.dom(toDateInput()).hasNoValue();
|
||||
assert.strictEqual(toTimeInput().dataset.name, "--:--");
|
||||
assert.dom(".from.d-date-time-input .date-picker").hasValue("2019-01-29");
|
||||
assert
|
||||
.dom(".from.d-date-time-input .d-time-input .combo-box-header")
|
||||
.hasAttribute("data-name", "14:45");
|
||||
assert.dom(".to.d-date-time-input .date-picker").hasNoValue();
|
||||
assert
|
||||
.dom(".to.d-date-time-input .d-time-input .combo-box-header")
|
||||
.hasAttribute("data-name", "--:--");
|
||||
|
||||
await fillIn(toDateInput(), "2019-01-29");
|
||||
await fillIn(".to.d-date-time-input .date-picker", "2019-01-29");
|
||||
const toTimeSelectKit = selectKit(".to .d-time-input .select-kit");
|
||||
await toTimeSelectKit.expand();
|
||||
|
||||
let rows = toTimeSelectKit.rows();
|
||||
assert.dom(rows[0]).hasAttribute("data-name", "14:45");
|
||||
assert.dom(rows[rows.length - 1]).hasAttribute("data-name", "23:45");
|
||||
await toTimeSelectKit.collapse();
|
||||
|
||||
await fillIn(toDateInput(), "2019-01-30");
|
||||
await fillIn(".to.d-date-time-input .date-picker", "2019-01-30");
|
||||
await toTimeSelectKit.expand();
|
||||
|
||||
rows = toTimeSelectKit.rows();
|
||||
assert.dom(rows[0]).hasAttribute("data-name", "00:00");
|
||||
assert.dom(rows[rows.length - 1]).hasAttribute("data-name", "23:45");
|
||||
|
@ -61,9 +50,10 @@ module("Integration | Component | date-time-input-range", function (hooks) {
|
|||
hbs`<DateTimeInputRange @from={{this.state.from}} @to={{this.state.to}} @relativeDate={{this.state.from}} @onChange={{fn (mut this.state)}} />`
|
||||
);
|
||||
|
||||
await fillIn(toDateInput(), "2019-01-29");
|
||||
await fillIn(".to.d-date-time-input .date-picker", "2019-01-29");
|
||||
const toTimeSelectKit = selectKit(".to .d-time-input .select-kit");
|
||||
await toTimeSelectKit.expand();
|
||||
|
||||
let rows = toTimeSelectKit.rows();
|
||||
assert.dom(rows[4]).hasAttribute("data-name", "15:45");
|
||||
assert.dom(rows[5]).hasAttribute("data-name", "16:15");
|
||||
|
@ -81,12 +71,16 @@ module("Integration | Component | date-time-input-range", function (hooks) {
|
|||
hbs`<DateTimeInputRange @from={{this.state.from}} @to={{this.state.to}} @onChange={{fn (mut this.state)}} @timezone="Europe/Paris" />`
|
||||
);
|
||||
|
||||
assert.dom(fromDateInput()).hasValue("2019-01-29");
|
||||
assert.strictEqual(fromTimeInput().dataset.name, "14:45");
|
||||
assert.dom(toDateInput()).hasNoValue();
|
||||
assert.strictEqual(toTimeInput().dataset.name, "--:--");
|
||||
assert.dom(".from.d-date-time-input .date-picker").hasValue("2019-01-29");
|
||||
assert
|
||||
.dom(".from.d-date-time-input .d-time-input .combo-box-header")
|
||||
.hasAttribute("data-name", "14:45");
|
||||
assert.dom(".to.d-date-time-input .date-picker").hasNoValue();
|
||||
assert
|
||||
.dom(".to.d-date-time-input .d-time-input .combo-box-header")
|
||||
.hasAttribute("data-name", "--:--");
|
||||
|
||||
await fillIn(toDateInput(), "2019-01-29");
|
||||
await fillIn(".to.d-date-time-input .date-picker", "2019-01-29");
|
||||
const toTimeSelectKit = selectKit(".to .d-time-input .select-kit");
|
||||
await toTimeSelectKit.expand();
|
||||
await toTimeSelectKit.selectRowByName("19:15");
|
||||
|
|
|
@ -1,16 +1,7 @@
|
|||
import { render } from "@ember/test-helpers";
|
||||
import { fillIn, render, triggerEvent } from "@ember/test-helpers";
|
||||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
function dateInput() {
|
||||
return query(".date-picker");
|
||||
}
|
||||
|
||||
function timeInput() {
|
||||
return query(".d-time-input .combo-box-header");
|
||||
}
|
||||
|
||||
function setDate(date) {
|
||||
this.set("date", date);
|
||||
|
@ -26,8 +17,10 @@ module("Integration | Component | date-time-input", function (hooks) {
|
|||
|
||||
await render(hbs`<DateTimeInput @date={{this.date}} />`);
|
||||
|
||||
assert.dom(dateInput()).hasValue("2019-01-29");
|
||||
assert.strictEqual(timeInput().dataset.name, "14:45");
|
||||
assert.dom(".date-picker").hasValue("2019-01-29");
|
||||
assert
|
||||
.dom(".d-time-input .combo-box-header")
|
||||
.hasAttribute("data-name", "14:45");
|
||||
});
|
||||
|
||||
test("prevents mutations", async function (assert) {
|
||||
|
@ -35,7 +28,7 @@ module("Integration | Component | date-time-input", function (hooks) {
|
|||
|
||||
await render(hbs`<DateTimeInput @date={{this.date}} />`);
|
||||
|
||||
dateInput().value = "2019-01-02";
|
||||
await fillIn(".date-picker", "2019-01-02");
|
||||
|
||||
assert.true(this.date.isSame(DEFAULT_DATE_TIME));
|
||||
});
|
||||
|
@ -48,8 +41,8 @@ module("Integration | Component | date-time-input", function (hooks) {
|
|||
hbs`<DateTimeInput @date={{this.date}} @onChange={{this.onChange}} />`
|
||||
);
|
||||
|
||||
dateInput().value = "2019-01-02";
|
||||
dateInput().dispatchEvent(new Event("change"));
|
||||
await fillIn(".date-picker", "2019-01-02");
|
||||
await triggerEvent(".date-picker", "change");
|
||||
|
||||
assert.true(this.date.isSame(moment("2019-01-02 14:45")));
|
||||
});
|
||||
|
@ -74,12 +67,12 @@ module("Integration | Component | date-time-input", function (hooks) {
|
|||
await render(
|
||||
hbs`<DateTimeInput @date={{this.date}} @timezone={{this.timezone}} @onChange={{this.onChange}} />`
|
||||
);
|
||||
dateInput().dispatchEvent(new Event("change"));
|
||||
await triggerEvent(".date-picker", "change");
|
||||
assert.strictEqual(this.date.format(), "2023-05-05T12:00:00+01:00");
|
||||
|
||||
this.setProperties({ timezone: "Australia/Sydney" });
|
||||
|
||||
dateInput().dispatchEvent(new Event("change"));
|
||||
await triggerEvent(".date-picker", "change");
|
||||
assert.strictEqual(this.date.format(), "2023-05-05T12:00:00+10:00");
|
||||
});
|
||||
});
|
||||
|
|
|
@ -10,7 +10,6 @@ import { module, test } from "qunit";
|
|||
import GroupDeleteDialogMessage from "discourse/components/dialog-messages/group-delete";
|
||||
import SecondFactorConfirmPhrase from "discourse/components/dialog-messages/second-factor-confirm-phrase";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
module("Integration | Component | dialog-holder", function (hooks) {
|
||||
|
@ -30,7 +29,10 @@ module("Integration | Component | dialog-holder", function (hooks) {
|
|||
});
|
||||
await settled();
|
||||
|
||||
assert.true(query(".dialog-overlay").offsetWidth > 0, "overlay is visible");
|
||||
assert.true(
|
||||
document.querySelector(".dialog-overlay").offsetWidth > 0,
|
||||
"overlay is visible"
|
||||
);
|
||||
assert
|
||||
.dom(".dialog-body")
|
||||
.hasText("This is an error", "dialog has error message");
|
||||
|
@ -39,11 +41,9 @@ module("Integration | Component | dialog-holder", function (hooks) {
|
|||
await click(".dialog-overlay");
|
||||
|
||||
assert.dom("#dialog-holder").exists("element is still in DOM");
|
||||
assert.strictEqual(
|
||||
query(".dialog-overlay").offsetWidth,
|
||||
0,
|
||||
"overlay is not visible"
|
||||
);
|
||||
assert
|
||||
.dom(".dialog-overlay")
|
||||
.hasProperty("offsetWidth", 0, "overlay is not visible");
|
||||
assert.dom("#dialog-holder").hasNoText("dialog is empty");
|
||||
});
|
||||
|
||||
|
@ -61,7 +61,10 @@ module("Integration | Component | dialog-holder", function (hooks) {
|
|||
});
|
||||
await settled();
|
||||
|
||||
assert.true(query(".dialog-overlay").offsetWidth > 0, "overlay is visible");
|
||||
assert.true(
|
||||
document.querySelector(".dialog-overlay").offsetWidth > 0,
|
||||
"overlay is visible"
|
||||
);
|
||||
assert
|
||||
.dom(".dialog-body")
|
||||
.hasText("This is an error", "dialog has error message");
|
||||
|
@ -72,11 +75,9 @@ module("Integration | Component | dialog-holder", function (hooks) {
|
|||
assert.true(cancelCallbackCalled, "cancel callback called");
|
||||
assert.dom("#dialog-holder").exists("element is still in DOM");
|
||||
|
||||
assert.strictEqual(
|
||||
query(".dialog-overlay").offsetWidth,
|
||||
0,
|
||||
"overlay is not visible"
|
||||
);
|
||||
assert
|
||||
.dom(".dialog-overlay")
|
||||
.hasProperty("offsetWidth", 0, "overlay is not visible");
|
||||
|
||||
assert.dom("#dialog-holder").hasNoText("dialog is empty");
|
||||
});
|
||||
|
@ -106,11 +107,9 @@ module("Integration | Component | dialog-holder", function (hooks) {
|
|||
await click(".dialog-close");
|
||||
|
||||
assert.dom("#dialog-holder").exists("element is still in DOM");
|
||||
assert.strictEqual(
|
||||
query(".dialog-overlay").offsetWidth,
|
||||
0,
|
||||
"overlay is not visible"
|
||||
);
|
||||
assert
|
||||
.dom(".dialog-overlay")
|
||||
.hasProperty("offsetWidth", 0, "overlay is not visible");
|
||||
assert.dom("#dialog-holder").hasNoText("dialog is empty");
|
||||
});
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@ import { render } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
module(
|
||||
"Integration | Component | form-template-field | input",
|
||||
|
@ -33,10 +32,9 @@ module(
|
|||
.exists("a text input component exists");
|
||||
|
||||
assert.dom(".form-template-field__label").hasText("My text label");
|
||||
assert.strictEqual(
|
||||
query(".form-template-field__input").placeholder,
|
||||
"Enter text here"
|
||||
);
|
||||
assert
|
||||
.dom(".form-template-field__input")
|
||||
.hasAttribute("placeholder", "Enter text here");
|
||||
});
|
||||
|
||||
test("doesn't render a label when attribute is missing", async function (assert) {
|
||||
|
|
|
@ -2,7 +2,6 @@ import { render } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
module(
|
||||
"Integration | Component | form-template-field | textarea",
|
||||
|
@ -33,10 +32,9 @@ module(
|
|||
.exists("a textarea input component exists");
|
||||
|
||||
assert.dom(".form-template-field__label").hasText("My text label");
|
||||
assert.strictEqual(
|
||||
query(".form-template-field__textarea").placeholder,
|
||||
"Enter text here"
|
||||
);
|
||||
assert
|
||||
.dom(".form-template-field__textarea")
|
||||
.hasAttribute("placeholder", "Enter text here");
|
||||
});
|
||||
|
||||
test("doesn't render a label when attribute is missing", async function (assert) {
|
||||
|
|
|
@ -4,7 +4,6 @@ import { module, test } from "qunit";
|
|||
import HomeLogo from "discourse/components/header/home-logo";
|
||||
import { withPluginApi } from "discourse/lib/plugin-api";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
const bigLogo = "/images/d-logo-sketch.png?test";
|
||||
const smallLogo = "/images/d-logo-sketch-small.png?test";
|
||||
|
@ -178,12 +177,9 @@ module("Integration | Component | home-logo", function (hooks) {
|
|||
test("the home logo href url defaults to /", async function (assert) {
|
||||
await render(<template><HomeLogo @minimized={{false}} /></template>);
|
||||
|
||||
const anchorElement = query("#site-logo").closest("a");
|
||||
assert.strictEqual(
|
||||
anchorElement.getAttribute("href"),
|
||||
"/",
|
||||
"home logo href equals /"
|
||||
);
|
||||
assert
|
||||
.dom(".home-logo-wrapper-outlet a")
|
||||
.hasAttribute("href", "/", "home logo href equals /");
|
||||
});
|
||||
|
||||
test("api.registerHomeLogoHrefCallback can be used to change the logo href url", async function (assert) {
|
||||
|
@ -193,11 +189,12 @@ module("Integration | Component | home-logo", function (hooks) {
|
|||
|
||||
await render(<template><HomeLogo @minimized={{false}} /></template>);
|
||||
|
||||
const anchorElement = query("#site-logo").closest("a");
|
||||
assert.strictEqual(
|
||||
anchorElement.getAttribute("href"),
|
||||
"https://example.com",
|
||||
"home logo href equals the one set by the callback"
|
||||
);
|
||||
assert
|
||||
.dom(".home-logo-wrapper-outlet a")
|
||||
.hasAttribute(
|
||||
"href",
|
||||
"https://example.com",
|
||||
"home logo href equals the one set by the callback"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -2,7 +2,6 @@ import { render } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
module(
|
||||
"Integration | Component | consistent input/dropdown/button sizes",
|
||||
|
@ -15,13 +14,13 @@ module(
|
|||
);
|
||||
|
||||
assert.strictEqual(
|
||||
query(".btn:nth-child(1)").offsetHeight,
|
||||
query(".btn:nth-child(2)").offsetHeight,
|
||||
document.querySelector(".btn:nth-child(1)").offsetHeight,
|
||||
document.querySelector(".btn:nth-child(2)").offsetHeight,
|
||||
"have equal height"
|
||||
);
|
||||
assert.strictEqual(
|
||||
query(".btn:nth-child(1)").offsetHeight,
|
||||
query(".btn:nth-child(3)").offsetHeight,
|
||||
document.querySelector(".btn:nth-child(1)").offsetHeight,
|
||||
document.querySelector(".btn:nth-child(3)").offsetHeight,
|
||||
"have equal height"
|
||||
);
|
||||
});
|
||||
|
@ -32,8 +31,8 @@ module(
|
|||
);
|
||||
|
||||
assert.strictEqual(
|
||||
query("input").offsetHeight,
|
||||
query(".btn").offsetHeight,
|
||||
document.querySelector("input").offsetHeight,
|
||||
document.querySelector(".btn").offsetHeight,
|
||||
"have equal height"
|
||||
);
|
||||
});
|
||||
|
@ -44,8 +43,8 @@ module(
|
|||
);
|
||||
|
||||
assert.strictEqual(
|
||||
query("input").offsetHeight,
|
||||
query(".combo-box").offsetHeight,
|
||||
document.querySelector("input").offsetHeight,
|
||||
document.querySelector(".combo-box").offsetHeight,
|
||||
"have equal height"
|
||||
);
|
||||
});
|
||||
|
|
|
@ -3,7 +3,6 @@ import { render } from "@ember/test-helpers";
|
|||
import { module, test } from "qunit";
|
||||
import LightDarkImg from "discourse/components/light-dark-img";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
const lightSrc = { url: "/images/light.jpg", width: 376, height: 500 };
|
||||
const darkSrc = { url: "/images/light.jpg", width: 432, height: 298 };
|
||||
|
@ -36,11 +35,9 @@ module("Integration | Component | light-dark-img", function (hooks) {
|
|||
|
||||
assert.dom("picture").doesNotExist("there is no picture tag");
|
||||
assert.dom("img").exists("there is an img tag");
|
||||
assert.strictEqual(
|
||||
query("img").getAttribute("src"),
|
||||
lightSrc.url,
|
||||
"the img src is the light image"
|
||||
);
|
||||
assert
|
||||
.dom("img")
|
||||
.hasAttribute("src", lightSrc.url, "the img src is the light image");
|
||||
assert.dom("source").doesNotExist("there are no source tags");
|
||||
});
|
||||
|
||||
|
@ -54,11 +51,9 @@ module("Integration | Component | light-dark-img", function (hooks) {
|
|||
|
||||
assert.dom("picture").doesNotExist("there is no picture tag");
|
||||
assert.dom("img").exists("there is an img tag");
|
||||
assert.strictEqual(
|
||||
query("img").getAttribute("src"),
|
||||
lightSrc.url,
|
||||
"the img src is the light image"
|
||||
);
|
||||
assert
|
||||
.dom("img")
|
||||
.hasAttribute("src", lightSrc.url, "the img src is the light image");
|
||||
assert.dom("source").doesNotExist("there are no source tags");
|
||||
});
|
||||
|
||||
|
@ -81,11 +76,9 @@ module("Integration | Component | light-dark-img", function (hooks) {
|
|||
|
||||
assert.dom("picture").doesNotExist("there is no picture tag");
|
||||
assert.dom("img").exists("there is an img tag");
|
||||
assert.strictEqual(
|
||||
query("img").getAttribute("src"),
|
||||
lightSrc.url,
|
||||
"the img src is the light image"
|
||||
);
|
||||
assert
|
||||
.dom("img")
|
||||
.hasAttribute("src", lightSrc.url, "the img src is the light image");
|
||||
assert.dom("source").doesNotExist("there are no source tags");
|
||||
});
|
||||
|
||||
|
@ -99,17 +92,17 @@ module("Integration | Component | light-dark-img", function (hooks) {
|
|||
|
||||
assert.dom("picture").exists("there is a picture tag");
|
||||
assert.dom("img").exists("there is an img tag");
|
||||
assert.strictEqual(
|
||||
query("img").getAttribute("src"),
|
||||
lightSrc.url,
|
||||
"the img src is the light image"
|
||||
);
|
||||
assert
|
||||
.dom("img")
|
||||
.hasAttribute("src", lightSrc.url, "the img src is the light image");
|
||||
assert.dom("source").exists("there is a source tag");
|
||||
assert.strictEqual(
|
||||
query("source").getAttribute("srcset"),
|
||||
darkSrc.url,
|
||||
"the source srcset is the dark image"
|
||||
);
|
||||
assert
|
||||
.dom("source")
|
||||
.hasAttribute(
|
||||
"srcset",
|
||||
darkSrc.url,
|
||||
"the source srcset is the dark image"
|
||||
);
|
||||
});
|
||||
|
||||
test("dark theme with no images provided | dark mode not available", async function (assert) {
|
||||
|
@ -131,11 +124,9 @@ module("Integration | Component | light-dark-img", function (hooks) {
|
|||
|
||||
assert.dom("picture").doesNotExist("there is no picture tag");
|
||||
assert.dom("img").exists("there is an img tag");
|
||||
assert.strictEqual(
|
||||
query("img").getAttribute("src"),
|
||||
lightSrc.url,
|
||||
"the img src is the light image"
|
||||
);
|
||||
assert
|
||||
.dom("img")
|
||||
.hasAttribute("src", lightSrc.url, "the img src is the light image");
|
||||
assert.dom("source").doesNotExist("there are no source tags");
|
||||
});
|
||||
|
||||
|
@ -149,17 +140,17 @@ module("Integration | Component | light-dark-img", function (hooks) {
|
|||
|
||||
assert.dom("picture").exists("there is a picture tag");
|
||||
assert.dom("img").exists("there is an img tag");
|
||||
assert.strictEqual(
|
||||
query("img").getAttribute("src"),
|
||||
darkSrc.url,
|
||||
"the img src is the dark image"
|
||||
);
|
||||
assert
|
||||
.dom("img")
|
||||
.hasAttribute("src", darkSrc.url, "the img src is the dark image");
|
||||
assert.dom("source").exists("there is a source tag");
|
||||
assert.strictEqual(
|
||||
query("source").getAttribute("srcset"),
|
||||
darkSrc.url,
|
||||
"the source srcset is the dark image"
|
||||
);
|
||||
assert
|
||||
.dom("source")
|
||||
.hasAttribute(
|
||||
"srcset",
|
||||
darkSrc.url,
|
||||
"the source srcset is the dark image"
|
||||
);
|
||||
});
|
||||
|
||||
test("dark theme with no images provided | dark mode available", async function (assert) {
|
||||
|
@ -181,11 +172,9 @@ module("Integration | Component | light-dark-img", function (hooks) {
|
|||
|
||||
assert.dom("picture").doesNotExist("there is no picture tag");
|
||||
assert.dom("img").exists("there is an img tag");
|
||||
assert.strictEqual(
|
||||
query("img").getAttribute("src"),
|
||||
lightSrc.url,
|
||||
"the img src is the light image"
|
||||
);
|
||||
assert
|
||||
.dom("img")
|
||||
.hasAttribute("src", lightSrc.url, "the img src is the light image");
|
||||
assert.dom("source").doesNotExist("there are no source tags");
|
||||
});
|
||||
|
||||
|
@ -199,16 +188,16 @@ module("Integration | Component | light-dark-img", function (hooks) {
|
|||
|
||||
assert.dom("picture").exists("there is a picture tag");
|
||||
assert.dom("img").exists("there is an img tag");
|
||||
assert.strictEqual(
|
||||
query("img").getAttribute("src"),
|
||||
darkSrc.url,
|
||||
"the img src is the dark image"
|
||||
);
|
||||
assert
|
||||
.dom("img")
|
||||
.hasAttribute("src", darkSrc.url, "the img src is the dark image");
|
||||
assert.dom("source").exists("there is a source tag");
|
||||
assert.strictEqual(
|
||||
query("source").getAttribute("srcset"),
|
||||
darkSrc.url,
|
||||
"the source srcset is the dark image"
|
||||
);
|
||||
assert
|
||||
.dom("source")
|
||||
.hasAttribute(
|
||||
"srcset",
|
||||
darkSrc.url,
|
||||
"the source srcset is the dark image"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -5,7 +5,6 @@ import { module, test } from "qunit";
|
|||
import PluginOutlet from "discourse/components/plugin-outlet";
|
||||
import { withPluginApi } from "discourse/lib/plugin-api";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { withSilencedDeprecations } from "discourse-common/lib/deprecated";
|
||||
import { registerTemporaryModule } from "../../helpers/temporary-module-helper";
|
||||
|
||||
|
@ -39,12 +38,13 @@ module("Plugin Outlet - Decorator", function (hooks) {
|
|||
<PluginOutlet @connectorTagName="div" @name="my-outlet-name" />
|
||||
</template>);
|
||||
|
||||
const fooConnector = query(".my-outlet-name-outlet.foo");
|
||||
const barConnector = query(".my-outlet-name-outlet.bar");
|
||||
|
||||
assert.dom(fooConnector).exists();
|
||||
assert.strictEqual(fooConnector.style.backgroundColor, "yellow");
|
||||
assert.strictEqual(barConnector.style.backgroundColor, "");
|
||||
assert.dom(".my-outlet-name-outlet.foo").exists();
|
||||
assert
|
||||
.dom(".my-outlet-name-outlet.foo")
|
||||
.hasAttribute("style", "background-color: yellow;");
|
||||
assert
|
||||
.dom(".my-outlet-name-outlet.bar")
|
||||
.doesNotHaveStyle("backgroundColor");
|
||||
|
||||
await render(<template>
|
||||
<PluginOutlet
|
||||
|
|
|
@ -13,7 +13,6 @@ import {
|
|||
extraConnectorComponent,
|
||||
} from "discourse/lib/plugin-connectors";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { registerTemporaryModule } from "discourse/tests/helpers/temporary-module-helper";
|
||||
import deprecated, {
|
||||
withSilencedDeprecations,
|
||||
|
@ -431,17 +430,19 @@ module("Integration | Component | plugin-outlet", function (hooks) {
|
|||
/>
|
||||
`);
|
||||
|
||||
const otherOutletElement = query(".hello-username");
|
||||
otherOutletElement.someUniqueProperty = true;
|
||||
document.querySelector(".hello-username").someUniqueProperty = true;
|
||||
|
||||
this.set("shouldDisplay", true);
|
||||
await settled();
|
||||
assert.dom(".conditional-render").exists("renders conditional outlet");
|
||||
|
||||
assert.true(
|
||||
query(".hello-username").someUniqueProperty,
|
||||
"other outlet is left untouched"
|
||||
);
|
||||
assert
|
||||
.dom(".hello-username")
|
||||
.hasProperty(
|
||||
"someUniqueProperty",
|
||||
true,
|
||||
"other outlet is left untouched"
|
||||
);
|
||||
});
|
||||
|
||||
module("deprecated arguments", function (innerHooks) {
|
||||
|
|
|
@ -6,7 +6,6 @@ import SearchMenu, {
|
|||
import searchFixtures from "discourse/tests/fixtures/search-fixtures";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import pretender, { response } from "discourse/tests/helpers/create-pretender";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
// Note this isn't a full-fledge test of the search menu. Those tests are in
|
||||
|
@ -75,19 +74,15 @@ module("Integration | Component | search-menu", function (hooks) {
|
|||
await render(<template><div id="click-me"><SearchMenu /></div></template>);
|
||||
await click("#search-term");
|
||||
|
||||
assert.strictEqual(
|
||||
document.activeElement,
|
||||
query("#search-term"),
|
||||
"Clicking the search term input focuses it"
|
||||
);
|
||||
assert
|
||||
.dom("#search-term")
|
||||
.isFocused("Clicking the search term input focuses it");
|
||||
|
||||
await click("#click-me");
|
||||
|
||||
assert.strictEqual(
|
||||
document.activeElement,
|
||||
document.body,
|
||||
"Clicking outside blurs focus and closes panel"
|
||||
);
|
||||
assert
|
||||
.dom(document.body)
|
||||
.isFocused("Clicking outside blurs focus and closes panel");
|
||||
assert
|
||||
.dom(".menu-panel .search-menu-initial-options")
|
||||
.doesNotExist("Menu panel is hidden");
|
||||
|
|
|
@ -2,7 +2,7 @@ import { fillIn, render } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { paste, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { paste } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import pretender, { response } from "../../../helpers/create-pretender";
|
||||
|
||||
|
@ -19,26 +19,26 @@ module(
|
|||
await render(hbs`<EmailGroupUserChooser/>`);
|
||||
|
||||
await this.subject.expand();
|
||||
await paste(query(".filter-input"), "foo,bar");
|
||||
await paste(".filter-input", "foo,bar");
|
||||
|
||||
assert.strictEqual(this.subject.header().value(), "foo,bar");
|
||||
|
||||
await paste(query(".filter-input"), "evil,trout");
|
||||
await paste(".filter-input", "evil,trout");
|
||||
assert.strictEqual(this.subject.header().value(), "foo,bar,evil,trout");
|
||||
|
||||
await paste(query(".filter-input"), "names with spaces");
|
||||
await paste(".filter-input", "names with spaces");
|
||||
assert.strictEqual(
|
||||
this.subject.header().value(),
|
||||
"foo,bar,evil,trout,names,with,spaces"
|
||||
);
|
||||
|
||||
await paste(query(".filter-input"), "@osama,@sam");
|
||||
await paste(".filter-input", "@osama,@sam");
|
||||
assert.strictEqual(
|
||||
this.subject.header().value(),
|
||||
"foo,bar,evil,trout,names,with,spaces,osama,sam"
|
||||
);
|
||||
|
||||
await paste(query(".filter-input"), "new\nlines");
|
||||
await paste(".filter-input", "new\nlines");
|
||||
assert.strictEqual(
|
||||
this.subject.header().value(),
|
||||
"foo,bar,evil,trout,names,with,spaces,osama,sam,new,lines"
|
||||
|
|
|
@ -2,7 +2,7 @@ import { click, render, triggerKeyEvent } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -96,8 +96,8 @@ module(
|
|||
|
||||
await this.subject.expand();
|
||||
|
||||
assert.strictEqual(
|
||||
query("input[name=filter-input-search]").placeholder,
|
||||
assert.dom("input[name=filter-input-search]").hasAttribute(
|
||||
"placeholder",
|
||||
i18n("tagging.choose_for_topic_required_group", {
|
||||
count: 1,
|
||||
name: "monkey group",
|
||||
|
@ -106,10 +106,9 @@ module(
|
|||
|
||||
await this.subject.selectRowByValue("monkey");
|
||||
|
||||
assert.strictEqual(
|
||||
query("input[name=filter-input-search]").placeholder,
|
||||
i18n("select_kit.filter_placeholder")
|
||||
);
|
||||
assert
|
||||
.dom("input[name=filter-input-search]")
|
||||
.hasAttribute("placeholder", i18n("select_kit.filter_placeholder"));
|
||||
});
|
||||
|
||||
test("creating a tag using invalid character", async function (assert) {
|
||||
|
|
|
@ -2,7 +2,7 @@ import { render } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { paste, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { paste } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
|
||||
const DEFAULT_CONTENT = [
|
||||
|
@ -114,7 +114,7 @@ module("Integration | Component | select-kit/multi-select", function (hooks) {
|
|||
`);
|
||||
|
||||
await this.subject.expand();
|
||||
await paste(query(".filter-input"), "foo|bar");
|
||||
await paste(".filter-input", "foo|bar");
|
||||
|
||||
assert.strictEqual(this.subject.header().value(), "1,2");
|
||||
});
|
||||
|
|
|
@ -2,7 +2,6 @@ import { render, tab } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import I18n, { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -469,8 +468,12 @@ module("Integration | Component | select-kit/single-select", function (hooks) {
|
|||
/>
|
||||
`);
|
||||
await this.subject.expand();
|
||||
const header = query(".select-kit-header").getBoundingClientRect();
|
||||
const body = query(".select-kit-body").getBoundingClientRect();
|
||||
const header = document
|
||||
.querySelector(".select-kit-header")
|
||||
.getBoundingClientRect();
|
||||
const body = document
|
||||
.querySelector(".select-kit-body")
|
||||
.getBoundingClientRect();
|
||||
|
||||
assert.true(header.bottom > body.top, "correctly offsets the body");
|
||||
});
|
||||
|
|
|
@ -2,15 +2,6 @@ import { render } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
function containsExactly(assert, expectation, actual, message) {
|
||||
assert.deepEqual(
|
||||
Array.from(expectation).sort(),
|
||||
Array.from(actual).sort(),
|
||||
message
|
||||
);
|
||||
}
|
||||
|
||||
module("Integration | Component | sidebar | section-link", function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
@ -20,12 +11,13 @@ module("Integration | Component | sidebar | section-link", function (hooks) {
|
|||
|
||||
await render(template);
|
||||
|
||||
containsExactly(
|
||||
assert,
|
||||
query("a").classList,
|
||||
["ember-view", "sidebar-row", "sidebar-section-link"],
|
||||
"has the right class attribute for the link"
|
||||
);
|
||||
assert
|
||||
.dom("a")
|
||||
.hasAttribute(
|
||||
"class",
|
||||
"ember-view sidebar-section-link sidebar-row",
|
||||
"has the right class attribute for the link"
|
||||
);
|
||||
});
|
||||
|
||||
test("custom class attribute for link", async function (assert) {
|
||||
|
@ -33,12 +25,13 @@ module("Integration | Component | sidebar | section-link", function (hooks) {
|
|||
|
||||
await render(template);
|
||||
|
||||
containsExactly(
|
||||
assert,
|
||||
query("a").classList,
|
||||
["123", "abc", "ember-view", "sidebar-row", "sidebar-section-link"],
|
||||
"has the right class attribute for the link"
|
||||
);
|
||||
assert
|
||||
.dom("a")
|
||||
.hasAttribute(
|
||||
"class",
|
||||
"ember-view sidebar-section-link sidebar-row 123 abc",
|
||||
"has the right class attribute for the link"
|
||||
);
|
||||
});
|
||||
|
||||
test("target attribute for link", async function (assert) {
|
||||
|
|
|
@ -3,7 +3,6 @@ import { hbs } from "ember-cli-htmlbars";
|
|||
import { module, skip, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import pretender, { response } from "discourse/tests/helpers/create-pretender";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
module("Integration | Component | site-setting", function (hooks) {
|
||||
|
@ -38,7 +37,7 @@ module("Integration | Component | site-setting", function (hooks) {
|
|||
await fillIn(".setting input", "value");
|
||||
await click(".setting .d-icon-check");
|
||||
|
||||
assert.strictEqual(query(".validation-error h1").outerHTML, message);
|
||||
assert.dom(".validation-error").includesHtml(message);
|
||||
});
|
||||
|
||||
test("Error response without html_message is not rendered as HTML", async function (assert) {
|
||||
|
|
|
@ -2,7 +2,6 @@ import { render, triggerEvent } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
module("Integration | Component | user-info", function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
@ -127,7 +126,7 @@ module("Integration | Component | user-info", function (hooks) {
|
|||
await render(
|
||||
hbs`<UserInfo @user={{this.currentUser}} @showStatus={{true}} /><DTooltips />`
|
||||
);
|
||||
await triggerEvent(query(".user-status-message"), "mousemove");
|
||||
await triggerEvent(".user-status-message", "mousemove");
|
||||
|
||||
assert
|
||||
.dom("[data-content][data-identifier='user-status-message-tooltip']")
|
||||
|
|
|
@ -4,7 +4,7 @@ import { module, test } from "qunit";
|
|||
import { NOTIFICATION_TYPES } from "discourse/tests/fixtures/concerns/notification-types";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import pretender from "discourse/tests/helpers/create-pretender";
|
||||
import { query, queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { queryAll } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
module("Integration | Component | user-menu", function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
@ -13,8 +13,11 @@ module("Integration | Component | user-menu", function (hooks) {
|
|||
|
||||
test("default tab is all notifications", async function (assert) {
|
||||
await render(template);
|
||||
const activeTab = query(".top-tabs.tabs-list .btn.active");
|
||||
assert.strictEqual(activeTab.id, "user-menu-button-all-notifications");
|
||||
|
||||
assert
|
||||
.dom(".top-tabs.tabs-list .btn.active")
|
||||
.hasAttribute("id", "user-menu-button-all-notifications");
|
||||
|
||||
const notifications = queryAll("#quick-access-all-notifications ul li");
|
||||
assert.dom(notifications[0]).hasClass("edited");
|
||||
assert.dom(notifications[1]).hasClass("replied");
|
||||
|
@ -83,8 +86,10 @@ module("Integration | Component | user-menu", function (hooks) {
|
|||
this.currentUser.set("reviewable_count", 1);
|
||||
this.currentUser.set("can_send_private_messages", true);
|
||||
await render(template);
|
||||
const tab = query("#user-menu-button-review-queue");
|
||||
assert.strictEqual(tab.dataset.tabNumber, "5");
|
||||
|
||||
assert
|
||||
.dom("#user-menu-button-review-queue")
|
||||
.hasAttribute("data-tab-number", "5");
|
||||
|
||||
const tabs = Array.from(queryAll(".tabs-list .btn")); // top and bottom tabs
|
||||
assert.strictEqual(tabs.length, 8);
|
||||
|
|
|
@ -2,11 +2,7 @@ import { render, triggerEvent } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { fakeTime, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
async function mouseenter() {
|
||||
await triggerEvent(query(".user-status-message"), "mousemove");
|
||||
}
|
||||
import { fakeTime } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
module("Integration | Component | user-status-message", function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
@ -50,7 +46,7 @@ module("Integration | Component | user-status-message", function (hooks) {
|
|||
await render(
|
||||
hbs`<UserStatusMessage @status={{this.status}} /><DTooltips />`
|
||||
);
|
||||
await mouseenter();
|
||||
await triggerEvent(".user-status-message", "mousemove");
|
||||
|
||||
assert
|
||||
.dom('[data-content][data-identifier="user-status-message-tooltip"]')
|
||||
|
@ -68,7 +64,7 @@ module("Integration | Component | user-status-message", function (hooks) {
|
|||
await render(
|
||||
hbs`<UserStatusMessage @status={{this.status}} /><DTooltips />`
|
||||
);
|
||||
await mouseenter();
|
||||
await triggerEvent(".user-status-message", "mousemove");
|
||||
|
||||
assert
|
||||
.dom('[data-content][data-identifier="user-status-message-tooltip"]')
|
||||
|
@ -86,7 +82,7 @@ module("Integration | Component | user-status-message", function (hooks) {
|
|||
await render(
|
||||
hbs`<UserStatusMessage @status={{this.status}} /><DTooltips />`
|
||||
);
|
||||
await mouseenter();
|
||||
await triggerEvent(".user-status-message", "mousemove");
|
||||
|
||||
assert
|
||||
.dom(
|
||||
|
@ -99,7 +95,7 @@ module("Integration | Component | user-status-message", function (hooks) {
|
|||
await render(
|
||||
hbs`<UserStatusMessage @status={{this.status}} /><DTooltips />`
|
||||
);
|
||||
await mouseenter();
|
||||
await triggerEvent(".user-status-message", "mousemove");
|
||||
|
||||
assert
|
||||
.dom('[data-content][data-identifier="user-status-message-tooltip"]')
|
||||
|
|
|
@ -2,7 +2,6 @@ import { click, render } from "@ember/test-helpers";
|
|||
import { hbs } from "ember-cli-htmlbars";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import I18n from "discourse-i18n";
|
||||
|
||||
const DEFAULT_CONTENT = {
|
||||
|
@ -17,26 +16,6 @@ const DEFAULT_CONTENT = {
|
|||
label: "foo",
|
||||
};
|
||||
|
||||
async function clickRowById(id) {
|
||||
await click(`#my-dropdown .widget-dropdown-item.item-${id}`);
|
||||
}
|
||||
|
||||
function rowById(id) {
|
||||
return query(`#my-dropdown .widget-dropdown-item.item-${id}`);
|
||||
}
|
||||
|
||||
async function toggle() {
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
}
|
||||
|
||||
function header() {
|
||||
return query("#my-dropdown .widget-dropdown-header");
|
||||
}
|
||||
|
||||
function body() {
|
||||
return query("#my-dropdown .widget-dropdown-body");
|
||||
}
|
||||
|
||||
const TEMPLATE = hbs`
|
||||
<MountWidget
|
||||
@widget="widget-dropdown"
|
||||
|
@ -93,10 +72,16 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
await toggle();
|
||||
assert.strictEqual(rowById(1).dataset.id, "1", "it creates rows");
|
||||
assert.strictEqual(rowById(2).dataset.id, "2", "it creates rows");
|
||||
assert.strictEqual(rowById(3).dataset.id, "3", "it creates rows");
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert
|
||||
.dom("#my-dropdown .widget-dropdown-item.item-1")
|
||||
.hasAttribute("data-id", "1", "creates rows");
|
||||
assert
|
||||
.dom("#my-dropdown .widget-dropdown-item.item-2")
|
||||
.hasAttribute("data-id", "2", "creates rows");
|
||||
assert
|
||||
.dom("#my-dropdown .widget-dropdown-item.item-3")
|
||||
.hasAttribute("data-id", "3", "creates rows");
|
||||
});
|
||||
|
||||
test("onChange action", async function (assert) {
|
||||
|
@ -120,9 +105,9 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
/>
|
||||
`);
|
||||
|
||||
await toggle();
|
||||
await clickRowById(2);
|
||||
assert.dom("#test").hasText("2", "it calls the onChange actions");
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
await click("#my-dropdown .widget-dropdown-item.item-2");
|
||||
assert.dom("#test").hasText("2", "calls the onChange actions");
|
||||
});
|
||||
|
||||
test("can be opened and closed", async function (assert) {
|
||||
|
@ -132,11 +117,11 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
assert.dom("#my-dropdown.closed").exists();
|
||||
assert.dom("#my-dropdown .widget-dropdown-body").doesNotExist();
|
||||
await toggle();
|
||||
assert.dom(rowById(2)).hasText("FooBar");
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert.dom("#my-dropdown .widget-dropdown-item.item-2").hasText("FooBar");
|
||||
assert.dom("#my-dropdown.opened").exists();
|
||||
assert.dom("#my-dropdown .widget-dropdown-body").exists();
|
||||
await toggle();
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert.dom("#my-dropdown.closed").exists();
|
||||
assert.dom("#my-dropdown .widget-dropdown-body").doesNotExist();
|
||||
});
|
||||
|
@ -147,7 +132,7 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
assert.dom(".d-icon-xmark", header()).exists();
|
||||
assert.dom("#my-dropdown .widget-dropdown-header .d-icon-xmark").exists();
|
||||
});
|
||||
|
||||
test("class", async function (assert) {
|
||||
|
@ -164,8 +149,8 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
await toggle();
|
||||
assert.dom(rowById(2)).hasText("FooBar");
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert.dom("#my-dropdown .widget-dropdown-item.item-2").hasText("FooBar");
|
||||
});
|
||||
|
||||
test("content with label", async function (assert) {
|
||||
|
@ -174,8 +159,8 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
await toggle();
|
||||
assert.dom(rowById(1)).hasText("FooBaz");
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert.dom("#my-dropdown .widget-dropdown-item.item-1").hasText("FooBaz");
|
||||
});
|
||||
|
||||
test("content with icon", async function (assert) {
|
||||
|
@ -183,17 +168,21 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
await toggle();
|
||||
assert.dom(".d-icon-xmark", rowById(3)).exists();
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert
|
||||
.dom("#my-dropdown .widget-dropdown-item.item-3 .d-icon-xmark")
|
||||
.exists();
|
||||
});
|
||||
|
||||
test("content with html", async function (assert) {
|
||||
this.setProperties(DEFAULT_CONTENT);
|
||||
|
||||
await render(TEMPLATE);
|
||||
await toggle();
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
|
||||
assert.dom(rowById(4)).hasHtml("<span><b>baz</b></span>");
|
||||
assert
|
||||
.dom("#my-dropdown .widget-dropdown-item.item-4")
|
||||
.hasHtml("<span><b>baz</b></span>");
|
||||
});
|
||||
|
||||
test("separator", async function (assert) {
|
||||
|
@ -201,7 +190,7 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
await toggle();
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert
|
||||
.dom("#my-dropdown .widget-dropdown-item:nth-child(3)")
|
||||
.hasClass("separator");
|
||||
|
@ -222,9 +211,8 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
assert.dom(header()).hasClass("widget-dropdown-header");
|
||||
assert.dom(header()).hasClass("btn-small");
|
||||
assert.dom(header()).hasClass("and-text");
|
||||
assert.dom("#my-dropdown .widget-dropdown-header").hasClass("btn-small");
|
||||
assert.dom("#my-dropdown .widget-dropdown-header").hasClass("and-text");
|
||||
});
|
||||
|
||||
test("bodyClass option", async function (assert) {
|
||||
|
@ -233,10 +221,9 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
await toggle();
|
||||
assert.dom(body()).hasClass("widget-dropdown-body");
|
||||
assert.dom(body()).hasClass("gigantic");
|
||||
assert.dom(body()).hasClass("and-yet-small");
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert.dom("#my-dropdown .widget-dropdown-body").hasClass("gigantic");
|
||||
assert.dom("#my-dropdown .widget-dropdown-body").hasClass("and-yet-small");
|
||||
});
|
||||
|
||||
test("caret option", async function (assert) {
|
||||
|
@ -258,8 +245,10 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
assert.dom("#my-dropdown.disabled").exists();
|
||||
|
||||
await toggle();
|
||||
assert.strictEqual(rowById(1), null, "it does not display options");
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert
|
||||
.dom("#my-dropdown .widget-dropdown-item.item-1")
|
||||
.doesNotExist("does not display options");
|
||||
});
|
||||
|
||||
test("disabled item", async function (assert) {
|
||||
|
@ -267,7 +256,7 @@ module("Integration | Component | Widget | widget-dropdown", function (hooks) {
|
|||
|
||||
await render(TEMPLATE);
|
||||
|
||||
await toggle();
|
||||
await click("#my-dropdown .widget-dropdown-header");
|
||||
assert.dom(".widget-dropdown-item.item-5.disabled").exists();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -3,7 +3,6 @@ import { render } from "@ember/test-helpers";
|
|||
import { module, test } from "qunit";
|
||||
import CoreFabricators from "discourse/lib/fabricators";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import ChannelIcon from "discourse/plugins/chat/discourse/components/channel-icon";
|
||||
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
||||
import { CHATABLE_TYPES } from "discourse/plugins/chat/discourse/models/chat-channel";
|
||||
|
@ -16,10 +15,9 @@ module("Discourse Chat | Component | <ChannelIcon />", function (hooks) {
|
|||
|
||||
await render(<template><ChannelIcon @channel={{channel}} /></template>);
|
||||
|
||||
assert.strictEqual(
|
||||
query(".chat-channel-icon.--category-badge").getAttribute("style"),
|
||||
`color: #${channel.chatable.color}`
|
||||
);
|
||||
assert
|
||||
.dom(".chat-channel-icon.--category-badge")
|
||||
.hasAttribute("style", `color: #${channel.chatable.color}`);
|
||||
});
|
||||
|
||||
test("category channel - escapes label", async function (assert) {
|
||||
|
|
|
@ -3,8 +3,7 @@ import hbs from "htmlbars-inline-precompile";
|
|||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import pretender from "discourse/tests/helpers/create-pretender";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { i18n } from 'discourse-i18n';
|
||||
import { i18n } from "discourse-i18n";
|
||||
import ChatChannel from "discourse/plugins/chat/discourse/models/chat-channel";
|
||||
|
||||
module(
|
||||
|
@ -25,10 +24,9 @@ module(
|
|||
|
||||
await render(hbs`<Chat::Composer::Channel @channel={{this.channel}} />`);
|
||||
|
||||
assert.strictEqual(
|
||||
query(".chat-composer__input").placeholder,
|
||||
"Jot something down"
|
||||
);
|
||||
assert
|
||||
.dom(".chat-composer__input")
|
||||
.hasAttribute("placeholder", "Jot something down");
|
||||
});
|
||||
|
||||
test("direct message to multiple folks shows their names when not a group", async function (assert) {
|
||||
|
@ -48,10 +46,9 @@ module(
|
|||
|
||||
await render(hbs`<Chat::Composer::Channel @channel={{this.channel}} />`);
|
||||
|
||||
assert.strictEqual(
|
||||
query(".chat-composer__input").placeholder,
|
||||
"Chat with Tomtom, Steaky, @zorro"
|
||||
);
|
||||
assert
|
||||
.dom(".chat-composer__input")
|
||||
.hasAttribute("placeholder", "Chat with Tomtom, Steaky, @zorro");
|
||||
});
|
||||
|
||||
test("direct message to group shows Chat in group", async function (assert) {
|
||||
|
@ -72,10 +69,9 @@ module(
|
|||
|
||||
await render(hbs`<Chat::Composer::Channel @channel={{this.channel}} />`);
|
||||
|
||||
assert.strictEqual(
|
||||
query(".chat-composer__input").placeholder,
|
||||
i18n("chat.placeholder_group")
|
||||
);
|
||||
assert
|
||||
.dom(".chat-composer__input")
|
||||
.hasAttribute("placeholder", i18n("chat.placeholder_group"));
|
||||
});
|
||||
|
||||
test("message to channel shows send message to channel name", async function (assert) {
|
||||
|
@ -88,10 +84,9 @@ module(
|
|||
|
||||
await render(hbs`<Chat::Composer::Channel @channel={{this.channel}} />`);
|
||||
|
||||
assert.strictEqual(
|
||||
query(".chat-composer__input").placeholder,
|
||||
"Chat in #just-cats"
|
||||
);
|
||||
assert
|
||||
.dom(".chat-composer__input")
|
||||
.hasAttribute("placeholder", "Chat in #just-cats");
|
||||
});
|
||||
}
|
||||
);
|
||||
|
|
|
@ -2,7 +2,6 @@ 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 { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
module("Discourse Chat | Component | chat-message-reaction", function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
@ -44,8 +43,7 @@ module("Discourse Chat | Component | chat-message-reaction", function (hooks) {
|
|||
test("reaction’s image", async function (assert) {
|
||||
await render(hbs`<ChatMessageReaction @reaction={{hash emoji="heart"}} />`);
|
||||
|
||||
const src = query(".chat-message-reaction img").src;
|
||||
assert.true(/heart\.png/.test(src));
|
||||
assert.dom(".chat-message-reaction img").hasAttribute("src", /heart\.png/);
|
||||
});
|
||||
|
||||
test("click action", async function (assert) {
|
||||
|
|
|
@ -2,7 +2,6 @@ import { render, settled } from "@ember/test-helpers";
|
|||
import hbs from "htmlbars-inline-precompile";
|
||||
import { module, test } from "qunit";
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
|
||||
const IMAGE_FIXTURE = {
|
||||
id: 290,
|
||||
|
@ -74,23 +73,28 @@ module("Discourse Chat | Component | chat-upload", function (hooks) {
|
|||
await render(hbs`<ChatUpload @upload={{this.upload}} />`);
|
||||
|
||||
assert.dom("img.chat-img-upload").exists("displays as an image");
|
||||
const image = query("img.chat-img-upload");
|
||||
assert.strictEqual(image.loading, "lazy", "is lazy loading");
|
||||
assert
|
||||
.dom("img.chat-img-upload")
|
||||
.hasProperty("loading", "lazy", "is lazy loading");
|
||||
|
||||
assert.strictEqual(
|
||||
image.style.backgroundColor,
|
||||
"rgb(120, 131, 112)",
|
||||
"sets background to dominant color"
|
||||
);
|
||||
assert
|
||||
.dom("img.chat-img-upload")
|
||||
.hasStyle(
|
||||
{ backgroundColor: "rgb(120, 131, 112)" },
|
||||
"sets background to dominant color"
|
||||
);
|
||||
|
||||
image.dispatchEvent(new Event("load")); // Fake that the image has loaded
|
||||
document
|
||||
.querySelector("img.chat-img-upload")
|
||||
.dispatchEvent(new Event("load")); // Fake that the image has loaded
|
||||
await settled();
|
||||
|
||||
assert.strictEqual(
|
||||
image.style.backgroundColor,
|
||||
"",
|
||||
"removes the background color once the image has loaded"
|
||||
);
|
||||
assert
|
||||
.dom("img.chat-img-upload")
|
||||
.doesNotHaveStyle(
|
||||
"backgroundColor",
|
||||
"removes the background color once the image has loaded"
|
||||
);
|
||||
});
|
||||
|
||||
test("with a video", async function (assert) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { click, fillIn, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -30,7 +30,7 @@ acceptance("Details Button", function (needs) {
|
|||
|
||||
await fillIn(".d-editor-input", "This is my title");
|
||||
|
||||
const textarea = query(".d-editor-input");
|
||||
const textarea = document.querySelector(".d-editor-input");
|
||||
textarea.selectionStart = 0;
|
||||
textarea.selectionEnd = textarea.value.length;
|
||||
|
||||
|
@ -125,7 +125,7 @@ acceptance("Details Button", function (needs) {
|
|||
await categoryChooser.selectRowByValue(2);
|
||||
await fillIn(".d-editor-input", multilineInput);
|
||||
|
||||
const textarea = query(".d-editor-input");
|
||||
const textarea = document.querySelector(".d-editor-input");
|
||||
textarea.selectionStart = 0;
|
||||
textarea.selectionEnd = textarea.value.length;
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@ 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 { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
module("Poll | Component | poll-buttons-dropdown", function (hooks) {
|
||||
|
@ -75,7 +74,7 @@ module("Poll | Component | poll-buttons-dropdown", function (hooks) {
|
|||
|
||||
assert.dom("li.dropdown-menu__item").exists({ count: 2 });
|
||||
assert
|
||||
.dom(query("li.dropdown-menu__item span"))
|
||||
.dom("li.dropdown-menu__item span")
|
||||
.hasText(
|
||||
i18n("poll.show-tally.label"),
|
||||
"displays the show absolute button"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { click, fillIn, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import { acceptance, query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { i18n } from "discourse-i18n";
|
||||
|
||||
|
@ -29,20 +29,24 @@ acceptance("Spoiler Button", function (needs) {
|
|||
"contains the right output"
|
||||
);
|
||||
|
||||
let textarea = query(".d-editor-input");
|
||||
assert.strictEqual(
|
||||
textarea.selectionStart,
|
||||
9,
|
||||
"it should start highlighting at the right position"
|
||||
);
|
||||
assert.strictEqual(
|
||||
textarea.selectionEnd,
|
||||
i18n("composer.spoiler_text").length + 9,
|
||||
"it should end highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionStart",
|
||||
9,
|
||||
"starts highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionEnd",
|
||||
i18n("composer.spoiler_text").length + 9,
|
||||
"ends highlighting at the right position"
|
||||
);
|
||||
|
||||
await fillIn(".d-editor-input", "This is hidden");
|
||||
|
||||
const textarea = document.querySelector(".d-editor-input");
|
||||
textarea.selectionStart = 0;
|
||||
textarea.selectionEnd = textarea.value.length;
|
||||
|
||||
|
@ -56,16 +60,20 @@ acceptance("Spoiler Button", function (needs) {
|
|||
"contains the right output"
|
||||
);
|
||||
|
||||
assert.strictEqual(
|
||||
textarea.selectionStart,
|
||||
9,
|
||||
"it should start highlighting at the right position"
|
||||
);
|
||||
assert.strictEqual(
|
||||
textarea.selectionEnd,
|
||||
23,
|
||||
"it should end highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionStart",
|
||||
9,
|
||||
"starts highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionEnd",
|
||||
23,
|
||||
"ends highlighting at the right position"
|
||||
);
|
||||
|
||||
await fillIn(".d-editor-input", "Before this is hidden After");
|
||||
|
||||
|
@ -82,16 +90,20 @@ acceptance("Spoiler Button", function (needs) {
|
|||
"contains the right output"
|
||||
);
|
||||
|
||||
assert.strictEqual(
|
||||
textarea.selectionStart,
|
||||
16,
|
||||
"it should start highlighting at the right position"
|
||||
);
|
||||
assert.strictEqual(
|
||||
textarea.selectionEnd,
|
||||
30,
|
||||
"it should end highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionStart",
|
||||
16,
|
||||
"starts highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionEnd",
|
||||
30,
|
||||
"ends highlighting at the right position"
|
||||
);
|
||||
|
||||
await fillIn(".d-editor-input", "Before\nthis is hidden\nAfter");
|
||||
|
||||
|
@ -108,16 +120,20 @@ acceptance("Spoiler Button", function (needs) {
|
|||
"contains the right output"
|
||||
);
|
||||
|
||||
assert.strictEqual(
|
||||
textarea.selectionStart,
|
||||
16,
|
||||
"it should start highlighting at the right position"
|
||||
);
|
||||
assert.strictEqual(
|
||||
textarea.selectionEnd,
|
||||
30,
|
||||
"it should end highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionStart",
|
||||
16,
|
||||
"starts highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionEnd",
|
||||
30,
|
||||
"ends highlighting at the right position"
|
||||
);
|
||||
|
||||
// enforce block mode when selected text is multiline
|
||||
await fillIn(".d-editor-input", "Before\nthis is\n\nhidden\nAfter");
|
||||
|
@ -135,15 +151,19 @@ acceptance("Spoiler Button", function (needs) {
|
|||
"contains the right output"
|
||||
);
|
||||
|
||||
assert.strictEqual(
|
||||
textarea.selectionStart,
|
||||
17,
|
||||
"it should start highlighting at the right position"
|
||||
);
|
||||
assert.strictEqual(
|
||||
textarea.selectionEnd,
|
||||
32,
|
||||
"it should end highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionStart",
|
||||
17,
|
||||
"starts highlighting at the right position"
|
||||
);
|
||||
assert
|
||||
.dom(".d-editor-input")
|
||||
.hasProperty(
|
||||
"selectionEnd",
|
||||
32,
|
||||
"ends highlighting at the right position"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue