forked from Cutlery/immich
* fix: remove config parameter from typeorm cli and update config the config parameter is no longer supported since version 0.3 the config now needs to export a DataSource object to work with the 0.3 cli * fix: update all typeorm entities and migrations to be aligned with database structure * Fixed test-util import databaseConfig * Fixed column mismatch in raw query with new migration * Remove dist build directory when starting dev server Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { DataSource } from 'typeorm';
|
|
import { CanActivate, ExecutionContext } from '@nestjs/common';
|
|
import { TestingModuleBuilder } from '@nestjs/testing';
|
|
import { AuthUserDto } from '../src/decorators/auth-user.decorator';
|
|
import { JwtAuthGuard } from '../src/modules/immich-jwt/guards/jwt-auth.guard';
|
|
import { databaseConfig } from '@app/database/config/database.config';
|
|
|
|
type CustomAuthCallback = () => AuthUserDto;
|
|
|
|
export async function clearDb() {
|
|
const db = new DataSource(databaseConfig);
|
|
|
|
const entities = db.entityMetadatas;
|
|
for (const entity of entities) {
|
|
const repository = db.getRepository(entity.name);
|
|
await repository.query(`TRUNCATE ${entity.tableName} RESTART IDENTITY CASCADE;`);
|
|
}
|
|
}
|
|
|
|
export function getAuthUser(): AuthUserDto {
|
|
return {
|
|
id: '3108ac14-8afb-4b7e-87fd-39ebb6b79750',
|
|
email: 'test@email.com',
|
|
};
|
|
}
|
|
|
|
export function auth(builder: TestingModuleBuilder): TestingModuleBuilder {
|
|
return authCustom(builder, getAuthUser);
|
|
}
|
|
|
|
export function authCustom(builder: TestingModuleBuilder, callback: CustomAuthCallback): TestingModuleBuilder {
|
|
const canActivate: CanActivate = {
|
|
canActivate: (context: ExecutionContext) => {
|
|
const req = context.switchToHttp().getRequest();
|
|
req.user = callback();
|
|
return true;
|
|
},
|
|
};
|
|
return builder.overrideGuard(JwtAuthGuard).useValue(canActivate);
|
|
}
|