mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:39:37 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { AuthUserDto } from '@app/domain';
 | 
						|
import { AppGuard } from '@app/immich/app.guard';
 | 
						|
import { CanActivate, ExecutionContext } from '@nestjs/common';
 | 
						|
import { TestingModuleBuilder } from '@nestjs/testing';
 | 
						|
import { DataSource } from 'typeorm';
 | 
						|
 | 
						|
type CustomAuthCallback = () => AuthUserDto;
 | 
						|
 | 
						|
export async function clearDb(db: DataSource) {
 | 
						|
  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',
 | 
						|
    isAdmin: false,
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
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.overrideProvider(AppGuard).useValue(canActivate);
 | 
						|
}
 |