2015-04-07 02:14:00 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2020-03-03 03:24:31 +08:00
|
|
|
import pretender from "helpers/create-pretender";
|
|
|
|
import Draft from "discourse/models/draft";
|
|
|
|
import { Promise } from "rsvp";
|
2014-07-31 01:27:14 +08:00
|
|
|
|
2015-04-22 02:36:46 +08:00
|
|
|
acceptance("User", { loggedIn: true });
|
2014-07-31 01:27:14 +08:00
|
|
|
|
2019-06-26 22:02:55 +08:00
|
|
|
QUnit.test("Invalid usernames", async assert => {
|
2020-03-03 03:24:31 +08:00
|
|
|
pretender.get("/u/eviltrout%2F..%2F..%2F.json", () => {
|
2019-06-27 17:13:44 +08:00
|
|
|
return [400, { "Content-Type": "application/json" }, {}];
|
2019-06-26 22:02:55 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
await visit("/u/eviltrout%2F..%2F..%2F/summary");
|
|
|
|
|
|
|
|
assert.equal(currentPath(), "exception-unknown");
|
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test("Unicode usernames", async assert => {
|
|
|
|
await visit("/u/%E3%83%A9%E3%82%A4%E3%82%AA%E3%83%B3/summary");
|
|
|
|
|
|
|
|
assert.equal(currentPath(), "user.summary");
|
|
|
|
});
|
|
|
|
|
2018-07-19 22:40:12 +08:00
|
|
|
QUnit.test("Invites", async assert => {
|
|
|
|
await visit("/u/eviltrout/invited/pending");
|
|
|
|
assert.ok($("body.user-invites-page").length, "has the body class");
|
2016-11-11 02:33:31 +08:00
|
|
|
});
|
|
|
|
|
2018-07-19 22:40:12 +08:00
|
|
|
QUnit.test("Messages", async assert => {
|
|
|
|
await visit("/u/eviltrout/messages");
|
|
|
|
assert.ok($("body.user-messages-page").length, "has the body class");
|
2016-11-11 02:33:31 +08:00
|
|
|
});
|
|
|
|
|
2018-07-19 22:40:12 +08:00
|
|
|
QUnit.test("Notifications", async assert => {
|
|
|
|
await visit("/u/eviltrout/notifications");
|
|
|
|
assert.ok($("body.user-notifications-page").length, "has the body class");
|
2019-01-16 15:55:18 +08:00
|
|
|
|
|
|
|
const $links = find(".item.notification a");
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
$links[1].href.includes(
|
2019-01-16 16:34:48 +08:00
|
|
|
"/u/eviltrout/notifications/likes-received?acting_username=aquaman"
|
2019-01-16 15:55:18 +08:00
|
|
|
)
|
|
|
|
);
|
2016-08-03 01:21:06 +08:00
|
|
|
});
|
|
|
|
|
2018-07-19 22:40:12 +08:00
|
|
|
QUnit.test("Root URL - Viewing Self", async assert => {
|
|
|
|
await visit("/u/eviltrout");
|
|
|
|
assert.ok($("body.user-activity-page").length, "has the body class");
|
|
|
|
assert.equal(
|
|
|
|
currentPath(),
|
|
|
|
"user.userActivity.index",
|
|
|
|
"it defaults to activity"
|
|
|
|
);
|
|
|
|
assert.ok(exists(".container.viewing-self"), "has the viewing-self class");
|
2017-10-14 03:20:42 +08:00
|
|
|
});
|
|
|
|
|
2018-07-19 22:40:12 +08:00
|
|
|
QUnit.test("Viewing Summary", async assert => {
|
|
|
|
await visit("/u/eviltrout/summary");
|
2019-01-10 18:06:01 +08:00
|
|
|
|
2018-07-19 22:40:12 +08:00
|
|
|
assert.ok(exists(".replies-section li a"), "replies");
|
|
|
|
assert.ok(exists(".topics-section li a"), "topics");
|
|
|
|
assert.ok(exists(".links-section li a"), "links");
|
|
|
|
assert.ok(exists(".replied-section .user-info"), "liked by");
|
|
|
|
assert.ok(exists(".liked-by-section .user-info"), "liked by");
|
|
|
|
assert.ok(exists(".liked-section .user-info"), "liked");
|
|
|
|
assert.ok(exists(".badges-section .badge-card"), "badges");
|
|
|
|
assert.ok(exists(".top-categories-section .category-link"), "top categories");
|
2017-10-14 03:20:42 +08:00
|
|
|
});
|
FEATURE: Drafts view in user profile
* add drafts.json endpoint, user profile tab with drafts stream
* improve drafts stream display in user profile
* truncate excerpts in drafts list, better handling for resume draft action
* improve draft stream SQL query, add rspec tests
* if composer is open, quietly close it when user opens another draft from drafts stream; load PM draft only when user is in /u/username/messages (instead of /u/username)
* cleanup
* linting fixes
* apply prettier styling to modified files
* add client tests for drafts, includes a fixture for drafts.json
* improvements to code following review
* refresh drafts route when user deletes a draft open in the composer while being in the drafts route; minor prettier scss fix
* added more spec tests, deleted an acceptance test for removing drafts that was too finicky, formatting and code style fixes, added appEvent for draft:destroyed
* prettier, eslint fixes
* use "username_lower" from users table, added error handling for rejected promises
* adds guardian spec for can_see_drafts, adds improvements following code review
* move DraftsController spec to its own file
* fix failing drafts qunit test, use getOwner instead of deprecated this.container
* limit test fixture for draft.json testing to new_topic request only
2018-08-01 14:34:54 +08:00
|
|
|
|
|
|
|
QUnit.test("Viewing Drafts", async assert => {
|
2020-03-03 03:24:31 +08:00
|
|
|
sandbox.stub(Draft, "get").returns(
|
|
|
|
Promise.resolve({
|
|
|
|
draft: null,
|
|
|
|
draft_sequence: 0
|
|
|
|
})
|
|
|
|
);
|
2018-12-12 17:21:51 +08:00
|
|
|
|
FEATURE: Drafts view in user profile
* add drafts.json endpoint, user profile tab with drafts stream
* improve drafts stream display in user profile
* truncate excerpts in drafts list, better handling for resume draft action
* improve draft stream SQL query, add rspec tests
* if composer is open, quietly close it when user opens another draft from drafts stream; load PM draft only when user is in /u/username/messages (instead of /u/username)
* cleanup
* linting fixes
* apply prettier styling to modified files
* add client tests for drafts, includes a fixture for drafts.json
* improvements to code following review
* refresh drafts route when user deletes a draft open in the composer while being in the drafts route; minor prettier scss fix
* added more spec tests, deleted an acceptance test for removing drafts that was too finicky, formatting and code style fixes, added appEvent for draft:destroyed
* prettier, eslint fixes
* use "username_lower" from users table, added error handling for rejected promises
* adds guardian spec for can_see_drafts, adds improvements following code review
* move DraftsController spec to its own file
* fix failing drafts qunit test, use getOwner instead of deprecated this.container
* limit test fixture for draft.json testing to new_topic request only
2018-08-01 14:34:54 +08:00
|
|
|
await visit("/u/eviltrout/activity/drafts");
|
|
|
|
assert.ok(exists(".user-stream"), "has drafts stream");
|
|
|
|
assert.ok(
|
2018-12-12 17:21:51 +08:00
|
|
|
exists(".user-stream .user-stream-item-draft-actions"),
|
FEATURE: Drafts view in user profile
* add drafts.json endpoint, user profile tab with drafts stream
* improve drafts stream display in user profile
* truncate excerpts in drafts list, better handling for resume draft action
* improve draft stream SQL query, add rspec tests
* if composer is open, quietly close it when user opens another draft from drafts stream; load PM draft only when user is in /u/username/messages (instead of /u/username)
* cleanup
* linting fixes
* apply prettier styling to modified files
* add client tests for drafts, includes a fixture for drafts.json
* improvements to code following review
* refresh drafts route when user deletes a draft open in the composer while being in the drafts route; minor prettier scss fix
* added more spec tests, deleted an acceptance test for removing drafts that was too finicky, formatting and code style fixes, added appEvent for draft:destroyed
* prettier, eslint fixes
* use "username_lower" from users table, added error handling for rejected promises
* adds guardian spec for can_see_drafts, adds improvements following code review
* move DraftsController spec to its own file
* fix failing drafts qunit test, use getOwner instead of deprecated this.container
* limit test fixture for draft.json testing to new_topic request only
2018-08-01 14:34:54 +08:00
|
|
|
"has draft action buttons"
|
|
|
|
);
|
|
|
|
|
|
|
|
await click(".user-stream button.resume-draft:eq(0)");
|
|
|
|
assert.ok(
|
|
|
|
exists(".d-editor-input"),
|
|
|
|
"composer is visible after resuming a draft"
|
|
|
|
);
|
2020-03-03 03:24:31 +08:00
|
|
|
sandbox.restore();
|
FEATURE: Drafts view in user profile
* add drafts.json endpoint, user profile tab with drafts stream
* improve drafts stream display in user profile
* truncate excerpts in drafts list, better handling for resume draft action
* improve draft stream SQL query, add rspec tests
* if composer is open, quietly close it when user opens another draft from drafts stream; load PM draft only when user is in /u/username/messages (instead of /u/username)
* cleanup
* linting fixes
* apply prettier styling to modified files
* add client tests for drafts, includes a fixture for drafts.json
* improvements to code following review
* refresh drafts route when user deletes a draft open in the composer while being in the drafts route; minor prettier scss fix
* added more spec tests, deleted an acceptance test for removing drafts that was too finicky, formatting and code style fixes, added appEvent for draft:destroyed
* prettier, eslint fixes
* use "username_lower" from users table, added error handling for rejected promises
* adds guardian spec for can_see_drafts, adds improvements following code review
* move DraftsController spec to its own file
* fix failing drafts qunit test, use getOwner instead of deprecated this.container
* limit test fixture for draft.json testing to new_topic request only
2018-08-01 14:34:54 +08:00
|
|
|
});
|