1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-23 20:07:40 +02:00
unleash.unleash/src/test/e2e/api/admin/feedback.e2e.test.ts

91 lines
2.4 KiB
TypeScript
Raw Normal View History

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('feedback_api_serial', getLogger);
stores = db.stores;
const email = 'custom-user@mail.com';
const preHook = (
app: any,
config: IUnleashConfig,
{ userService }: IUnleashServices,
) => {
app.use('/api/admin/', async (req, res, next) => {
req.user = await userService.loginUserWithoutPassword(email, true);
next();
});
};
app = await setupAppWithCustomAuth(stores, preHook);
});
afterAll(async () => {
await app.destroy();
await db.destroy();
});
test('it creates feedback for user', async () => {
expect.assertions(1);
return app.request
.post('/api/admin/feedback')
.send({ feedbackId: 'pnps' })
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
.expect(res => {
expect(res.body.feedbackId).toBe('pnps');
});
});
test('it gives 400 when feedback is not present', async () => {
expect.assertions(1);
return app.request
.post('/api/admin/feedback')
.send({})
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(400)
.expect(res => {
expect(res.body.error).toBeTruthy();
});
});
test('it updates feedback for user', async () => {
expect.assertions(1);
return app.request
.put('/api/admin/feedback/pnps')
.send({ neverShow: true })
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
.expect(res => {
expect(res.body.neverShow).toBe(true);
});
});
test('it retrieves feedback for user', async () => {
expect.assertions(2);
return app.request
.get('/api/admin/user')
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
.expect(res => {
expect(res.body.feedback.length).toBe(1);
expect(res.body.feedback[0].feedbackId).toBe('pnps');
});
});