photoprism/frontend/tests/unit/model/label_test.js

100 lines
4 KiB
JavaScript
Raw Normal View History

2019-07-28 15:51:27 +00:00
import Label from "model/label";
2019-07-28 16:40:33 +00:00
import MockAdapter from "axios-mock-adapter";
import Api from "common/api";
2019-08-13 06:09:38 +00:00
let chai = require('../../../node_modules/chai/chai');
let assert = chai.assert;
2019-07-28 15:51:27 +00:00
2019-07-28 16:40:33 +00:00
const mock = new MockAdapter(Api);
mock
.onPost().reply(200)
.onDelete().reply(200);
2019-07-28 16:40:33 +00:00
describe("model/label", () => {
2019-07-28 15:51:27 +00:00
it("should get label entity name", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat"};
2019-07-28 15:51:27 +00:00
const label = new Label(values);
const result = label.getEntityName();
assert.equal(result, "black-cat");
});
it("should get label id", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat"};
2019-07-28 15:51:27 +00:00
const label = new Label(values);
const result = label.getId();
assert.equal(result, "ABC123");
2019-07-28 15:51:27 +00:00
});
it("should get label title", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat"};
2019-07-28 15:51:27 +00:00
const label = new Label(values);
const result = label.getTitle();
assert.equal(result, "Black Cat");
});
it("should get thumbnail url", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat"};
2019-07-28 15:51:27 +00:00
const label = new Label(values);
const result = label.getThumbnailUrl("xyz");
assert.equal(result, "/api/v1/labels/ABC123/thumbnail/xyz");
2019-07-28 15:51:27 +00:00
});
it("should get thumbnail src set", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat"};
2019-07-28 15:51:27 +00:00
const label = new Label(values);
const result = label.getThumbnailSrcset("");
assert.equal(result, "/api/v1/labels/ABC123/thumbnail/fit_720 720w, /api/v1/labels/ABC123/thumbnail/fit_1280 1280w, /api/v1/labels/ABC123/thumbnail/fit_1920 1920w, /api/v1/labels/ABC123/thumbnail/fit_2560 2560w, /api/v1/labels/ABC123/thumbnail/fit_3840 3840w");
2019-07-28 15:51:27 +00:00
});
2019-07-28 16:40:33 +00:00
it("should get thumbnail sizes", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat"};
2019-07-28 16:40:33 +00:00
const label = new Label(values);
const result = label.getThumbnailSizes();
assert.equal(result, "(min-width: 2560px) 3840px, (min-width: 1920px) 2560px, (min-width: 1280px) 1920px, (min-width: 720px) 1280px, 720px");
});
it("should get date string", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat", CreatedAt: "2012-07-08T14:45:39Z"};
const label = new Label(values);
const result = label.getDateString();
assert.equal(result, "Jul 8, 2012, 2:45 PM");
});
2019-07-28 16:40:33 +00:00
it("should get model name", () => {
const result = Label.getModelName();
assert.equal(result, "Label");
});
it("should get collection resource", () => {
const result = Label.getCollectionResource();
assert.equal(result, "labels");
});
2019-08-09 11:43:47 +00:00
it("should like label", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat", LabelFavorite: false};
2019-08-09 11:43:47 +00:00
const label = new Label(values);
assert.equal(label.LabelFavorite, false);
label.like();
assert.equal(label.LabelFavorite, true);
});
it("should unlike label", () => {
const values = {ID: 5, LabelUUID: "ABC123",LabelName: "Black Cat", LabelSlug: "black-cat", LabelFavorite: true};
2019-08-09 11:43:47 +00:00
const label = new Label(values);
assert.equal(label.LabelFavorite, true);
label.unlike();
assert.equal(label.LabelFavorite, false);
});
it("should toggle like", () => {
const values = {ID: 5, LabelUUID: "ABC123", LabelName: "Black Cat", LabelSlug: "black-cat", LabelFavorite: true};
2019-08-09 11:43:47 +00:00
const label = new Label(values);
assert.equal(label.LabelFavorite, true);
label.toggleLike();
assert.equal(label.LabelFavorite, false);
label.toggleLike();
assert.equal(label.LabelFavorite, true);
});
});