1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-23 20:07:40 +02:00
unleash.unleash/src/test/e2e/stores/user-store.e2e.test.ts

163 lines
4.8 KiB
TypeScript
Raw Normal View History

import NotFoundError from '../../../lib/error/notfound-error';
import dbInit from '../helpers/database-init';
import getLogger from '../../fixtures/no-logger';
2020-05-12 23:05:26 +02:00
let stores;
let db;
2020-05-12 23:05:26 +02:00
beforeAll(async () => {
db = await dbInit('user_store_serial', getLogger);
2020-05-12 23:05:26 +02:00
stores = db.stores;
});
afterAll(async () => {
await db.destroy();
2020-05-12 23:05:26 +02:00
});
test('should have no users', async () => {
2020-05-12 23:05:26 +02:00
const users = await stores.userStore.getAll();
expect(users).toEqual([]);
2020-05-12 23:05:26 +02:00
});
test('should insert new user with email', async () => {
const user = { email: 'me2@mail.com' };
2020-05-12 23:05:26 +02:00
await stores.userStore.upsert(user);
const users = await stores.userStore.getAll();
expect(users[0].email).toEqual(user.email);
expect(users[0].id).toBeTruthy();
2020-05-12 23:05:26 +02:00
});
test('should not allow two users with same email', async () => {
await expect(async () => {
await stores.userStore.insert({ email: 'me2@mail.com' });
await stores.userStore.insert({ email: 'me2@mail.com' });
}).rejects.toThrow(/duplicate key value violates unique constraint/);
2020-05-12 23:05:26 +02:00
});
test('should insert new user with email and return it', async () => {
const user = { email: 'me2@mail.com' };
2020-05-12 23:05:26 +02:00
const newUser = await stores.userStore.upsert(user);
expect(newUser.email).toEqual(user.email);
expect(newUser.id).toBeTruthy();
2020-05-12 23:05:26 +02:00
});
test('should insert new user with username', async () => {
const user = { username: 'admin' };
2020-05-12 23:05:26 +02:00
await stores.userStore.upsert(user);
const dbUser = await stores.userStore.getByQuery(user);
expect(dbUser.username).toEqual(user.username);
2020-05-12 23:05:26 +02:00
});
test('Should require email or username', async () => {
await expect(async () => {
await stores.userStore.upsert({});
}).rejects.toThrow(
new Error('Can only find users with id, username or email.'),
2020-05-12 23:05:26 +02:00
);
});
test('should set password_hash for user', async () => {
2020-05-12 23:05:26 +02:00
const store = stores.userStore;
const user = await store.insert({ email: 'admin@mail.com' });
2020-05-12 23:05:26 +02:00
await store.setPasswordHash(user.id, 'rubbish');
const hash = await store.getPasswordHash(user.id);
expect(hash).toBe('rubbish');
2020-05-12 23:05:26 +02:00
});
test('should not get password_hash for unknown userId', async () => {
2020-05-12 23:05:26 +02:00
const store = stores.userStore;
await expect(async () => store.getPasswordHash(-12)).rejects.toThrow(
new NotFoundError('User not found'),
2020-05-12 23:05:26 +02:00
);
});
test('should update loginAttempts for user', async () => {
2020-05-12 23:05:26 +02:00
const store = stores.userStore;
const user = { email: 'admin@mail.com' };
2020-05-12 23:05:26 +02:00
await store.upsert(user);
await store.incLoginAttempts(user);
await store.incLoginAttempts(user);
const storedUser = await store.getByQuery(user);
2020-05-12 23:05:26 +02:00
expect(storedUser.loginAttempts).toBe(2);
2020-05-12 23:05:26 +02:00
});
test('should not increment for user unknown user', async () => {
2020-05-12 23:05:26 +02:00
const store = stores.userStore;
const user = { email: 'another@mail.com' };
2020-05-12 23:05:26 +02:00
await store.upsert(user);
await store.incLoginAttempts({ email: 'unknown@mail.com' });
const storedUser = await store.getByQuery(user);
2020-05-12 23:05:26 +02:00
expect(storedUser.loginAttempts).toBe(0);
2020-05-12 23:05:26 +02:00
});
test('should reset user after successful login', async () => {
2020-05-12 23:05:26 +02:00
const store = stores.userStore;
const user = await store.insert({ email: 'anotherWithResert@mail.com' });
2020-05-12 23:05:26 +02:00
await store.incLoginAttempts(user);
await store.incLoginAttempts(user);
await store.successfullyLogin(user);
const storedUser = await store.getByQuery(user);
2020-05-12 23:05:26 +02:00
expect(storedUser.loginAttempts).toBe(0);
expect(storedUser.seenAt >= user.seenAt).toBe(true);
2020-05-12 23:05:26 +02:00
});
test('should only update specified fields on user', async () => {
2020-05-12 23:05:26 +02:00
const store = stores.userStore;
const email = 'usertobeupdated@mail.com';
const user = {
2020-05-12 23:05:26 +02:00
email,
username: 'test',
};
2020-05-12 23:05:26 +02:00
await store.upsert(user);
await store.upsert({ username: 'test' });
2020-05-12 23:05:26 +02:00
const storedUser = await store.getByQuery({ email });
2020-05-12 23:05:26 +02:00
expect(storedUser.email).toEqual(user.email);
expect(storedUser.username).toEqual(user.username);
2020-05-12 23:05:26 +02:00
});
test('should always lowercase emails on inserts', async () => {
const store = stores.userStore;
const email = 'someCrazyCasingGoingOn@mail.com';
const user = {
email,
};
await store.upsert(user);
const storedUser = await store.getByQuery({ email });
expect(storedUser.email).toEqual(user.email.toLowerCase());
});
test('should always lowercase emails on updates', async () => {
const store = stores.userStore;
const email = 'someCrazyCasingGoingOn@mail.com';
const user = {
email,
};
await store.upsert(user);
let storedUser = await store.getByQuery({ email });
expect(storedUser.email).toEqual(user.email.toLowerCase());
const updatedUser = {
id: storedUser.id,
email: 'SomeOtherCasing@hotmail.com',
};
await store.upsert(updatedUser);
storedUser = await store.get(storedUser.id);
expect(storedUser.email).toBe(updatedUser.email.toLowerCase());
});