2015-04-07 02:14:00 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2019-03-13 18:17:59 +08:00
|
|
|
import { IMAGE_VERSION as v } from "pretty-text/emoji/version";
|
2018-08-16 20:06:56 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
acceptance("Topic", {
|
|
|
|
loggedIn: true,
|
|
|
|
pretend(server, helper) {
|
|
|
|
server.put("/posts/398/wiki", () => {
|
|
|
|
return helper.response({});
|
|
|
|
});
|
2018-09-13 02:52:24 +08:00
|
|
|
|
|
|
|
server.get("/topics/feature_stats.json", () => {
|
|
|
|
return helper.response({
|
|
|
|
pinned_in_category_count: 0,
|
|
|
|
pinned_globally_count: 0,
|
|
|
|
banner_count: 0
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
server.put("/t/280/make-banner", () => {
|
|
|
|
return helper.response({});
|
|
|
|
});
|
2018-07-26 18:16:32 +08:00
|
|
|
}
|
|
|
|
});
|
2013-06-21 03:02:02 +08:00
|
|
|
|
2019-02-21 05:27:59 +08:00
|
|
|
QUnit.test("Share Modal", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
|
|
await click(".topic-post:first-child button.share");
|
2019-02-26 21:15:25 +08:00
|
|
|
|
|
|
|
assert.ok(exists("#share-link"), "it shows the share modal");
|
2019-02-21 05:27:59 +08:00
|
|
|
});
|
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
QUnit.test("Showing and hiding the edit controls", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
2015-04-17 01:53:30 +08:00
|
|
|
|
2019-01-22 19:02:02 +08:00
|
|
|
await click("#topic-title .d-icon-pencil-alt");
|
2015-04-17 01:53:30 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
assert.ok(exists("#edit-title"), "it shows the editing controls");
|
|
|
|
assert.ok(
|
|
|
|
!exists(".title-wrapper .remove-featured-link"),
|
|
|
|
"link to remove featured link is not shown"
|
|
|
|
);
|
2015-04-17 01:53:30 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
await fillIn("#edit-title", "this is the new title");
|
|
|
|
await click("#topic-title .cancel-edit");
|
|
|
|
assert.ok(!exists("#edit-title"), "it hides the editing controls");
|
2013-06-21 03:02:02 +08:00
|
|
|
});
|
2014-09-17 23:18:41 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
QUnit.test("Updating the topic title and category", async assert => {
|
2018-06-15 23:03:24 +08:00
|
|
|
const categoryChooser = selectKit(".title-wrapper .category-chooser");
|
2017-12-22 20:08:12 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
await visit("/t/internationalization-localization/280");
|
2017-01-25 14:33:16 +08:00
|
|
|
|
2019-01-22 19:02:02 +08:00
|
|
|
await click("#topic-title .d-icon-pencil-alt");
|
2018-07-26 18:16:32 +08:00
|
|
|
await fillIn("#edit-title", "this is the new title");
|
2018-07-30 04:51:32 +08:00
|
|
|
await categoryChooser.expand();
|
|
|
|
await categoryChooser.selectRowByValue(4);
|
2018-07-26 18:16:32 +08:00
|
|
|
await click("#topic-title .submit-edit");
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
find("#topic-title .badge-category").text(),
|
|
|
|
"faq",
|
|
|
|
"it displays the new category"
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
find(".fancy-title")
|
|
|
|
.text()
|
|
|
|
.trim(),
|
|
|
|
"this is the new title",
|
|
|
|
"it displays the new title"
|
|
|
|
);
|
|
|
|
});
|
2017-01-25 14:33:16 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
QUnit.test("Marking a topic as wiki", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
2017-01-25 14:33:16 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
assert.ok(find("a.wiki").length === 0, "it does not show the wiki icon");
|
2017-01-25 14:33:16 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
await click(".topic-post:eq(0) button.show-more-actions");
|
|
|
|
await click(".topic-post:eq(0) button.show-post-admin-menu");
|
|
|
|
await click(".btn.wiki");
|
2017-01-25 14:33:16 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
assert.ok(find("a.wiki").length === 1, "it shows the wiki icon");
|
2017-01-25 14:33:16 +08:00
|
|
|
});
|
2016-11-30 01:59:42 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
QUnit.test("Visit topic routes", async assert => {
|
|
|
|
await visit("/t/12");
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
find(".fancy-title")
|
|
|
|
.text()
|
|
|
|
.trim(),
|
|
|
|
"PM for testing",
|
|
|
|
"it routes to the right topic"
|
|
|
|
);
|
|
|
|
|
|
|
|
await visit("/t/280/20");
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
find(".fancy-title")
|
|
|
|
.text()
|
|
|
|
.trim(),
|
|
|
|
"Internationalization / localization",
|
|
|
|
"it routes to the right topic"
|
|
|
|
);
|
2017-09-29 14:02:58 +08:00
|
|
|
});
|
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
QUnit.test("Updating the topic title with emojis", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
2019-01-22 19:02:02 +08:00
|
|
|
await click("#topic-title .d-icon-pencil-alt");
|
2017-06-05 20:06:23 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
await fillIn("#edit-title", "emojis title :bike: :blonde_woman:t6:");
|
2017-06-05 20:06:23 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
await click("#topic-title .submit-edit");
|
2017-06-05 20:06:23 +08:00
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".fancy-title")
|
|
|
|
.html()
|
|
|
|
.trim(),
|
2018-08-16 20:06:56 +08:00
|
|
|
`emojis title <img src="/images/emoji/emoji_one/bike.png?v=${v}" title="bike" alt="bike" class="emoji"> <img src="/images/emoji/emoji_one/blonde_woman/6.png?v=${v}" title="blonde_woman:t6" alt="blonde_woman:t6" class="emoji">`,
|
2018-07-26 18:16:32 +08:00
|
|
|
"it displays the new title with emojis"
|
|
|
|
);
|
2017-07-27 04:33:17 +08:00
|
|
|
});
|
2017-11-23 03:53:35 +08:00
|
|
|
|
2019-03-13 18:17:59 +08:00
|
|
|
QUnit.test("Updating the topic title with unicode emojis", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
|
|
await click("#topic-title .d-icon-pencil-alt");
|
|
|
|
|
|
|
|
await fillIn("#edit-title", "emojis title 👨🌾");
|
|
|
|
|
|
|
|
await click("#topic-title .submit-edit");
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
find(".fancy-title")
|
|
|
|
.html()
|
|
|
|
.trim(),
|
|
|
|
`emojis title <img src="/images/emoji/emoji_one/man_farmer.png?v=${v}" title="man_farmer" alt="man_farmer" class="emoji">`,
|
|
|
|
"it displays the new title with escaped unicode emojis"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2017-11-23 03:53:35 +08:00
|
|
|
acceptance("Topic featured links", {
|
|
|
|
loggedIn: true,
|
|
|
|
settings: {
|
|
|
|
topic_featured_link_enabled: true,
|
|
|
|
max_topic_title_length: 80
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-07-26 18:16:32 +08:00
|
|
|
QUnit.test("remove featured link", async assert => {
|
|
|
|
await visit("/t/299/1");
|
|
|
|
assert.ok(
|
|
|
|
exists(".title-wrapper .topic-featured-link"),
|
|
|
|
"link is shown with topic title"
|
|
|
|
);
|
|
|
|
|
|
|
|
await click(".title-wrapper .edit-topic");
|
|
|
|
assert.ok(
|
|
|
|
exists(".title-wrapper .remove-featured-link"),
|
|
|
|
"link to remove featured link"
|
|
|
|
);
|
2017-11-23 03:53:35 +08:00
|
|
|
|
2017-11-23 04:23:06 +08:00
|
|
|
// this test only works in a browser:
|
2018-07-26 18:16:32 +08:00
|
|
|
// await click('.title-wrapper .remove-featured-link');
|
|
|
|
// await click('.title-wrapper .submit-edit');
|
|
|
|
// assert.ok(!exists('.title-wrapper .topic-featured-link'), 'link is gone');
|
2017-11-23 03:53:35 +08:00
|
|
|
});
|
2018-07-13 10:54:34 +08:00
|
|
|
|
2018-09-13 02:52:24 +08:00
|
|
|
QUnit.test("Unpinning unlisted topic", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
|
|
|
|
|
|
await click(".toggle-admin-menu");
|
|
|
|
await click(".topic-admin-pin .btn");
|
|
|
|
await click(".btn-primary:last");
|
|
|
|
|
|
|
|
await click(".toggle-admin-menu");
|
|
|
|
await click(".topic-admin-visible .btn");
|
|
|
|
|
|
|
|
await click(".toggle-admin-menu");
|
2018-09-17 08:30:36 +08:00
|
|
|
assert.ok(exists(".topic-admin-pin"), "it should show the multi select menu");
|
2018-09-13 02:52:24 +08:00
|
|
|
});
|
|
|
|
|
2018-07-13 10:54:34 +08:00
|
|
|
QUnit.test("selecting posts", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
|
|
await click(".toggle-admin-menu");
|
|
|
|
await click(".topic-admin-multi-select .btn");
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
exists(".selected-posts:not(.hidden)"),
|
|
|
|
"it should show the multi select menu"
|
|
|
|
);
|
|
|
|
|
2018-07-13 11:12:35 +08:00
|
|
|
assert.ok(
|
|
|
|
exists(".select-all"),
|
|
|
|
"it should allow users to select all the posts"
|
|
|
|
);
|
|
|
|
|
2018-07-13 10:54:34 +08:00
|
|
|
await click(".toggle-admin-menu");
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
exists(".selected-posts.hidden"),
|
|
|
|
"it should hide the multi select menu"
|
|
|
|
);
|
|
|
|
});
|
2018-06-28 14:54:54 +08:00
|
|
|
|
|
|
|
QUnit.test("select below", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
|
|
await click(".toggle-admin-menu");
|
|
|
|
await click(".topic-admin-multi-select .btn");
|
|
|
|
await click("#post_3 .select-below");
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
find(".selected-posts")
|
|
|
|
.html()
|
|
|
|
.includes(I18n.t("topic.multi_select.description", { count: 18 })),
|
|
|
|
"it should select the right number of posts"
|
|
|
|
);
|
|
|
|
|
|
|
|
await click("#post_2 .select-below");
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
find(".selected-posts")
|
|
|
|
.html()
|
|
|
|
.includes(I18n.t("topic.multi_select.description", { count: 19 })),
|
|
|
|
"it should select the right number of posts"
|
|
|
|
);
|
|
|
|
});
|
2019-01-10 18:06:01 +08:00
|
|
|
|
|
|
|
QUnit.test("View Hidden Replies", async assert => {
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
|
|
await click(".gap");
|
|
|
|
|
|
|
|
assert.equal(find(".gap").length, 0, "it hides gap");
|
|
|
|
});
|