mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { setupAppWithAuth } from '../../helpers/test-helper';
|
|
import dbInit from '../../helpers/database-init';
|
|
import getLogger from '../../../fixtures/no-logger';
|
|
|
|
let db;
|
|
|
|
beforeAll(async () => {
|
|
db = await dbInit('feature_api_auth', getLogger);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await db.destroy();
|
|
});
|
|
|
|
test('creates new feature toggle with createdBy', async () => {
|
|
expect.assertions(1);
|
|
|
|
const { request, destroy } = await setupAppWithAuth(db.stores);
|
|
|
|
// Login
|
|
await request.post('/auth/demo/login').send({
|
|
email: 'user@mail.com',
|
|
});
|
|
|
|
// create toggle
|
|
await request
|
|
.post('/api/admin/features')
|
|
.send({
|
|
name: 'com.test.Username',
|
|
enabled: false,
|
|
strategies: [{ name: 'default' }],
|
|
})
|
|
.expect(201);
|
|
|
|
await request.get('/api/admin/events/com.test.Username').expect((res) => {
|
|
expect(res.body.events[0].createdBy).toBe('user@mail.com');
|
|
});
|
|
|
|
await destroy();
|
|
});
|
|
|
|
test('should require authenticated user', async () => {
|
|
expect.assertions(0);
|
|
const { request, destroy } = await setupAppWithAuth(db.stores);
|
|
await request.get('/api/admin/features').expect(401);
|
|
await destroy();
|
|
});
|