2020-03-24 09:39:09 +08:00
|
|
|
import { logIn } from "helpers/qunit-helpers";
|
|
|
|
import User from "discourse/models/user";
|
2019-12-11 12:04:02 +08:00
|
|
|
let BookmarkController;
|
|
|
|
|
|
|
|
moduleFor("controller:bookmark", {
|
|
|
|
beforeEach() {
|
2020-03-24 09:39:09 +08:00
|
|
|
logIn();
|
|
|
|
BookmarkController = this.subject({ currentUser: User.current() });
|
2020-04-02 07:57:48 +08:00
|
|
|
BookmarkController.onShow();
|
2019-12-11 17:00:37 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
afterEach() {
|
|
|
|
sandbox.restore();
|
2019-12-11 12:04:02 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function mockMomentTz(dateString) {
|
2020-03-18 09:12:23 +08:00
|
|
|
let now = moment.tz(dateString, BookmarkController.userTimezone);
|
2019-12-11 12:04:02 +08:00
|
|
|
sandbox.useFakeTimers(now.valueOf());
|
|
|
|
}
|
|
|
|
|
|
|
|
QUnit.test("showLaterToday when later today is tomorrow do not show", function(
|
|
|
|
assert
|
|
|
|
) {
|
2020-03-16 14:05:44 +08:00
|
|
|
mockMomentTz("2019-12-11T22:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
|
|
|
assert.equal(BookmarkController.get("showLaterToday"), false);
|
|
|
|
});
|
|
|
|
|
2020-03-16 14:05:44 +08:00
|
|
|
QUnit.test("showLaterToday when later today is after 5pm", function(assert) {
|
|
|
|
mockMomentTz("2019-12-11T15:00:00");
|
|
|
|
assert.equal(BookmarkController.get("showLaterToday"), false);
|
|
|
|
});
|
|
|
|
|
2019-12-11 12:04:02 +08:00
|
|
|
QUnit.test(
|
|
|
|
"showLaterToday when later today is before the end of the day, show",
|
|
|
|
function(assert) {
|
2020-03-16 14:05:44 +08:00
|
|
|
mockMomentTz("2019-12-11T10:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
|
|
|
assert.equal(BookmarkController.get("showLaterToday"), true);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
QUnit.test("nextWeek gets next week correctly", function(assert) {
|
2020-03-16 14:05:44 +08:00
|
|
|
mockMomentTz("2019-12-11T08:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
BookmarkController.nextWeek().format("YYYY-MM-DD"),
|
|
|
|
"2019-12-18"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test("nextMonth gets next month correctly", function(assert) {
|
2020-03-16 14:05:44 +08:00
|
|
|
mockMomentTz("2019-12-11T08:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
BookmarkController.nextMonth().format("YYYY-MM-DD"),
|
|
|
|
"2020-01-11"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
QUnit.test("laterThisWeek gets 2 days from now", function(assert) {
|
|
|
|
mockMomentTz("2019-12-10T08:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
assert.equal(
|
|
|
|
BookmarkController.laterThisWeek().format("YYYY-MM-DD"),
|
|
|
|
"2019-12-12"
|
|
|
|
);
|
|
|
|
});
|
2019-12-11 12:04:02 +08:00
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
QUnit.test("laterThisWeek returns null if we are at Thursday already", function(
|
|
|
|
assert
|
|
|
|
) {
|
|
|
|
mockMomentTz("2019-12-12T08:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
assert.equal(BookmarkController.laterThisWeek(), null);
|
|
|
|
});
|
2019-12-11 12:04:02 +08:00
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
QUnit.test("showLaterThisWeek returns true if < Thursday", function(assert) {
|
|
|
|
mockMomentTz("2019-12-10T08:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
assert.equal(BookmarkController.showLaterThisWeek, true);
|
|
|
|
});
|
2019-12-11 12:04:02 +08:00
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
QUnit.test("showLaterThisWeek returns false if > Thursday", function(assert) {
|
|
|
|
mockMomentTz("2019-12-12T08:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
assert.equal(BookmarkController.showLaterThisWeek, false);
|
|
|
|
});
|
2019-12-11 12:04:02 +08:00
|
|
|
QUnit.test("tomorrow gets tomorrow correctly", function(assert) {
|
2020-03-16 14:05:44 +08:00
|
|
|
mockMomentTz("2019-12-11T08:00:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
BookmarkController.tomorrow().format("YYYY-MM-DD"),
|
|
|
|
"2019-12-12"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test(
|
|
|
|
"startOfDay changes the time of the provided date to 8:00am correctly",
|
|
|
|
function(assert) {
|
|
|
|
let dt = moment.tz(
|
2020-03-16 14:05:44 +08:00
|
|
|
"2019-12-11T11:37:16",
|
2020-03-24 09:39:09 +08:00
|
|
|
BookmarkController.currentUser.resolvedTimezone()
|
2019-12-11 12:04:02 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
BookmarkController.startOfDay(dt).format("YYYY-MM-DD HH:mm:ss"),
|
|
|
|
"2019-12-11 08:00:00"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
QUnit.test(
|
|
|
|
"laterToday gets 3 hours from now and if before half-past, it sets the time to half-past",
|
|
|
|
function(assert) {
|
2020-03-16 14:05:44 +08:00
|
|
|
mockMomentTz("2019-12-11T08:13:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
BookmarkController.laterToday().format("YYYY-MM-DD HH:mm:ss"),
|
2020-03-16 14:05:44 +08:00
|
|
|
"2019-12-11 11:30:00"
|
2019-12-11 12:04:02 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
QUnit.test(
|
|
|
|
"laterToday gets 3 hours from now and if after half-past, it rounds up to the next hour",
|
|
|
|
function(assert) {
|
2020-03-16 14:05:44 +08:00
|
|
|
mockMomentTz("2019-12-11T08:43:00");
|
2019-12-11 12:04:02 +08:00
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
BookmarkController.laterToday().format("YYYY-MM-DD HH:mm:ss"),
|
2020-03-16 14:05:44 +08:00
|
|
|
"2019-12-11 12:00:00"
|
2019-12-11 12:04:02 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
2020-03-16 14:05:44 +08:00
|
|
|
|
2020-04-02 07:57:48 +08:00
|
|
|
QUnit.test(
|
|
|
|
"reminderAt - custom - defaults to 8:00am if the time is not selected",
|
|
|
|
function(assert) {
|
|
|
|
BookmarkController.customReminderDate = "2028-12-12";
|
|
|
|
BookmarkController.selectedReminderType =
|
|
|
|
BookmarkController.reminderTypes.CUSTOM;
|
|
|
|
const reminderAt = BookmarkController.reminderAt();
|
|
|
|
assert.equal(BookmarkController.customReminderTime, "08:00");
|
|
|
|
assert.equal(
|
|
|
|
reminderAt.toString(),
|
|
|
|
moment
|
|
|
|
.tz(
|
|
|
|
"2028-12-12 08:00",
|
|
|
|
BookmarkController.currentUser.resolvedTimezone()
|
|
|
|
)
|
|
|
|
.toString(),
|
|
|
|
"the custom date and time are parsed correctly with default time"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2020-03-16 14:05:44 +08:00
|
|
|
QUnit.test(
|
|
|
|
"loadLastUsedCustomReminderDatetime fills the custom reminder date + time if present in localStorage",
|
|
|
|
function(assert) {
|
|
|
|
mockMomentTz("2019-12-11T08:00:00");
|
|
|
|
localStorage.lastCustomBookmarkReminderDate = "2019-12-12";
|
|
|
|
localStorage.lastCustomBookmarkReminderTime = "08:00";
|
|
|
|
|
|
|
|
BookmarkController.loadLastUsedCustomReminderDatetime();
|
|
|
|
|
|
|
|
assert.equal(BookmarkController.lastCustomReminderDate, "2019-12-12");
|
|
|
|
assert.equal(BookmarkController.lastCustomReminderTime, "08:00");
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
QUnit.test(
|
|
|
|
"loadLastUsedCustomReminderDatetime does not fills the custom reminder date + time if the datetime in localStorage is < now",
|
|
|
|
function(assert) {
|
|
|
|
mockMomentTz("2019-12-11T08:00:00");
|
|
|
|
localStorage.lastCustomBookmarkReminderDate = "2019-12-11";
|
|
|
|
localStorage.lastCustomBookmarkReminderTime = "07:00";
|
|
|
|
|
|
|
|
BookmarkController.loadLastUsedCustomReminderDatetime();
|
|
|
|
|
|
|
|
assert.equal(BookmarkController.lastCustomReminderDate, null);
|
|
|
|
assert.equal(BookmarkController.lastCustomReminderTime, null);
|
|
|
|
}
|
|
|
|
);
|
2020-03-18 09:12:23 +08:00
|
|
|
|
2020-03-24 09:39:09 +08:00
|
|
|
QUnit.test("user timezone updates when the modal is shown", function(assert) {
|
|
|
|
User.current().changeTimezone(null);
|
|
|
|
let stub = sandbox.stub(moment.tz, "guess").returns("Europe/Moscow");
|
|
|
|
BookmarkController.onShow();
|
|
|
|
assert.equal(BookmarkController.userHasTimezoneSet, true);
|
|
|
|
assert.equal(
|
|
|
|
BookmarkController.userTimezone,
|
|
|
|
"Europe/Moscow",
|
|
|
|
"the user does not have their timezone set and a timezone is guessed"
|
|
|
|
);
|
|
|
|
User.current().changeTimezone("Australia/Brisbane");
|
|
|
|
BookmarkController.onShow();
|
|
|
|
assert.equal(BookmarkController.userHasTimezoneSet, true);
|
|
|
|
assert.equal(
|
|
|
|
BookmarkController.userTimezone,
|
|
|
|
"Australia/Brisbane",
|
|
|
|
"the user does their timezone set"
|
|
|
|
);
|
|
|
|
stub.restore();
|
|
|
|
});
|