105 lines
3.9 KiB
JavaScript
105 lines
3.9 KiB
JavaScript
const { ObjectId } = require('mongodb');
|
|
const AbstractUser = require('../src/server/interfaces/AbstractUser');
|
|
const { User, UserApplication } = require('../src/server/structures');
|
|
const { Util } = require('../src/util');
|
|
|
|
test('Abstract user', () => {
|
|
expect(() => new AbstractUser()).toThrow();
|
|
const Extended = class extends AbstractUser { };
|
|
|
|
const objId = new ObjectId();
|
|
expect(() => new Extended()).toThrow();
|
|
expect(() => new Extended(() => null)).toThrow();
|
|
expect(() => new Extended(() => null, { id: 123 })).toThrow();
|
|
expect(() => new Extended(() => null, { id: '123' })).toThrow();
|
|
expect(() => new Extended(() => null, { id: objId, name: 'dingus' })).not.toThrow();
|
|
|
|
const save = jest.fn();
|
|
|
|
const now = Date.now();
|
|
const permissions = {
|
|
administrator: 5
|
|
};
|
|
const instance = new Extended(save, { id: objId, name: 'navy', permissions, createdTimestamp: now });
|
|
instance.save();
|
|
|
|
expect(save).toHaveBeenCalled();
|
|
expect(instance.hasPermission('administrator', 10)).toBe(false);
|
|
expect(instance.hasPermission('administrator')).toBe(true);
|
|
expect(instance.json).toHaveProperty('id');
|
|
expect(instance.jsonPrivate).toHaveProperty('_id');
|
|
expect(instance.createdAt.getTime()).toEqual(now);
|
|
expect(instance.cachedTimestamp).toBeGreaterThanOrEqual(now);
|
|
|
|
});
|
|
|
|
test('User structure', async () => {
|
|
|
|
expect(() => new User()).toThrow();
|
|
const save = jest.fn();
|
|
const permissions = { developer: 5 };
|
|
const id = new ObjectId();
|
|
const name = 'navy';
|
|
const password = Util.randomString();
|
|
const instance = new User(save, { id, name, permissions, password });
|
|
|
|
expect(instance.passwordLoginEnabled).toBe(true);
|
|
expect(instance.avatar).toBe(null);
|
|
|
|
const saveApp = jest.fn();
|
|
const appName = 'ship';
|
|
const description = 'A ship';
|
|
const appId = new ObjectId();
|
|
const token = Util.randomUUID();
|
|
await expect(() => new UserApplication(saveApp, { description })).toThrow();
|
|
const app = new UserApplication(saveApp, { id: appId, token, name: appName, description, ownerId: instance.id });
|
|
app.save();
|
|
expect(app.name).toBe(appName);
|
|
expect(app.description).toBe(description);
|
|
expect(saveApp).toHaveBeenCalledWith(app);
|
|
|
|
const pw = 'Pw123';
|
|
await instance.setPassword(pw, true);
|
|
expect(instance.passwordLoginEnabled).toBe(true);
|
|
expect(await instance.authenticate(pw)).toBe(true);
|
|
|
|
await expect(() => instance.setPassword({ prop: 'val' })).rejects.toThrow();
|
|
|
|
const profile = { username: 'dingus', id: 'asf231t' };
|
|
instance.addExternalProfile('platform', profile);
|
|
expect(instance.json.externalProfiles[0]).toEqual(profile);
|
|
expect(instance.hasExternalProfile('platform')).toEqual(true);
|
|
|
|
expect(instance.jsonPrivate).toHaveProperty('_id', id);
|
|
expect(instance.json).toHaveProperty('id', id.toString());
|
|
expect(instance.json).toHaveProperty('displayName', name);
|
|
expect(instance.json).not.toHaveProperty('password');
|
|
|
|
instance.save();
|
|
expect(save).toHaveBeenCalledWith(instance);
|
|
|
|
});
|
|
|
|
test('Application structure', () => {
|
|
expect(() => new UserApplication()).toThrow();
|
|
|
|
const save = jest.fn();
|
|
const permissions = { developer: 5 };
|
|
const id = new ObjectId();
|
|
const ownerId = new ObjectId();
|
|
const name = 'ship';
|
|
const token = Util.randomUUID();
|
|
const instance = new UserApplication(save, { id, name, permissions, token, ownerId });
|
|
|
|
expect(instance.ownerId).toEqual(ownerId.toString());
|
|
expect(instance.jsonPrivate).toHaveProperty('_id', id);
|
|
expect(instance.jsonPrivate).toHaveProperty('token', token);
|
|
expect(instance.json).toHaveProperty('id', id.toString());
|
|
expect(instance.json).toHaveProperty('name', name);
|
|
expect(instance.json).toHaveProperty('ownerId', ownerId);
|
|
expect(instance.json).not.toHaveProperty('password');
|
|
|
|
instance.save();
|
|
expect(save).toHaveBeenCalledWith(instance);
|
|
|
|
}); |