mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
98 lines
2.6 KiB
TypeScript
98 lines
2.6 KiB
TypeScript
|
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 });
|
||
|
});
|
||
|
});
|