photoprism/frontend/tests/unit/model/label_test.js
Michael Mayer 03ec4b586d Initial commit for folders and moments #154 #260 #331
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-05-23 20:58:58 +02:00

100 lines
3.8 KiB
JavaScript

import Label from "model/label";
import MockAdapter from "axios-mock-adapter";
import Api from "common/api";
let chai = require('../../../node_modules/chai/chai');
let assert = chai.assert;
const mock = new MockAdapter(Api);
mock
.onPost().reply(200)
.onDelete().reply(200);
describe("model/label", () => {
it("should get label entity name", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
const label = new Label(values);
const result = label.getEntityName();
assert.equal(result, "black-cat");
});
it("should get label id", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
const label = new Label(values);
const result = label.getId();
assert.equal(result, "ABC123");
});
it("should get label title", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
const label = new Label(values);
const result = label.getTitle();
assert.equal(result, "Black Cat");
});
it("should get thumbnail url", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
const label = new Label(values);
const result = label.thumbnailUrl("xyz");
assert.equal(result, "/api/v1/labels/ABC123/thumbnail/xyz");
});
it("should get thumbnail src set", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
const label = new Label(values);
const result = label.thumbnailSrcset("");
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");
});
it("should get thumbnail sizes", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
const label = new Label(values);
const result = label.thumbnailSizes();
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, UID: "ABC123", Name: "Black Cat", Slug: "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");
});
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");
});
it("should like label", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat", Favorite: false};
const label = new Label(values);
assert.equal(label.Favorite, false);
label.like();
assert.equal(label.Favorite, true);
});
it("should unlike label", () => {
const values = {ID: 5, UID: "ABC123",Name: "Black Cat", Slug: "black-cat", Favorite: true};
const label = new Label(values);
assert.equal(label.Favorite, true);
label.unlike();
assert.equal(label.Favorite, false);
});
it("should toggle like", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat", Favorite: true};
const label = new Label(values);
assert.equal(label.Favorite, true);
label.toggleLike();
assert.equal(label.Favorite, false);
label.toggleLike();
assert.equal(label.Favorite, true);
});
});