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

102 lines
9.3 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";
window.__CONFIG__ = {"flags":"public debug experimental settings","name":"PhotoPrism","url":"http://localhost:2342/","title":"PhotoPrism","subtitle":"Browse your life","description":"Personal Photo Management","author":"PhotoPrism.org","version":"200527-5453cf2-Linux-x86_64-DEBUG","copyright":"(c) 2018-2020 PhotoPrism.org \u003chello@photoprism.org\u003e","debug":true,"readonly":false,"uploadNSFW":false,"public":true,"experimental":true,"disableSettings":false,"albums":[],"cameras":[{"ID":30003,"Slug":"apple-iphone-6","Model":"iPhone 6","Make":"Apple"},{"ID":30001,"Slug":"apple-iphone-se","Model":"iPhone SE","Make":"Apple"},{"ID":30004,"Slug":"canon-eos-6d","Model":"EOS 6D","Make":"Canon"},{"ID":30002,"Slug":"canon-eos-m6","Model":"EOS M6","Make":"Canon"},{"ID":30006,"Slug":"huawei-ele-l29","Model":"ELE-L29","Make":"HUAWEI"},{"ID":30005,"Slug":"motorola-moto-g-4","Model":"Moto G (4)","Make":"Motorola"},{"ID":1,"Slug":"zz","Model":"Unknown","Make":""}],"lenses":[{"ID":30003,"Slug":"22-0-mm","Model":"22.0 mm","Make":"","Type":""},{"ID":30005,"Slug":"ef16-35mm-f-2-8l-ii-usm","Model":"EF16-35mm f/2.8L II USM","Make":"","Type":""},{"ID":30004,"Slug":"iphone-6-back-camera-4-15mm-f-2-2","Model":"iPhone 6 back camera 4.15mm f/2.2","Make":"Apple","Type":""},{"ID":30001,"Slug":"iphone-se-back-camera-4-15mm-f-2-2","Model":"iPhone SE back camera 4.15mm f/2.2","Make":"Apple","Type":""},{"ID":30002,"Slug":"iphone-se-front-camera-2-15mm-f-2-4","Model":"iPhone SE front camera 2.15mm f/2.4","Make":"Apple","Type":""},{"ID":1,"Slug":"zz","Model":"Unknown","Make":"","Type":""}],"countries":[{"ID":"at","Slug":"austria","Name":"Austria"},{"ID":"bw","Slug":"botswana","Name":"Botswana"},{"ID":"ca","Slug":"canada","Name":"Canada"},{"ID":"fr","Slug":"france","Name":"France"},{"ID":"de","Slug":"germany","Name":"Germany"},{"ID":"gr","Slug":"greece","Name":"Greece"},{"ID":"za","Slug":"south-africa","Name":"South Africa"},{"ID":"us","Slug":"usa","Name":"USA"},{"ID":"zz","Slug":"zz","Name":"Unknown"}],"thumbnails":[{"Name":"fit_720","Width":720,"Height":720},{"Name":"fit_1280","Width":1280,"Height":1024},{"Name":"fit_2560","Width":2560,"Height":1600},{"Name":"fit_3840","Width":3840,"Height":2400},{"Name":"fit_1920","Width":1920,"Height":1200},{"Name":"fit_2048","Width":2048,"Height":2048}],"downloadToken":"2y71e0sr","previewToken":"static","jsHash":"14ba2de4","cssHash":"2b327230","settings":{"theme":"default","language":"en","templates":{"default":"index.tmpl"},"maps":{"animate":0,"style":"streets"},"features":{"archive":true,"private":true,"review":true,"upload":true,"import":true,"files":true,"moments":true,"labels":true,"places":true,"download":true,"edit":true,"share":true,"logs":true},"import":{"path":"/","move":false},"index":{"path":"/","convert":true,"rescan":false,"group":true}},"count":{"photos":385,"videos":1,"hidden":0,"favorites":1,"private":2,"review":4,"stories":0,"albums":0,"folders":14,"files":394,"moments":0,"countries":8,"places":0,"labels":46,"labelMaxPhotos":54},"pos":{"uid":"pqazcltc1x8d12lo","loc":"4777dc437584","utc":"2020-02-14T12:44:19Z","lat":47.207123,"lng":11.823489},"years":[2020,2019,2018,2017,2016],"colors":[{"Example":"#AB47BC","Name":"Purple","Slug":"purple"},{"Example":"#FF00FF","Name":"Magenta","Slug":"magenta"},{"Example":"#EC407A","Name":"Pink","Slug":"pink"},{"Example":"#EF5350","Name":"Red","Slug":"red"},{"Example":"#FFA726","Name":"Orange","Slug":"orange"},{"Example":"#D4AF37","Name":"Gold","Slug":"gold"},{"Example":"#FDD835","Name":"Yellow","Slug":"yellow"},{"Example":"#CDDC39","Name":"Lime","Slug":"lime"},{"Example":"#66BB6A","Name":"Green","Slug":"green"},{"Example":"#009688","Name":"Teal","Slug":"teal"},{"Example":"#00BCD4","Name":"Cyan","Slug":"cyan"},{"Example":"#2196F3","Name":"Blue","Slug":"blue"},{"Example":"#A1887F","Name":"Brown","Slug":"brown"},{"Example":"#F5F5F5","Name":"White","Slug":"white"},{"Example":"#9E9E9E","Name":"Grey","Slug":"grey"},{"Example":"#212121","Name":"Black","Slug":"black"}],"categories":[{"UID":"lqazz283gqjo05j9","Slug":"aircraft","Name":"Aircraft"},{"UID":"lqazyyc2xos6k0op",
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, UID: "ABC123", Name: "Black Cat", Slug: "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, UID: "ABC123", Name: "Black Cat", Slug: "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, UID: "ABC123", Name: "Black Cat", Slug: "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, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
2019-07-28 15:51:27 +00:00
const label = new Label(values);
const result = label.thumbnailUrl("xyz");
assert.equal(result, "/api/v1/labels/ABC123/t/static/xyz");
2019-07-28 15:51:27 +00:00
});
it("should get thumbnail src set", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
2019-07-28 15:51:27 +00:00
const label = new Label(values);
const result = label.thumbnailSrcset("");
assert.equal(result, "/api/v1/labels/ABC123/t/static/fit_720 720w, /api/v1/labels/ABC123/t/static/fit_1280 1280w, /api/v1/labels/ABC123/t/static/fit_1920 1920w, /api/v1/labels/ABC123/t/static/fit_2560 2560w, /api/v1/labels/ABC123/t/static/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, UID: "ABC123", Name: "Black Cat", Slug: "black-cat"};
2019-07-28 16:40:33 +00:00
const label = new Label(values);
const result = label.thumbnailSizes();
2019-07-28 16:40:33 +00:00
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");
});
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, UID: "ABC123", Name: "Black Cat", Slug: "black-cat", Favorite: false};
2019-08-09 11:43:47 +00:00
const label = new Label(values);
assert.equal(label.Favorite, false);
2019-08-09 11:43:47 +00:00
label.like();
assert.equal(label.Favorite, true);
2019-08-09 11:43:47 +00:00
});
it("should unlike label", () => {
const values = {ID: 5, UID: "ABC123",Name: "Black Cat", Slug: "black-cat", Favorite: true};
2019-08-09 11:43:47 +00:00
const label = new Label(values);
assert.equal(label.Favorite, true);
2019-08-09 11:43:47 +00:00
label.unlike();
assert.equal(label.Favorite, false);
2019-08-09 11:43:47 +00:00
});
it("should toggle like", () => {
const values = {ID: 5, UID: "ABC123", Name: "Black Cat", Slug: "black-cat", Favorite: true};
2019-08-09 11:43:47 +00:00
const label = new Label(values);
assert.equal(label.Favorite, true);
2019-08-09 11:43:47 +00:00
label.toggleLike();
assert.equal(label.Favorite, false);
2019-08-09 11:43:47 +00:00
label.toggleLike();
assert.equal(label.Favorite, true);
2019-08-09 11:43:47 +00:00
});
});