Files
HIPCTF2/tests/backend/me-endpoint.spec.ts
T

70 lines
2.7 KiB
TypeScript

process.env.DATABASE_PATH = ':memory:';
process.env.THEMES_DIR = './themes';
process.env.FRONTEND_DIST = './frontend/dist';
import { Test } from '@nestjs/testing';
import { INestApplication, ValidationPipe } from '@nestjs/common';
import { HttpAdapterHost } from '@nestjs/core';
import cookieParser from 'cookie-parser';
import * as express from 'express';
import request from 'supertest';
import { CookieAccessInfo } from 'cookiejar';
import { AppModule } from '../../backend/src/app.module';
import { GlobalExceptionFilter } from '../../backend/src/common/filters/global-exception.filter';
import { CsrfMiddleware } from '../../backend/src/common/middleware/csrf.middleware';
import { ConfigService } from '@nestjs/config';
import { initDb } from './db-helper';
describe('GET /api/v1/auth/me', () => {
let app: INestApplication;
beforeAll(async () => {
const moduleRef = await Test.createTestingModule({ imports: [AppModule] }).compile();
app = moduleRef.createNestApplication();
app.use(cookieParser());
app.use(express.json({ limit: '1mb' }));
const csrfMw = new CsrfMiddleware(app.get(ConfigService));
app.use((req: any, res: any, next: any) => csrfMw.use(req, res, next));
app.useGlobalPipes(new ValidationPipe({ whitelist: true, forbidNonWhitelisted: false, transform: true }));
const httpAdapterHost = app.get(HttpAdapterHost);
app.useGlobalFilters(new GlobalExceptionFilter(httpAdapterHost));
await app.init();
await initDb(app);
await request(app.getHttpServer())
.post('/api/v1/auth/register-first-admin')
.send({ username: 'admin', password: 'Sup3rSecret!Pass' })
.expect(201);
});
afterAll(async () => {
await app.close();
});
it('returns 401 when unauthenticated', async () => {
await request(app.getHttpServer()).get('/api/v1/auth/me').expect(401);
});
it('returns id, username, role, rank, points when authenticated', async () => {
const server = app.getHttpServer();
const agent = request.agent(server);
await agent.get('/api/v1/auth/csrf');
const csrf = (agent.jar.getCookies(CookieAccessInfo.All) as any).find((c: any) => c.name === 'csrf');
const login = await agent
.post('/api/v1/auth/login')
.set('X-CSRF-Token', csrf.value)
.send({ username: 'admin', password: 'Sup3rSecret!Pass' })
.expect(201);
const token = login.body.accessToken as string;
const res = await agent
.get('/api/v1/auth/me')
.set('Authorization', `Bearer ${token}`)
.expect(200);
expect(res.body.username).toBe('admin');
expect(res.body.role).toBe('admin');
expect(typeof res.body.id).toBe('string');
expect(res.body.points).toBe(0);
expect(res.body.rank === null || typeof res.body.rank === 'number').toBe(true);
});
});