mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
7625421b81
* ⚡ Declutter test logs * 🐛 Fix random passwords length * 🐛 Fix password hashing in test user creation * 🐛 Hash leftover password * ⚡ Improve error message for `compare` * ⚡ Restore `randomInvalidPassword` contant * ⚡ Mock Telemetry module to prevent `--forceExit` * ⚡ Silence logger * ⚡ Simplify condition * ⚡ Unhash password in payload
150 lines
4 KiB
TypeScript
150 lines
4 KiB
TypeScript
import { hashSync, genSaltSync } from 'bcryptjs';
|
|
import express = require('express');
|
|
import validator from 'validator';
|
|
import { v4 as uuid } from 'uuid';
|
|
|
|
import config = require('../../config');
|
|
import * as utils from './shared/utils';
|
|
import { LOGGED_OUT_RESPONSE_BODY } from './shared/constants';
|
|
import { Db } from '../../src';
|
|
import { Role } from '../../src/databases/entities/Role';
|
|
import { randomEmail, randomValidPassword, randomName } from './shared/random';
|
|
import { getGlobalOwnerRole } from './shared/testDb';
|
|
import * as testDb from './shared/testDb';
|
|
|
|
jest.mock('../../src/telemetry');
|
|
|
|
let globalOwnerRole: Role;
|
|
|
|
let app: express.Application;
|
|
let testDbName = '';
|
|
|
|
beforeAll(async () => {
|
|
app = utils.initTestServer({ endpointGroups: ['auth'], applyAuth: true });
|
|
const initResult = await testDb.init();
|
|
testDbName = initResult.testDbName;
|
|
|
|
await testDb.truncate(['User'], testDbName);
|
|
|
|
globalOwnerRole = await getGlobalOwnerRole();
|
|
utils.initTestLogger();
|
|
utils.initTestTelemetry();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await testDb.createUser({
|
|
id: uuid(),
|
|
email: TEST_USER.email,
|
|
firstName: TEST_USER.firstName,
|
|
lastName: TEST_USER.lastName,
|
|
password: TEST_USER.password,
|
|
globalRole: globalOwnerRole,
|
|
});
|
|
|
|
config.set('userManagement.isInstanceOwnerSetUp', true);
|
|
|
|
await Db.collections.Settings!.update(
|
|
{ key: 'userManagement.isInstanceOwnerSetUp' },
|
|
{ value: JSON.stringify(true) },
|
|
);
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await testDb.truncate(['User'], testDbName);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await testDb.terminate(testDbName);
|
|
});
|
|
|
|
test('POST /login should log user in', async () => {
|
|
const authlessAgent = utils.createAgent(app);
|
|
|
|
const response = await authlessAgent.post('/login').send({
|
|
email: TEST_USER.email,
|
|
password: TEST_USER.password,
|
|
});
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
const {
|
|
id,
|
|
email,
|
|
firstName,
|
|
lastName,
|
|
password,
|
|
personalizationAnswers,
|
|
globalRole,
|
|
resetPasswordToken,
|
|
} = response.body.data;
|
|
|
|
expect(validator.isUUID(id)).toBe(true);
|
|
expect(email).toBe(TEST_USER.email);
|
|
expect(firstName).toBe(TEST_USER.firstName);
|
|
expect(lastName).toBe(TEST_USER.lastName);
|
|
expect(password).toBeUndefined();
|
|
expect(personalizationAnswers).toBeNull();
|
|
expect(password).toBeUndefined();
|
|
expect(resetPasswordToken).toBeUndefined();
|
|
expect(globalRole).toBeDefined();
|
|
expect(globalRole.name).toBe('owner');
|
|
expect(globalRole.scope).toBe('global');
|
|
|
|
const authToken = utils.getAuthToken(response);
|
|
expect(authToken).toBeDefined();
|
|
});
|
|
|
|
test('GET /login should receive logged in user', async () => {
|
|
const owner = await Db.collections.User!.findOneOrFail();
|
|
const authOwnerAgent = utils.createAgent(app, { auth: true, user: owner });
|
|
|
|
const response = await authOwnerAgent.get('/login');
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
const {
|
|
id,
|
|
email,
|
|
firstName,
|
|
lastName,
|
|
password,
|
|
personalizationAnswers,
|
|
globalRole,
|
|
resetPasswordToken,
|
|
} = response.body.data;
|
|
|
|
expect(validator.isUUID(id)).toBe(true);
|
|
expect(email).toBe(TEST_USER.email);
|
|
expect(firstName).toBe(TEST_USER.firstName);
|
|
expect(lastName).toBe(TEST_USER.lastName);
|
|
expect(password).toBeUndefined();
|
|
expect(personalizationAnswers).toBeNull();
|
|
expect(password).toBeUndefined();
|
|
expect(resetPasswordToken).toBeUndefined();
|
|
expect(globalRole).toBeDefined();
|
|
expect(globalRole.name).toBe('owner');
|
|
expect(globalRole.scope).toBe('global');
|
|
|
|
expect(response.headers['set-cookie']).toBeUndefined();
|
|
});
|
|
|
|
test('POST /logout should log user out', async () => {
|
|
const owner = await Db.collections.User!.findOneOrFail();
|
|
const authOwnerAgent = utils.createAgent(app, { auth: true, user: owner });
|
|
|
|
const response = await authOwnerAgent.post('/logout');
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
expect(response.body).toEqual(LOGGED_OUT_RESPONSE_BODY);
|
|
|
|
const authToken = utils.getAuthToken(response);
|
|
expect(authToken).toBeUndefined();
|
|
});
|
|
|
|
const TEST_USER = {
|
|
email: randomEmail(),
|
|
password: randomValidPassword(),
|
|
firstName: randomName(),
|
|
lastName: randomName(),
|
|
};
|