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

70 lines
2.5 KiB
JavaScript
Raw Normal View History

2019-08-09 08:22:04 +00:00
import User from "model/user";
2019-08-12 10:59:32 +00:00
import MockAdapter from "axios-mock-adapter";
import Api from "common/api";
2019-08-09 08:22:04 +00:00
2020-07-02 08:03:00 +00:00
let chai = require("chai/chai");
2019-08-13 06:10:12 +00:00
let assert = chai.assert;
2019-08-09 08:24:20 +00:00
describe("model/user", () => {
2019-08-12 10:59:32 +00:00
const mock = new MockAdapter(Api);
2019-08-09 08:22:04 +00:00
it("should get entity name", () => {
const values = {ID: 5, FullName: "Max Last", PrimaryEmail: "test@test.com", RoleAdmin: true};
2019-08-09 08:22:04 +00:00
const user = new User(values);
const result = user.getEntityName();
assert.equal(result, "Max Last");
});
it("should get id", () => {
const values = {ID: 5, FullName: "Max Last", PrimaryEmail: "test@test.com", RoleAdmin: true};
2019-08-09 08:22:04 +00:00
const user = new User(values);
const result = user.getId();
assert.equal(result, 5);
});
2019-08-09 08:24:20 +00:00
it("should get model name", () => {
const result = User.getModelName();
assert.equal(result, "User");
});
it("should get collection resource", () => {
const result = User.getCollectionResource();
assert.equal(result, "users");
});
2019-08-12 10:59:32 +00:00
it("should get register form", async() => {
mock.onAny("users/52/register").reply(200, "registerForm");
const values = {ID: 52, FullName: "Max Last"};
2019-08-12 10:59:32 +00:00
const user = new User(values);
const result = await user.getRegisterForm();
assert.equal(result.definition, "registerForm");
mock.reset();
});
it("should get profile form", async() => {
mock.onAny("users/53/profile").reply(200, "profileForm");
const values = {ID: 53, FullName: "Max Last"};
2019-08-12 10:59:32 +00:00
const user = new User(values);
const result = await user.getProfileForm();
assert.equal(result.definition, "profileForm");
mock.reset();
});
it("should get change password", async() => {
mock.onPut("users/54/password").reply(200, {password: "old", new_password: "new"});
const values = {ID: 54, FullName: "Max Last", PrimaryEmail: "test@test.com", RoleAdmin: true};
2019-08-12 10:59:32 +00:00
const user = new User(values);
const result = await user.changePassword("old", "new");
assert.equal(result.new_password, "new");
});
it("should save profile", async() => {
mock.onPost("users/55/profile").reply(200, {FullName: "Max New",});
const values = {ID: 55, FullName: "Max Last", PrimaryEmail: "test@test.com", RoleAdmin: true};
2019-08-12 10:59:32 +00:00
const user = new User(values);
assert.equal(user.FullName, "Max Last");
2019-08-12 10:59:32 +00:00
await user.saveProfile();
assert.equal(user.FullName, "Max New");
2019-08-12 10:59:32 +00:00
});
});