2021-08-12 15:04:37 +02:00
|
|
|
import dbInit from '../../helpers/database-init';
|
|
|
|
import { setupApp } from '../../helpers/test-helper';
|
|
|
|
import getLogger from '../../../fixtures/no-logger';
|
2021-01-19 10:42:45 +01:00
|
|
|
|
2021-02-04 11:02:58 +01:00
|
|
|
const MASKED_VALUE = '*****';
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
let app;
|
2021-03-19 22:25:21 +01:00
|
|
|
let db;
|
2021-01-19 10:42:45 +01:00
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
beforeAll(async () => {
|
2021-03-19 22:25:21 +01:00
|
|
|
db = await dbInit('addon_api_serial', getLogger);
|
2021-05-28 11:10:24 +02:00
|
|
|
app = await setupApp(db.stores);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
afterAll(async () => {
|
|
|
|
await app.destroy();
|
2021-03-19 22:25:21 +01:00
|
|
|
await db.destroy();
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('gets all addons', async () => {
|
|
|
|
expect.assertions(3);
|
|
|
|
|
|
|
|
return app.request
|
2021-01-19 10:42:45 +01:00
|
|
|
.get('/api/admin/addons')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
2021-08-12 15:04:37 +02:00
|
|
|
.expect((res) => {
|
2021-05-28 11:10:24 +02:00
|
|
|
expect(res.body.addons.length).toBe(0);
|
|
|
|
expect(res.body.providers.length).toBe(4);
|
|
|
|
expect(res.body.providers[0].name).toBe('webhook');
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should not be able to create invalid addon', async () => {
|
|
|
|
expect.assertions(0);
|
|
|
|
return app.request
|
2021-01-19 10:42:45 +01:00
|
|
|
.post('/api/admin/addons')
|
|
|
|
.send({ invalid: 'field' })
|
|
|
|
.expect(400);
|
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should create addon configuration', async () => {
|
|
|
|
expect.assertions(0);
|
2021-01-19 10:42:45 +01:00
|
|
|
|
|
|
|
const config = {
|
|
|
|
provider: 'webhook',
|
|
|
|
enabled: true,
|
|
|
|
parameters: {
|
|
|
|
url: 'http://localhost:4242/webhook',
|
|
|
|
bodyTemplate: "{'name': '{{event.data.name}}' }",
|
|
|
|
},
|
|
|
|
events: ['feature-updated', 'feature-created'],
|
|
|
|
};
|
|
|
|
|
2021-08-12 15:04:37 +02:00
|
|
|
return app.request.post('/api/admin/addons').send(config).expect(201);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should delete addon configuration', async () => {
|
|
|
|
expect.assertions(0);
|
2021-01-19 10:42:45 +01:00
|
|
|
|
|
|
|
const config = {
|
|
|
|
provider: 'webhook',
|
|
|
|
enabled: true,
|
|
|
|
parameters: {
|
|
|
|
url: 'http://localhost:4242/webhook',
|
|
|
|
bodyTemplate: "{'name': '{{event.data.name}}' }",
|
|
|
|
},
|
|
|
|
events: ['feature-updated', 'feature-created'],
|
|
|
|
};
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
const res = await app.request
|
2021-01-19 10:42:45 +01:00
|
|
|
.post('/api/admin/addons')
|
|
|
|
.send(config)
|
|
|
|
.expect(201);
|
|
|
|
|
|
|
|
const { id } = res.body;
|
2021-05-28 11:10:24 +02:00
|
|
|
await app.request.delete(`/api/admin/addons/${id}`).expect(200);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should update addon configuration', async () => {
|
|
|
|
expect.assertions(2);
|
2021-01-19 10:42:45 +01:00
|
|
|
|
|
|
|
const config = {
|
|
|
|
provider: 'webhook',
|
|
|
|
enabled: true,
|
|
|
|
parameters: {
|
|
|
|
url: 'http://localhost:4242/webhook',
|
|
|
|
bodyTemplate: "{'name': '{{event.data.name}}' }",
|
|
|
|
},
|
|
|
|
events: ['feature-updated', 'feature-created'],
|
|
|
|
};
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
const res = await app.request
|
2021-01-19 10:42:45 +01:00
|
|
|
.post('/api/admin/addons')
|
|
|
|
.send(config)
|
|
|
|
.expect(201);
|
|
|
|
|
|
|
|
const { id } = res.body;
|
|
|
|
|
|
|
|
const updatedConfig = {
|
|
|
|
parameters: {
|
|
|
|
url: 'http://example.com',
|
|
|
|
bodyTemplate: "{'name': '{{event.data.name}}' }",
|
|
|
|
},
|
|
|
|
...config,
|
|
|
|
};
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
await app.request
|
2021-01-19 10:42:45 +01:00
|
|
|
.put(`/api/admin/addons/${id}`)
|
|
|
|
.send(updatedConfig)
|
|
|
|
.expect(200);
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
return app.request
|
2021-01-19 10:42:45 +01:00
|
|
|
.get(`/api/admin/addons/${id}`)
|
|
|
|
.send(config)
|
|
|
|
.expect(200)
|
2021-08-12 15:04:37 +02:00
|
|
|
.expect((r) => {
|
2021-05-28 11:10:24 +02:00
|
|
|
expect(r.body.parameters.url).toBe(MASKED_VALUE);
|
|
|
|
expect(r.body.parameters.bodyTemplate).toBe(
|
2021-02-04 11:02:58 +01:00
|
|
|
updatedConfig.parameters.bodyTemplate,
|
|
|
|
);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should not update with invalid addon configuration', async () => {
|
|
|
|
expect.assertions(0);
|
2021-01-19 10:42:45 +01:00
|
|
|
|
|
|
|
const config = {
|
|
|
|
enabled: true,
|
|
|
|
parameters: {
|
|
|
|
url: 'http://localhost:4242/webhook',
|
|
|
|
bodyTemplate: "{'name': '{{event.data.name}}' }",
|
|
|
|
},
|
|
|
|
events: ['feature-updated', 'feature-created'],
|
|
|
|
};
|
|
|
|
|
2021-08-12 15:04:37 +02:00
|
|
|
await app.request.put('/api/admin/addons/1').send(config).expect(400);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should not update unknown addon configuration', async () => {
|
|
|
|
expect.assertions(0);
|
2021-01-19 10:42:45 +01:00
|
|
|
|
|
|
|
const config = {
|
|
|
|
provider: 'webhook',
|
|
|
|
enabled: true,
|
|
|
|
parameters: {
|
|
|
|
url: 'http://localhost:4242/webhook',
|
|
|
|
bodyTemplate: "{'name': '{{event.data.name}}' }",
|
|
|
|
},
|
|
|
|
events: ['feature-updated', 'feature-created'],
|
|
|
|
};
|
|
|
|
|
2021-08-12 15:04:37 +02:00
|
|
|
await app.request.put('/api/admin/addons/123123').send(config).expect(404);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should get addon configuration', async () => {
|
|
|
|
expect.assertions(3);
|
2021-01-19 10:42:45 +01:00
|
|
|
|
|
|
|
const config = {
|
|
|
|
provider: 'webhook',
|
|
|
|
enabled: true,
|
|
|
|
parameters: {
|
|
|
|
url: 'http://localhost:4242/webhook',
|
|
|
|
bodyTemplate: "{'name': '{{event.data.name}}' }",
|
|
|
|
},
|
|
|
|
events: ['feature-updated', 'feature-created'],
|
|
|
|
};
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
const res = await app.request
|
2021-01-19 10:42:45 +01:00
|
|
|
.post('/api/admin/addons')
|
|
|
|
.send(config)
|
|
|
|
.expect(201);
|
|
|
|
|
|
|
|
const { id } = res.body;
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
await app.request
|
2021-01-19 10:42:45 +01:00
|
|
|
.get(`/api/admin/addons/${id}`)
|
|
|
|
.expect(200)
|
2021-08-12 15:04:37 +02:00
|
|
|
.expect((r) => {
|
2021-05-28 11:10:24 +02:00
|
|
|
expect(r.body.provider).toBe(config.provider);
|
|
|
|
expect(r.body.parameters.bodyTemplate).toBe(
|
2021-02-04 11:02:58 +01:00
|
|
|
config.parameters.bodyTemplate,
|
|
|
|
);
|
2021-05-28 11:10:24 +02:00
|
|
|
expect(r.body.parameters.url).toBe(MASKED_VALUE);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should not get unknown addon configuration', async () => {
|
|
|
|
expect.assertions(0);
|
2021-01-19 10:42:45 +01:00
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
await app.request.get('/api/admin/addons/445').expect(404);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('should not delete unknown addon configuration', async () => {
|
|
|
|
expect.assertions(0);
|
2021-01-19 10:42:45 +01:00
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
return app.request.delete('/api/admin/addons/21231').expect(404);
|
2021-01-19 10:42:45 +01:00
|
|
|
});
|