1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

add splash e2e + api tests

This commit is contained in:
Youssef 2021-11-10 11:24:01 +01:00
parent c4da3e89c5
commit db9722dccc

View File

@ -0,0 +1,97 @@
import { Application, NextFunction, Request, Response } from 'express';
import { setupAppWithCustomAuth } from '../../helpers/test-helper';
import dbInit from '../../helpers/database-init';
import getLogger from '../../../fixtures/no-logger';
import { IUnleashConfig } from '../../../../lib/types/option';
import { IUnleashServices } from '../../../../lib/types/services';
let stores;
let db;
let app;
beforeAll(async () => {
db = await dbInit('splash_api_serial', getLogger);
stores = db.stores;
const email = 'custom-user@mail.com';
const preHook = (
application: Application,
config: IUnleashConfig,
{ userService }: IUnleashServices,
) => {
application.use(
'/api/admin/',
async (req: Request, res: Response, next: NextFunction) => {
// @ts-ignore
req.user = await userService.loginUserWithoutPassword(
email,
true,
);
next();
},
);
};
app = await setupAppWithCustomAuth(stores, preHook);
});
afterAll(async () => {
await app.destroy();
await db.destroy();
});
test('it creates splash for user', async () => {
expect.assertions(1);
return app.request
.post('/api/admin/splash')
.send({ splashId: 'environment' })
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
.expect((res) => {
expect(res.body.splashId).toBe('environment');
});
});
test('it gives 400 when splash is not present', async () => {
expect.assertions(1);
return app.request
.post('/api/admin/splash')
.send({})
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(400)
.expect((res) => {
expect(res.body.error).toBeTruthy();
});
});
test('it updates splash for user', async () => {
expect.assertions(1);
return app.request
.put('/api/admin/splash/environment')
.send({ seen: true })
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
.expect((res) => {
expect(res.body.seen).toBe(true);
});
});
test('it retrieves splash for user', async () => {
expect.assertions(1);
return app.request
.get('/api/admin/user')
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
.expect((res) => {
expect(res.body.splash).toStrictEqual({ environment: true });
});
});