mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 13:44:16 -04:00
* refactor: auth guard * chore: move auth guard to middleware * chore: tests * chore: remove unused code * fix: migration to uuid without dataloss * chore: e2e tests * chore: removed unused guards
125 lines
3.9 KiB
TypeScript
125 lines
3.9 KiB
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { INestApplication } from '@nestjs/common';
|
|
import request from 'supertest';
|
|
import { clearDb, authCustom } from './test-utils';
|
|
import { CreateUserDto, UserService, AuthUserDto } from '@app/domain';
|
|
import { DataSource } from 'typeorm';
|
|
import { AuthService } from '@app/domain';
|
|
import { AppModule } from '../src/app.module';
|
|
|
|
function _createUser(userService: UserService, data: CreateUserDto) {
|
|
return userService.createUser(data);
|
|
}
|
|
|
|
describe('User', () => {
|
|
let app: INestApplication;
|
|
let database: DataSource;
|
|
|
|
afterAll(async () => {
|
|
await clearDb(database);
|
|
await app.close();
|
|
});
|
|
|
|
describe('without auth', () => {
|
|
beforeAll(async () => {
|
|
const moduleFixture: TestingModule = await Test.createTestingModule({ imports: [AppModule] }).compile();
|
|
|
|
app = moduleFixture.createNestApplication();
|
|
database = app.get(DataSource);
|
|
await app.init();
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await app.close();
|
|
});
|
|
|
|
it('prevents fetching users if not auth', async () => {
|
|
const { status } = await request(app.getHttpServer()).get('/user');
|
|
expect(status).toEqual(401);
|
|
});
|
|
});
|
|
|
|
describe('with auth', () => {
|
|
let userService: UserService;
|
|
let authService: AuthService;
|
|
let authUser: AuthUserDto;
|
|
|
|
beforeAll(async () => {
|
|
const builder = Test.createTestingModule({ imports: [AppModule] });
|
|
const moduleFixture: TestingModule = await authCustom(builder, () => authUser).compile();
|
|
|
|
app = moduleFixture.createNestApplication();
|
|
userService = app.get(UserService);
|
|
authService = app.get(AuthService);
|
|
database = app.get(DataSource);
|
|
await app.init();
|
|
});
|
|
|
|
describe('with users in DB', () => {
|
|
const authUserEmail = 'auth-user@test.com';
|
|
const userOneEmail = 'one@test.com';
|
|
const userTwoEmail = 'two@test.com';
|
|
|
|
beforeAll(async () => {
|
|
// first user must be admin
|
|
const adminSignupResponseDto = await authService.adminSignUp({
|
|
firstName: 'auth-user',
|
|
lastName: 'test',
|
|
email: authUserEmail,
|
|
password: '1234',
|
|
});
|
|
authUser = { ...adminSignupResponseDto, isAdmin: true }; // TODO: find out why adminSignUp doesn't have isAdmin (maybe can just return UserResponseDto)
|
|
await Promise.allSettled([
|
|
_createUser(userService, {
|
|
firstName: 'one',
|
|
lastName: 'test',
|
|
email: userOneEmail,
|
|
password: '1234',
|
|
}),
|
|
_createUser(userService, {
|
|
firstName: 'two',
|
|
lastName: 'test',
|
|
email: userTwoEmail,
|
|
password: '1234',
|
|
}),
|
|
]);
|
|
});
|
|
|
|
it('fetches the user collection excluding the auth user', async () => {
|
|
const { status, body } = await request(app.getHttpServer()).get('/user?isAll=false');
|
|
expect(status).toEqual(200);
|
|
expect(body).toHaveLength(2);
|
|
expect(body).toEqual(
|
|
expect.arrayContaining([
|
|
{
|
|
email: userOneEmail,
|
|
firstName: 'one',
|
|
lastName: 'test',
|
|
id: expect.anything(),
|
|
createdAt: expect.anything(),
|
|
isAdmin: false,
|
|
shouldChangePassword: true,
|
|
profileImagePath: '',
|
|
deletedAt: null,
|
|
oauthId: '',
|
|
},
|
|
{
|
|
email: userTwoEmail,
|
|
firstName: 'two',
|
|
lastName: 'test',
|
|
id: expect.anything(),
|
|
createdAt: expect.anything(),
|
|
isAdmin: false,
|
|
shouldChangePassword: true,
|
|
profileImagePath: '',
|
|
deletedAt: null,
|
|
oauthId: '',
|
|
},
|
|
]),
|
|
);
|
|
expect(body).toEqual(expect.not.arrayContaining([expect.objectContaining({ email: authUserEmail })]));
|
|
});
|
|
});
|
|
});
|
|
});
|