photoprism/frontend/tests/unit/common/clipboard_test.js
2020-07-02 10:03:00 +02:00

211 lines
11 KiB
JavaScript

import Clipboard from "common/clipboard";
import Photo from "model/photo";
import Album from "model/album";
window.__CONFIG__ = {"name":"PhotoPrism","version":"200531-4684f66-Linux-x86_64-DEBUG","copyright":"(c) 2018-2020 PhotoPrism.org \u003chello@photoprism.org\u003e","flags":"public debug experimental settings","siteUrl":"http://localhost:2342/","siteTitle":"PhotoPrism","siteCaption":"Browse your life","siteDescription":"Personal Photo Management powered by Go and Google TensorFlow. Free and open-source.","siteAuthor":"Anonymous","debug":true,"readonly":false,"uploadNSFW":false,"public":true,"experimental":true,"disableSettings":false,"albumCategories":null,"albums":[],"cameras":[{"ID":2,"Slug":"olympus-c2500l","Name":"Olympus C2500L","Make":"Olympus","Model":"C2500L"},{"ID":1,"Slug":"zz","Name":"Unknown","Make":"","Model":"Unknown"}],"lenses":[{"ID":1,"Slug":"zz","Name":"Unknown","Make":"","Model":"Unknown","Type":""}],"countries":[{"ID":"de","Slug":"germany","Name":"Germany"},{"ID":"is","Slug":"iceland","Name":"Iceland"},{"ID":"zz","Slug":"zz","Name":"Unknown"}],"thumbnails":[{"Name":"fit_720","Width":720,"Height":720},{"Name":"fit_2048","Width":2048,"Height":2048},{"Name":"fit_1280","Width":1280,"Height":1024},{"Name":"fit_1920","Width":1920,"Height":1200},{"Name":"fit_2560","Width":2560,"Height":1600},{"Name":"fit_3840","Width":3840,"Height":2400}],"downloadToken":"1uhovi0e","previewToken":"static","jsHash":"0fd34136","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":{"cameras":1,"lenses":0,"countries":2,"photos":126,"videos":0,"hidden":3,"favorites":1,"private":0,"review":0,"stories":0,"albums":0,"moments":0,"months":0,"folders":0,"files":255,"places":0,"labels":13,"labelMaxPhotos":1},"pos":{"uid":"","loc":"","utc":"0001-01-01T00:00:00Z","lat":0,"lng":0},"years":[2003,2002],"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":"lqb6y631re96cper","Slug":"animal","Name":"Animal"},{"UID":"lqb6y5gvo9avdfx5","Slug":"architecture","Name":"Architecture"},{"UID":"lqb6y633nhfj1uzt","Slug":"bird","Name":"Bird"},{"UID":"lqb6y633g3hxg1aq","Slug":"farm","Name":"Farm"},{"UID":"lqb6y4i1ez9cw5bi","Slug":"nature","Name":"Nature"},{"UID":"lqb6y4f2v7dw8irs","Slug":"plant","Name":"Plant"},{"UID":"lqb6y6s2ohhmu0fn","Slug":"reptile","Name":"Reptile"},{"UID":"lqb6y6ctgsq2g2np","Slug":"water","Name":"Water"}],"clip":160,"server":{"cores":2,"routines":23,"memory":{"used":1224531272,"reserved":1416904088,"info":"Used 1.2 GB / Reserved 1.4 GB"}}};
let chai = require("chai/chai");
let assert = chai.assert;
let sinon = require("sinon");
describe("common/clipboard", () => {
it("should construct clipboard", () => {
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
assert.equal(clipboard.storageKey, "clipboard");
assert.equal(clipboard.selection, "");
});
it("should toggle model", () => {
let spy = sinon.spy(console, "log");
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.toggle();
assert(spy.calledWith("Clipboard::toggle() - not a model:"));
assert.equal(clipboard.storageKey, "clipboard");
assert.equal(clipboard.selection, "");
const values = {ID: 5, UID: "ABC123", Title: "Crazy Cat"};
const photo = new Photo(values);
clipboard.toggle(photo);
assert.equal(clipboard.selection[0], "ABC123");
const values2 = {ID: 8, UID: "ABC124", Title: "Crazy Cat"};
const photo2 = new Photo(values2);
clipboard.toggle(photo2);
assert.equal(clipboard.selection[0], "ABC123");
assert.equal(clipboard.selection[1], "ABC124");
clipboard.toggle(photo);
assert.equal(clipboard.selection[0], "ABC124");
console.log.restore();
});
it("should toggle id", () => {
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.toggleId(3);
assert.equal(clipboard.selection[0], 3);
clipboard.toggleId(3);
assert.equal(clipboard.selection, "");
});
it("should add model", () => {
let spy = sinon.spy(console, "log");
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.add();
assert.equal(clipboard.storageKey, "clipboard");
assert.equal(clipboard.selection, "");
assert(spy.calledWith("Clipboard::add() - not a model:"));
const values = {ID: 5, UID: "ABC124", Title: "Crazy Cat"};
const photo = new Photo(values);
clipboard.add(photo);
assert.equal(clipboard.selection[0], "ABC124");
clipboard.add(photo);
assert.equal(clipboard.selection[0], "ABC124");
console.log.restore();
});
it("should add id", () => {
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.addId(99);
assert.equal(clipboard.selection[0], 99);
});
it("should test whether clipboard has model", () => {
let spy = sinon.spy(console, "log");
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.has();
assert.equal(clipboard.storageKey, "clipboard");
assert.equal(clipboard.selection, "");
assert(spy.calledWith("Clipboard::has() - not a model:"));
const values = {ID: 5, UID: "ABC124", Title: "Crazy Cat"};
const photo = new Photo(values);
clipboard.add(photo);
assert.equal(clipboard.selection[0], "ABC124");
const result = clipboard.has(photo);
assert.equal(result, true);
const values2 = {ID: 5, Title: "Christmas 2019", Slug: "christmas-2019", UID: 66};
const album = new Album(values2);
const result2 = clipboard.has(album);
assert.equal(result2, false);
console.log.restore();
});
it("should test whether clipboard has id", () => {
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.addId(77);
assert.equal(clipboard.hasId(77), true);
assert.equal(clipboard.hasId(78), false);
});
it("should remove model", () => {
let spy = sinon.spy(console, "log");
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.remove();
assert.equal(clipboard.storageKey, "clipboard");
assert.equal(clipboard.selection, "");
assert(spy.calledWith("Clipboard::remove() - not a model:"));
const values = {ID: 5, UID: "ABC123", Title: "Crazy Cat"};
const photo = new Photo(values);
clipboard.add(photo);
assert.equal(clipboard.selection[0], "ABC123");
clipboard.remove(photo);
assert.equal(clipboard.selection, "");
const values2 = {ID: 5, Name: "Christmas 2019", Slug: "christmas-2019", UID: 66};
const album = new Album(values2);
clipboard.remove(album);
assert.equal(clipboard.selection, "");
console.log.restore();
});
it("should set and get ids", () => {
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.setIds(8);
assert.equal(clipboard.selection, "");
clipboard.setIds([5, 6, 9]);
assert.equal(clipboard.selection[0], 5);
assert.equal(clipboard.selection[2], 9);
const result = clipboard.getIds();
assert.equal(result[1], 6);
assert.equal(result.length, 3);
});
it("should clear", () => {
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
clipboard.setIds([5, 6, 9]);
assert.equal(clipboard.selection[0], 5);
clipboard.clear();
assert.equal(clipboard.selection, "");
});
it("should add range", () => {
const storage = window.localStorage;
const key = "clipboard";
const clipboard = new Clipboard(storage, key);
clipboard.clear();
const values = {ID: 5, UID: "ABC124", Title: "Crazy Cat"};
const photo = new Photo(values);
const values2 = {ID: 6, UID: "ABC125", Title: "Crazy Dog"};
const photo2 = new Photo(values2);
const values3 = {ID: 7, UID: "ABC128", Title: "Cute Dog"};
const photo3 = new Photo(values3);
const values4 = {ID: 8, UID: "ABC129", Title: "Turtle"};
const photo4 = new Photo(values4);
const Photos = [photo, photo2, photo3, photo4];
clipboard.addRange(2);
assert.equal(clipboard.selection.length, 0);
clipboard.clear();
clipboard.addRange(2, Photos);
assert.equal(clipboard.selection[0], "ABC128");
assert.equal(clipboard.selection.length, 1);
clipboard.addRange(1, Photos);
assert.equal(clipboard.selection.length, 2);
assert.equal(clipboard.selection[0], "ABC128");
assert.equal(clipboard.selection[1], "ABC125");
clipboard.clear();
clipboard.add(photo);
assert.equal(clipboard.selection.length, 1);
clipboard.addRange(3, Photos);
assert.equal(clipboard.selection.length, 4);
});
});