mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
a785465943
This change updates the splash endpoints and related schemas for the admin ui tag.
75 lines
2.0 KiB
TypeScript
75 lines
2.0 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, {
|
|
experimental: {
|
|
flags: {
|
|
strictSchemaValidation: true,
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await app.destroy();
|
|
await db.destroy();
|
|
});
|
|
|
|
test('it updates splash for user', async () => {
|
|
expect.assertions(1);
|
|
|
|
return app.request
|
|
.post('/api/admin/splash/environment')
|
|
.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 });
|
|
});
|
|
});
|