UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.

137 lines 5.58 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const notfound_error_1 = __importDefault(require("../../../lib/error/notfound-error")); const database_init_1 = __importDefault(require("../helpers/database-init")); const no_logger_1 = __importDefault(require("../../fixtures/no-logger")); let stores; let db; beforeAll(async () => { db = await (0, database_init_1.default)('user_store_serial', no_logger_1.default); stores = db.stores; }); afterAll(async () => { await db.destroy(); }); test('should have no users', async () => { const users = await stores.userStore.getAll(); expect(users).toEqual([]); }); test('should insert new user with email', async () => { const user = { email: 'me2@mail.com' }; await stores.userStore.upsert(user); const users = await stores.userStore.getAll(); expect(users[0].email).toEqual(user.email); expect(users[0].id).toBeTruthy(); }); 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/); }); test('should insert new user with email and return it', async () => { const user = { email: 'me2@mail.com' }; const newUser = await stores.userStore.upsert(user); expect(newUser.email).toEqual(user.email); expect(newUser.id).toBeTruthy(); }); test('should insert new user with username', async () => { const user = { username: 'admin' }; await stores.userStore.upsert(user); const dbUser = await stores.userStore.getByQuery(user); expect(dbUser.username).toEqual(user.username); }); 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.')); }); test('should set password_hash for user', async () => { const store = stores.userStore; const user = await store.insert({ email: 'admin@mail.com' }); await store.setPasswordHash(user.id, 'rubbish'); const hash = await store.getPasswordHash(user.id); expect(hash).toBe('rubbish'); }); test('should not get password_hash for unknown userId', async () => { const store = stores.userStore; await expect(async () => store.getPasswordHash(-12)).rejects.toThrow(new notfound_error_1.default('User not found')); }); test('should update loginAttempts for user', async () => { const store = stores.userStore; const user = { email: 'admin@mail.com' }; await store.upsert(user); await store.incLoginAttempts(user); await store.incLoginAttempts(user); const storedUser = await store.getByQuery(user); expect(storedUser.loginAttempts).toBe(2); }); test('should not increment for user unknown user', async () => { const store = stores.userStore; const user = { email: 'another@mail.com' }; await store.upsert(user); await store.incLoginAttempts({ email: 'unknown@mail.com' }); const storedUser = await store.getByQuery(user); expect(storedUser.loginAttempts).toBe(0); }); test('should reset user after successful login', async () => { const store = stores.userStore; const user = await store.insert({ email: 'anotherWithResert@mail.com' }); await store.incLoginAttempts(user); await store.incLoginAttempts(user); await store.successfullyLogin(user); const storedUser = await store.getByQuery(user); expect(storedUser.loginAttempts).toBe(0); expect(storedUser.seenAt >= user.seenAt).toBe(true); }); test('should only update specified fields on user', async () => { const store = stores.userStore; const email = 'usertobeupdated@mail.com'; const user = { email, username: 'test', }; await store.upsert(user); await store.upsert({ username: 'test' }); const storedUser = await store.getByQuery({ email }); expect(storedUser.email).toEqual(user.email); expect(storedUser.username).toEqual(user.username); }); 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()); }); test('should delete user', async () => { const user = await stores.userStore.upsert({ email: 'deleteuser@mail.com', }); await stores.userStore.delete(user.id); await expect(() => stores.userStore.get(user.id)).rejects.toThrow(new notfound_error_1.default('No user found')); }); //# sourceMappingURL=user-store.e2e.test.js.map