unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
78 lines • 2.46 kB
JavaScript
import { setupAppWithCustomAuth, } from '../../helpers/test-helper.js';
import dbInit from '../../helpers/database-init.js';
import getLogger from '../../../fixtures/no-logger.js';
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 = (application, _config, { userService }) => {
application.use('/api/admin/', async (req, _res, next) => {
// @ts-expect-error
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 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.name).toEqual('BadDataError');
});
});
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');
});
});
//# sourceMappingURL=feedback.e2e.test.js.map