This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/tests/integration/components/bookmark-icon-test.js

88 lines
2.1 KiB
JavaScript

import Bookmark from "discourse/models/bookmark";
import I18n from "I18n";
import { formattedReminderTime } from "discourse/lib/bookmark";
import { tomorrow } from "discourse/lib/time-utils";
import componentTest, {
setupRenderingTest,
} from "discourse/tests/helpers/component-test";
import hbs from "htmlbars-inline-precompile";
import {
discourseModule,
exists,
query,
} from "discourse/tests/helpers/qunit-helpers";
discourseModule("Integration | Component | bookmark-icon", function (hooks) {
setupRenderingTest(hooks);
componentTest("with reminder", {
template: hbs`{{bookmark-icon bookmark=bookmark}}`,
beforeEach() {
this.setProperties({
bookmark: Bookmark.create({
reminder_at: tomorrow(this.currentUser.timezone),
name: "some name",
}),
});
},
async test(assert) {
assert.ok(
exists(".d-icon-discourse-bookmark-clock.bookmark-icon__bookmarked")
);
assert.strictEqual(
query(".svg-icon-title")["title"],
I18n.t("bookmarks.created_with_reminder_generic", {
date: formattedReminderTime(
this.bookmark.reminder_at,
this.currentUser.timezone
),
name: "some name",
})
);
},
});
componentTest("no reminder", {
template: hbs`{{bookmark-icon bookmark=bookmark}}`,
beforeEach() {
this.set(
"bookmark",
Bookmark.create({
name: "some name",
})
);
},
async test(assert) {
assert.ok(exists(".d-icon-bookmark.bookmark-icon__bookmarked"));
assert.strictEqual(
query(".svg-icon-title")["title"],
I18n.t("bookmarks.created_generic", {
name: "some name",
})
);
},
});
componentTest("null bookmark", {
template: hbs`{{bookmark-icon bookmark=bookmark}}`,
beforeEach() {
this.setProperties({
bookmark: null,
});
},
async test(assert) {
assert.ok(exists(".d-icon-bookmark.bookmark-icon"));
assert.strictEqual(
query(".svg-icon-title")["title"],
I18n.t("bookmarks.create")
);
},
});
});