discourse/test/javascripts/acceptance/composer-actions-test.js.es6

343 lines
10 KiB
Plaintext
Raw Normal View History

import { acceptance, replaceCurrentUser } from "helpers/qunit-helpers";
2018-06-15 11:03:24 -04:00
import { _clearSnapshots } from "select-kit/components/composer-actions";
import { toggleCheckDraftPopup } from "discourse/controllers/composer";
2018-06-15 11:03:24 -04:00
acceptance("Composer Actions", {
loggedIn: true,
settings: {
enable_whispers: true
},
beforeEach() {
_clearSnapshots();
2018-06-15 11:03:24 -04:00
}
});
2018-06-15 11:03:24 -04:00
QUnit.test("replying to post", async assert => {
const composerActions = selectKit(".composer-actions");
2018-06-15 11:03:24 -04:00
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
2018-07-29 16:51:32 -04:00
await composerActions.expand();
2018-06-15 11:03:24 -04:00
assert.equal(composerActions.rowByIndex(0).value(), "reply_as_new_topic");
assert.equal(
composerActions.rowByIndex(1).value(),
"reply_as_private_message"
);
assert.equal(composerActions.rowByIndex(2).value(), "reply_to_topic");
assert.equal(composerActions.rowByIndex(3).value(), "toggle_whisper");
assert.equal(composerActions.rowByIndex(4).value(), "toggle_topic_bump");
assert.equal(composerActions.rowByIndex(5).value(), undefined);
});
2018-06-15 11:03:24 -04:00
QUnit.test("replying to post - reply_as_private_message", async assert => {
const composerActions = selectKit(".composer-actions");
2018-06-15 11:03:24 -04:00
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
2018-07-29 16:51:32 -04:00
await composerActions.expand();
await composerActions.selectRowByValue("reply_as_private_message");
2018-06-15 11:03:24 -04:00
assert.equal(find(".users-input .item:eq(0)").text(), "codinghorror");
assert.ok(
find(".d-editor-input")
.val()
.indexOf("Continuing the discussion") >= 0
);
});
2018-06-15 11:03:24 -04:00
QUnit.test("replying to post - reply_to_topic", async assert => {
const composerActions = selectKit(".composer-actions");
2018-06-15 11:03:24 -04:00
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
await fillIn(
".d-editor-input",
"test replying to topic when initially replied to post"
);
2018-07-29 16:51:32 -04:00
await composerActions.expand();
await composerActions.selectRowByValue("reply_to_topic");
2018-05-21 23:56:11 -04:00
2018-06-15 11:03:24 -04:00
assert.equal(
find(".action-title .topic-link")
.text()
.trim(),
"Internationalization / localization"
);
assert.equal(
find(".action-title .topic-link").attr("href"),
"/t/internationalization-localization/280"
);
assert.equal(
find(".d-editor-input").val(),
"test replying to topic when initially replied to post"
);
});
2018-06-15 11:03:24 -04:00
QUnit.test("replying to post - toggle_whisper", async assert => {
const composerActions = selectKit(".composer-actions");
2018-06-15 11:03:24 -04:00
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
await fillIn(
".d-editor-input",
"test replying as whisper to topic when initially not a whisper"
);
2018-07-29 16:51:32 -04:00
await composerActions.expand();
await composerActions.selectRowByValue("toggle_whisper");
Upgrade to FontAwesome 5 (take two) (#6673) * Add missing icons to set * Revert FA5 revert This reverts commit 42572ff * use new SVG syntax in locales * Noscript page changes (remove login button, center "powered by" footer text) * Cast wider net for SVG icons in settings - include any _icon setting for SVG registry (offers better support for plugin settings) - let themes store multiple pipe-delimited icons in a setting - also replaces broken onebox image icon with SVG reference in cooked post processor * interpolate icons in locales * Fix composer whisper icon alignment * Add support for stacked icons * SECURITY: enforce hostname to match discourse hostname This ensures that the hostname rails uses for various helpers always matches the Discourse hostname * load SVG sprite with pre-initializers * FIX: enable caching on SVG sprites * PERF: use JSONP for SVG sprites so they are served from CDN This avoids needing to deal with CORS for loading of the SVG Note, added the svg- prefix to the filename so we can quickly tell in dev tools what the file is * Add missing SVG sprite JSONP script to CSP * Upgrade to FA 5.5.0 * Add support for all FA4.7 icons - adds complete frontend and backend for renamed FA4.7 icons - improves performance of SvgSprite.bundle and SvgSprite.all_icons * Fix group avatar flair preview - adds an endpoint at /svg-sprites/search/:keyword - adds frontend ajax call that pulls icon in avatar flair preview even when it is not in subset * Remove FA 4.7 font files
2018-11-26 16:49:57 -05:00
assert.ok(find(".composer-fields .whisper .d-icon-eye-slash").length === 1);
});
2018-06-15 11:03:24 -04:00
QUnit.test("replying to post - reply_as_new_topic", async assert => {
const composerActions = selectKit(".composer-actions");
const categoryChooser = selectKit(".title-wrapper .category-chooser");
const categoryChooserReplyArea = selectKit(".reply-area .category-chooser");
const quote = "test replying as new topic when initially replied to post";
2018-06-15 11:03:24 -04:00
await visit("/t/internationalization-localization/280");
2018-06-15 11:03:24 -04:00
await click("#topic-title .d-icon-pencil");
2018-07-29 16:51:32 -04:00
await categoryChooser.expand();
await categoryChooser.selectRowByValue(4);
2018-06-15 11:03:24 -04:00
await click("#topic-title .submit-edit");
2018-06-15 11:03:24 -04:00
await click("article#post_3 button.reply");
await fillIn(".d-editor-input", quote);
2018-07-29 16:51:32 -04:00
await composerActions.expand();
await composerActions.selectRowByValue("reply_as_new_topic");
2018-06-15 11:03:24 -04:00
assert.equal(categoryChooserReplyArea.header().name(), "faq");
assert.equal(
find(".action-title")
.text()
.trim(),
I18n.t("topic.create_long")
);
assert.ok(
find(".d-editor-input")
.val()
.includes(quote)
);
});
2018-06-15 11:03:24 -04:00
QUnit.test("shared draft", async assert => {
toggleCheckDraftPopup(true);
2018-06-15 11:03:24 -04:00
const composerActions = selectKit(".composer-actions");
await visit("/");
2018-06-15 11:03:24 -04:00
await click("#create-topic");
await fillIn("#reply-title", "This is the new text for the title");
await fillIn(".d-editor-input", "This is the new text for the post");
2018-07-29 16:51:32 -04:00
await composerActions.expand();
await composerActions.selectRowByValue("shared_draft");
assert.equal(
2018-06-15 11:03:24 -04:00
find("#reply-control .btn-primary.create .d-button-label").text(),
I18n.t("composer.create_shared_draft")
);
2018-06-15 11:03:24 -04:00
assert.ok(find("#reply-control.composing-shared-draft").length === 1);
toggleCheckDraftPopup(false);
});
2018-06-15 11:03:24 -04:00
QUnit.test("hide component if no content", async assert => {
const composerActions = selectKit(".composer-actions");
2018-06-15 11:03:24 -04:00
await visit("/u/eviltrout/messages");
await click(".new-private-message");
assert.ok(composerActions.el().hasClass("is-hidden"));
});
2018-06-15 11:03:24 -04:00
QUnit.test("interactions", async assert => {
const composerActions = selectKit(".composer-actions");
const quote = "Life is like riding a bicycle.";
2018-06-15 11:03:24 -04:00
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
await fillIn(".d-editor-input", quote);
2018-07-29 16:51:32 -04:00
await composerActions.expand();
await composerActions.selectRowByValue("reply_to_topic");
2018-06-15 11:03:24 -04:00
assert.equal(
find(".action-title")
.text()
.trim(),
"Internationalization / localization"
);
assert.equal(find(".d-editor-input").val(), quote);
2018-07-29 16:51:32 -04:00
await composerActions.expand();
2018-06-15 11:03:24 -04:00
assert.equal(composerActions.rowByIndex(0).value(), "reply_as_new_topic");
assert.equal(composerActions.rowByIndex(1).value(), "reply_to_post");
assert.equal(
composerActions.rowByIndex(2).value(),
"reply_as_private_message"
);
assert.equal(composerActions.rowByIndex(3).value(), "toggle_whisper");
assert.equal(composerActions.rowByIndex(4).value(), "toggle_topic_bump");
assert.equal(composerActions.rows().length, 5);
2018-07-29 16:51:32 -04:00
await composerActions.selectRowByValue("reply_to_post");
await composerActions.expand();
2018-06-15 11:03:24 -04:00
assert.ok(exists(find(".action-title img.avatar")));
assert.equal(
find(".action-title .user-link")
.text()
.trim(),
"codinghorror"
);
assert.equal(find(".d-editor-input").val(), quote);
assert.equal(composerActions.rowByIndex(0).value(), "reply_as_new_topic");
assert.equal(
composerActions.rowByIndex(1).value(),
"reply_as_private_message"
);
assert.equal(composerActions.rowByIndex(2).value(), "reply_to_topic");
assert.equal(composerActions.rowByIndex(3).value(), "toggle_whisper");
assert.equal(composerActions.rowByIndex(4).value(), "toggle_topic_bump");
assert.equal(composerActions.rows().length, 5);
2018-07-29 16:51:32 -04:00
await composerActions.selectRowByValue("reply_as_new_topic");
await composerActions.expand();
2018-06-15 11:03:24 -04:00
assert.equal(
find(".action-title")
.text()
.trim(),
I18n.t("topic.create_long")
);
assert.ok(
find(".d-editor-input")
.val()
.includes(quote)
);
assert.equal(composerActions.rowByIndex(0).value(), "reply_to_post");
assert.equal(
composerActions.rowByIndex(1).value(),
"reply_as_private_message"
);
assert.equal(composerActions.rowByIndex(2).value(), "reply_to_topic");
assert.equal(composerActions.rowByIndex(3).value(), "shared_draft");
assert.equal(composerActions.rows().length, 4);
2018-07-29 16:51:32 -04:00
await composerActions.selectRowByValue("reply_as_private_message");
await composerActions.expand();
2018-05-22 04:50:54 -04:00
2018-06-15 11:03:24 -04:00
assert.equal(
find(".action-title")
.text()
.trim(),
I18n.t("topic.private_message")
);
assert.ok(
find(".d-editor-input")
.val()
.indexOf("Continuing the discussion") === 0
);
assert.equal(composerActions.rowByIndex(0).value(), "reply_as_new_topic");
assert.equal(composerActions.rowByIndex(1).value(), "reply_to_post");
assert.equal(composerActions.rowByIndex(2).value(), "reply_to_topic");
assert.equal(composerActions.rows().length, 3);
});
QUnit.test("replying to post - toggle_topic_bump", async assert => {
const composerActions = selectKit(".composer-actions");
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
assert.ok(
find(".composer-fields .no-bump").length === 0,
"no-bump text is not visible"
);
await composerActions.expand();
await composerActions.selectRowByValue("toggle_topic_bump");
assert.ok(
find(".composer-fields .no-bump").length === 1,
"no-bump icon is visible"
);
await composerActions.expand();
await composerActions.selectRowByValue("toggle_topic_bump");
assert.ok(
find(".composer-fields .no-bump").length === 0,
"no-bump icon is not visible"
);
});
QUnit.test("replying to post as staff", async assert => {
const composerActions = selectKit(".composer-actions");
replaceCurrentUser({ staff: true, admin: false });
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
await composerActions.expand();
assert.equal(composerActions.rows().length, 5);
assert.equal(composerActions.rowByIndex(4).value(), "toggle_topic_bump");
});
QUnit.test("replying to post as TL3 user", async assert => {
const composerActions = selectKit(".composer-actions");
replaceCurrentUser({ staff: false, admin: false, trust_level: 3 });
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
await composerActions.expand();
assert.equal(composerActions.rows().length, 3);
Array.from(composerActions.rows()).forEach(row => {
assert.notEqual(
row.value,
"toggle_topic_bump",
"toggle button is not visible"
);
});
});
QUnit.test("replying to post as TL4 user", async assert => {
const composerActions = selectKit(".composer-actions");
replaceCurrentUser({ staff: false, admin: false, trust_level: 4 });
await visit("/t/internationalization-localization/280");
await click("article#post_3 button.reply");
await composerActions.expand();
assert.equal(composerActions.rows().length, 4);
assert.equal(composerActions.rowByIndex(3).value(), "toggle_topic_bump");
});
QUnit.test(
"replying to first post - reply_as_private_message",
async assert => {
const composerActions = selectKit(".composer-actions");
await visit("/t/internationalization-localization/280");
await click("article#post_1 button.reply");
await composerActions.expand();
await composerActions.selectRowByValue("reply_as_private_message");
assert.equal(find(".users-input .item:eq(0)").text(), "uwe_keim");
assert.ok(
find(".d-editor-input")
.val()
.indexOf("Continuing the discussion") >= 0
);
}
);