2023-03-17 09:24:05 -07:00
|
|
|
import type { Application } from 'express';
|
|
|
|
import type { SuperAgentTest } from 'supertest';
|
2022-04-08 09:37:07 -07:00
|
|
|
import validator from 'validator';
|
2022-11-09 06:25:00 -08:00
|
|
|
import config from '@/config';
|
|
|
|
import * as Db from '@/Db';
|
|
|
|
import { AUTH_COOKIE_NAME } from '@/constants';
|
|
|
|
import type { Role } from '@db/entities/Role';
|
2023-03-17 09:24:05 -07:00
|
|
|
import type { User } from '@db/entities/User';
|
2022-09-21 01:20:29 -07:00
|
|
|
import { LOGGED_OUT_RESPONSE_BODY } from './shared/constants';
|
2022-04-08 09:37:07 -07:00
|
|
|
import { randomValidPassword } from './shared/random';
|
|
|
|
import * as testDb from './shared/testDb';
|
2022-09-21 01:20:29 -07:00
|
|
|
import type { AuthAgent } from './shared/types';
|
|
|
|
import * as utils from './shared/utils';
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
let app: Application;
|
2022-04-08 09:37:07 -07:00
|
|
|
let globalOwnerRole: Role;
|
|
|
|
let globalMemberRole: Role;
|
2023-03-17 09:24:05 -07:00
|
|
|
let owner: User;
|
2022-09-21 01:20:29 -07:00
|
|
|
let authAgent: AuthAgent;
|
2023-03-17 09:24:05 -07:00
|
|
|
let authlessAgent: SuperAgentTest;
|
|
|
|
let authOwnerAgent: SuperAgentTest;
|
|
|
|
const ownerPassword = randomValidPassword();
|
2022-04-08 09:37:07 -07:00
|
|
|
|
|
|
|
beforeAll(async () => {
|
2023-01-27 02:19:47 -08:00
|
|
|
app = await utils.initTestServer({ endpointGroups: ['auth'] });
|
2023-03-17 09:24:05 -07:00
|
|
|
authAgent = utils.createAuthAgent(app);
|
2022-04-08 09:37:07 -07:00
|
|
|
|
|
|
|
globalOwnerRole = await testDb.getGlobalOwnerRole();
|
|
|
|
globalMemberRole = await testDb.getGlobalMemberRole();
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
2023-01-13 09:12:22 -08:00
|
|
|
await testDb.truncate(['User']);
|
2023-03-17 09:24:05 -07:00
|
|
|
authlessAgent = utils.createAgent(app);
|
2023-01-24 17:18:39 -08:00
|
|
|
config.set('ldap.disabled', true);
|
2023-03-17 09:24:05 -07:00
|
|
|
await utils.setInstanceOwnerSetUp(true);
|
2022-04-08 09:37:07 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(async () => {
|
2023-01-13 09:12:22 -08:00
|
|
|
await testDb.terminate();
|
2022-04-08 09:37:07 -07:00
|
|
|
});
|
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
describe('POST /login', () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
owner = await testDb.createUser({
|
|
|
|
password: ownerPassword,
|
|
|
|
globalRole: globalOwnerRole,
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
});
|
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should log user in', async () => {
|
|
|
|
const response = await authlessAgent.post('/login').send({
|
|
|
|
email: owner.email,
|
|
|
|
password: ownerPassword,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
|
|
|
|
const {
|
|
|
|
id,
|
|
|
|
email,
|
|
|
|
firstName,
|
|
|
|
lastName,
|
|
|
|
password,
|
|
|
|
personalizationAnswers,
|
|
|
|
globalRole,
|
|
|
|
resetPasswordToken,
|
|
|
|
apiKey,
|
|
|
|
} = response.body.data;
|
|
|
|
|
|
|
|
expect(validator.isUUID(id)).toBe(true);
|
|
|
|
expect(email).toBe(owner.email);
|
|
|
|
expect(firstName).toBe(owner.firstName);
|
|
|
|
expect(lastName).toBe(owner.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(apiKey).toBeUndefined();
|
|
|
|
|
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeDefined();
|
2022-04-08 09:37:07 -07:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
describe('GET /login', () => {
|
|
|
|
test('should return 401 Unauthorized if no cookie', async () => {
|
|
|
|
const response = await authlessAgent.get('/login');
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
expect(response.statusCode).toBe(401);
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeUndefined();
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should return cookie if UM is disabled and no cookie is already set', async () => {
|
|
|
|
await testDb.createUserShell(globalOwnerRole);
|
|
|
|
await utils.setInstanceOwnerSetUp(false);
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const response = await authlessAgent.get('/login');
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
expect(response.statusCode).toBe(200);
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeDefined();
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should return 401 Unauthorized if invalid cookie', async () => {
|
|
|
|
authlessAgent.jar.setCookie(`${AUTH_COOKIE_NAME}=invalid`);
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const response = await authlessAgent.get('/login');
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
expect(response.statusCode).toBe(401);
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeUndefined();
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should return logged-in owner shell', async () => {
|
|
|
|
const ownerShell = await testDb.createUserShell(globalOwnerRole);
|
|
|
|
|
|
|
|
const response = await authAgent(ownerShell).get('/login');
|
|
|
|
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
|
|
|
|
const {
|
|
|
|
id,
|
|
|
|
email,
|
|
|
|
firstName,
|
|
|
|
lastName,
|
|
|
|
password,
|
|
|
|
personalizationAnswers,
|
|
|
|
globalRole,
|
|
|
|
resetPasswordToken,
|
|
|
|
apiKey,
|
|
|
|
} = response.body.data;
|
|
|
|
|
|
|
|
expect(validator.isUUID(id)).toBe(true);
|
|
|
|
expect(email).toBeDefined();
|
|
|
|
expect(firstName).toBeNull();
|
|
|
|
expect(lastName).toBeNull();
|
|
|
|
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(apiKey).toBeUndefined();
|
|
|
|
|
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeUndefined();
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should return logged-in member shell', async () => {
|
|
|
|
const memberShell = await testDb.createUserShell(globalMemberRole);
|
|
|
|
|
|
|
|
const response = await authAgent(memberShell).get('/login');
|
|
|
|
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
|
|
|
|
const {
|
|
|
|
id,
|
|
|
|
email,
|
|
|
|
firstName,
|
|
|
|
lastName,
|
|
|
|
password,
|
|
|
|
personalizationAnswers,
|
|
|
|
globalRole,
|
|
|
|
resetPasswordToken,
|
|
|
|
apiKey,
|
|
|
|
} = response.body.data;
|
|
|
|
|
|
|
|
expect(validator.isUUID(id)).toBe(true);
|
|
|
|
expect(email).toBeDefined();
|
|
|
|
expect(firstName).toBeNull();
|
|
|
|
expect(lastName).toBeNull();
|
|
|
|
expect(password).toBeUndefined();
|
|
|
|
expect(personalizationAnswers).toBeNull();
|
|
|
|
expect(password).toBeUndefined();
|
|
|
|
expect(resetPasswordToken).toBeUndefined();
|
|
|
|
expect(globalRole).toBeDefined();
|
|
|
|
expect(globalRole.name).toBe('member');
|
|
|
|
expect(globalRole.scope).toBe('global');
|
|
|
|
expect(apiKey).toBeUndefined();
|
|
|
|
|
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeUndefined();
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should return logged-in owner', async () => {
|
|
|
|
const owner = await testDb.createUser({ globalRole: globalOwnerRole });
|
|
|
|
|
|
|
|
const response = await authAgent(owner).get('/login');
|
|
|
|
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
|
|
|
|
const {
|
|
|
|
id,
|
|
|
|
email,
|
|
|
|
firstName,
|
|
|
|
lastName,
|
|
|
|
password,
|
|
|
|
personalizationAnswers,
|
|
|
|
globalRole,
|
|
|
|
resetPasswordToken,
|
|
|
|
apiKey,
|
|
|
|
} = response.body.data;
|
|
|
|
|
|
|
|
expect(validator.isUUID(id)).toBe(true);
|
|
|
|
expect(email).toBe(owner.email);
|
|
|
|
expect(firstName).toBe(owner.firstName);
|
|
|
|
expect(lastName).toBe(owner.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(apiKey).toBeUndefined();
|
|
|
|
|
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeUndefined();
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should return logged-in member', async () => {
|
|
|
|
const member = await testDb.createUser({ globalRole: globalMemberRole });
|
|
|
|
|
|
|
|
const response = await authAgent(member).get('/login');
|
|
|
|
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
|
|
|
|
const {
|
|
|
|
id,
|
|
|
|
email,
|
|
|
|
firstName,
|
|
|
|
lastName,
|
|
|
|
password,
|
|
|
|
personalizationAnswers,
|
|
|
|
globalRole,
|
|
|
|
resetPasswordToken,
|
|
|
|
apiKey,
|
|
|
|
} = response.body.data;
|
|
|
|
|
|
|
|
expect(validator.isUUID(id)).toBe(true);
|
|
|
|
expect(email).toBe(member.email);
|
|
|
|
expect(firstName).toBe(member.firstName);
|
|
|
|
expect(lastName).toBe(member.lastName);
|
|
|
|
expect(password).toBeUndefined();
|
|
|
|
expect(personalizationAnswers).toBeNull();
|
|
|
|
expect(password).toBeUndefined();
|
|
|
|
expect(resetPasswordToken).toBeUndefined();
|
|
|
|
expect(globalRole).toBeDefined();
|
|
|
|
expect(globalRole.name).toBe('member');
|
|
|
|
expect(globalRole.scope).toBe('global');
|
|
|
|
expect(apiKey).toBeUndefined();
|
|
|
|
|
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeUndefined();
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
});
|
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
describe('GET /resolve-signup-token', () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
owner = await testDb.createUser({
|
|
|
|
password: ownerPassword,
|
|
|
|
globalRole: globalOwnerRole,
|
|
|
|
});
|
|
|
|
authOwnerAgent = authAgent(owner);
|
|
|
|
});
|
2023-01-27 02:19:47 -08:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should validate invite token', async () => {
|
|
|
|
const memberShell = await testDb.createUserShell(globalMemberRole);
|
|
|
|
|
|
|
|
const response = await authOwnerAgent
|
|
|
|
.get('/resolve-signup-token')
|
|
|
|
.query({ inviterId: owner.id })
|
|
|
|
.query({ inviteeId: memberShell.id });
|
|
|
|
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
expect(response.body).toEqual({
|
|
|
|
data: {
|
|
|
|
inviter: {
|
|
|
|
firstName: owner.firstName,
|
|
|
|
lastName: owner.lastName,
|
|
|
|
},
|
2023-01-27 02:19:47 -08:00
|
|
|
},
|
2023-03-17 09:24:05 -07:00
|
|
|
});
|
2023-01-27 02:19:47 -08:00
|
|
|
});
|
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
test('should fail with invalid inputs', async () => {
|
|
|
|
const { id: inviteeId } = await testDb.createUser({ globalRole: globalMemberRole });
|
2023-01-27 02:19:47 -08:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const first = await authOwnerAgent.get('/resolve-signup-token').query({ inviterId: owner.id });
|
2023-01-27 02:19:47 -08:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const second = await authOwnerAgent.get('/resolve-signup-token').query({ inviteeId });
|
2023-01-27 02:19:47 -08:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const third = await authOwnerAgent.get('/resolve-signup-token').query({
|
|
|
|
inviterId: '5531199e-b7ae-425b-a326-a95ef8cca59d',
|
|
|
|
inviteeId: 'cb133beb-7729-4c34-8cd1-a06be8834d9d',
|
|
|
|
});
|
2023-01-27 02:19:47 -08:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
// user is already set up, so call should error
|
|
|
|
const fourth = await authOwnerAgent
|
|
|
|
.get('/resolve-signup-token')
|
|
|
|
.query({ inviterId: owner.id })
|
|
|
|
.query({ inviteeId });
|
|
|
|
|
|
|
|
// cause inconsistent DB state
|
|
|
|
await Db.collections.User.update(owner.id, { email: '' });
|
|
|
|
const fifth = await authOwnerAgent
|
|
|
|
.get('/resolve-signup-token')
|
|
|
|
.query({ inviterId: owner.id })
|
|
|
|
.query({ inviteeId });
|
2023-01-27 02:19:47 -08:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
for (const response of [first, second, third, fourth, fifth]) {
|
|
|
|
expect(response.statusCode).toBe(400);
|
|
|
|
}
|
|
|
|
});
|
2023-01-27 02:19:47 -08:00
|
|
|
});
|
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
describe('POST /logout', () => {
|
|
|
|
test('should log user out', async () => {
|
|
|
|
const owner = await testDb.createUser({ globalRole: globalOwnerRole });
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const response = await authAgent(owner).post('/logout');
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
expect(response.statusCode).toBe(200);
|
|
|
|
expect(response.body).toEqual(LOGGED_OUT_RESPONSE_BODY);
|
2022-04-08 09:37:07 -07:00
|
|
|
|
2023-03-17 09:24:05 -07:00
|
|
|
const authToken = utils.getAuthToken(response);
|
|
|
|
expect(authToken).toBeUndefined();
|
|
|
|
});
|
2022-04-08 09:37:07 -07:00
|
|
|
});
|