* DEV: Use `query` helper instead of `queryAll()[0]` * DEV: Replace `queryAll().length` w/ `exists()`/`count()` * DEV: Use `exists()` instead of `count() > 0`, `count() === 0` * DEV: Use `count()`/`exists()` instead of `find().length`
114 lines
3.8 KiB
JavaScript
114 lines
3.8 KiB
JavaScript
import {
|
|
acceptance,
|
|
exists,
|
|
queryAll,
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
|
import I18n from "I18n";
|
|
import { test } from "qunit";
|
|
import { settled, visit } from "@ember/test-helpers";
|
|
|
|
async function selectText(selector) {
|
|
const range = document.createRange();
|
|
const node = document.querySelector(selector);
|
|
range.selectNodeContents(node);
|
|
|
|
const selection = window.getSelection();
|
|
selection.removeAllRanges();
|
|
selection.addRange(range);
|
|
await settled();
|
|
}
|
|
|
|
acceptance("Topic - Quote button - logged in", function (needs) {
|
|
needs.user();
|
|
needs.settings({
|
|
share_quote_visibility: "anonymous",
|
|
share_quote_buttons: "twitter|email",
|
|
});
|
|
|
|
test("Does not show the quote share buttons by default", async function (assert) {
|
|
await visit("/t/internationalization-localization/280");
|
|
await selectText("#post_5 blockquote");
|
|
assert.ok(exists(".insert-quote"), "it shows the quote button");
|
|
assert.ok(!exists(".quote-sharing"), "it does not show quote sharing");
|
|
});
|
|
|
|
test("Shows quote share buttons with the right site settings", async function (assert) {
|
|
this.siteSettings.share_quote_visibility = "all";
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
await selectText("#post_5 blockquote");
|
|
|
|
assert.ok(exists(".quote-sharing"), "it shows the quote sharing options");
|
|
assert.ok(
|
|
exists(`.quote-sharing .btn[title='${I18n.t("share.twitter")}']`),
|
|
"it includes the twitter share button"
|
|
);
|
|
assert.ok(
|
|
exists(`.quote-sharing .btn[title='${I18n.t("share.email")}']`),
|
|
"it includes the email share button"
|
|
);
|
|
});
|
|
|
|
test("Quoting a Onebox should not copy the formatting of the rendered Onebox", async function (assert) {
|
|
await visit("/t/topic-for-group-moderators/2480");
|
|
await selectText("#post_3 aside.onebox p");
|
|
await click(".insert-quote");
|
|
|
|
assert.equal(
|
|
queryAll(".d-editor-input").val().trim(),
|
|
'[quote="group_moderator, post:3, topic:2480"]\nhttps://example.com/57350945\n[/quote]',
|
|
"quote only contains a link"
|
|
);
|
|
});
|
|
});
|
|
|
|
acceptance("Topic - Quote button - anonymous", function (needs) {
|
|
needs.settings({
|
|
share_quote_visibility: "anonymous",
|
|
share_quote_buttons: "twitter|email",
|
|
});
|
|
|
|
test("Shows quote share buttons with the right site settings", async function (assert) {
|
|
await visit("/t/internationalization-localization/280");
|
|
await selectText("#post_5 blockquote");
|
|
|
|
assert.ok(queryAll(".quote-sharing"), "it shows the quote sharing options");
|
|
assert.ok(
|
|
exists(`.quote-sharing .btn[title='${I18n.t("share.twitter")}']`),
|
|
"it includes the twitter share button"
|
|
);
|
|
assert.ok(
|
|
exists(`.quote-sharing .btn[title='${I18n.t("share.email")}']`),
|
|
"it includes the email share button"
|
|
);
|
|
assert.ok(!exists(".insert-quote"), "it does not show the quote button");
|
|
});
|
|
|
|
test("Shows single share button when site setting only has one item", async function (assert) {
|
|
this.siteSettings.share_quote_buttons = "twitter";
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
await selectText("#post_5 blockquote");
|
|
|
|
assert.ok(exists(".quote-sharing"), "it shows the quote sharing options");
|
|
assert.ok(
|
|
exists(`.quote-sharing .btn[title='${I18n.t("share.twitter")}']`),
|
|
"it includes the twitter share button"
|
|
);
|
|
assert.ok(
|
|
!exists(".quote-share-label"),
|
|
"it does not show the Share label"
|
|
);
|
|
});
|
|
|
|
test("Shows nothing when visibility is disabled", async function (assert) {
|
|
this.siteSettings.share_quote_visibility = "none";
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
await selectText("#post_5 blockquote");
|
|
|
|
assert.ok(!exists(".quote-sharing"), "it does not show quote sharing");
|
|
assert.ok(!exists(".insert-quote"), "it does not show the quote button");
|
|
});
|
|
});
|