mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* feat: libraries Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> Co-authored-by: Alex <alex.tran1502@gmail.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { AppModule, OAuthController } from '@app/immich';
 | 
						|
import { INestApplication } from '@nestjs/common';
 | 
						|
import { Test, TestingModule } from '@nestjs/testing';
 | 
						|
import { api } from '@test/api';
 | 
						|
import { db } from '@test/db';
 | 
						|
import { errorStub } from '@test/fixtures';
 | 
						|
import request from 'supertest';
 | 
						|
 | 
						|
describe(`${OAuthController.name} (e2e)`, () => {
 | 
						|
  let app: INestApplication;
 | 
						|
  let server: any;
 | 
						|
 | 
						|
  beforeAll(async () => {
 | 
						|
    const moduleFixture: TestingModule = await Test.createTestingModule({
 | 
						|
      imports: [AppModule],
 | 
						|
    }).compile();
 | 
						|
 | 
						|
    app = await moduleFixture.createNestApplication().init();
 | 
						|
    server = app.getHttpServer();
 | 
						|
  });
 | 
						|
 | 
						|
  beforeEach(async () => {
 | 
						|
    await db.reset();
 | 
						|
    await api.authApi.adminSignUp(server);
 | 
						|
  });
 | 
						|
 | 
						|
  afterAll(async () => {
 | 
						|
    await db.disconnect();
 | 
						|
    await app.close();
 | 
						|
  });
 | 
						|
 | 
						|
  describe('POST /oauth/authorize', () => {
 | 
						|
    beforeEach(async () => {
 | 
						|
      await db.reset();
 | 
						|
    });
 | 
						|
 | 
						|
    it(`should throw an error if a redirect uri is not provided`, async () => {
 | 
						|
      const { status, body } = await request(server).post('/oauth/authorize').send({});
 | 
						|
      expect(status).toBe(400);
 | 
						|
      expect(body).toEqual(errorStub.badRequest(['redirectUri must be a string', 'redirectUri should not be empty']));
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 |