118 lines
2.9 KiB
JavaScript
Raw Normal View History

'use strict';
const { registerAndLogin } = require('../../../../test/helpers/auth');
const createModelsUtils = require('../../../../test/helpers/models');
const { createAuthRequest } = require('../../../../test/helpers/request');
let modelsUtils;
let rq;
describe('Test type json', () => {
beforeAll(async () => {
const token = await registerAndLogin();
rq = createAuthRequest(token);
modelsUtils = createModelsUtils({ rq });
2019-12-12 10:15:25 +01:00
await modelsUtils.createContentTypeWithType('withjson', 'json');
}, 60000);
afterAll(async () => {
2019-12-12 10:15:25 +01:00
await modelsUtils.deleteContentType('withjson');
}, 60000);
test('Create entry with value input JSON', async () => {
const inputValue = {
key: 'value',
};
const res = await rq.post('/content-manager/collection-types/application::withjson.withjson', {
body: {
field: inputValue,
},
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
field: inputValue,
});
});
test('Create entry with array value input JSON', async () => {
const inputValue = [
{
key: 'value',
},
{
key: 'value',
},
];
const res = await rq.post('/content-manager/collection-types/application::withjson.withjson', {
body: {
field: inputValue,
},
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
field: inputValue,
});
});
test('Create entry with value input Formdata', async () => {
const inputValue = {
number: '12',
};
const res = await rq.post('/content-manager/collection-types/application::withjson.withjson', {
formData: {
data: JSON.stringify({ field: inputValue }),
},
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
field: inputValue,
});
});
test('Reading entry, returns correct value', async () => {
const res = await rq.get('/content-manager/collection-types/application::withjson.withjson');
expect(res.statusCode).toBe(200);
expect(Array.isArray(res.body)).toBe(true);
res.body.forEach(entry => {
expect(entry.field).toBeDefined();
expect(entry.field).not.toBeNull();
expect(typeof entry.field).toBe('object');
});
});
test.todo('Throw when input is not a nested object');
test('Updating entry sets the right value and format', async () => {
const res = await rq.post('/content-manager/collection-types/application::withjson.withjson', {
body: {
field: {
key: 'value',
},
},
});
const updateRes = await rq.put(
`/content-manager/collection-types/application::withjson.withjson/${res.body.id}`,
{
body: {
field: {
newKey: 'newVal',
},
},
}
);
expect(updateRes.statusCode).toBe(200);
expect(updateRes.body).toMatchObject({
id: res.body.id,
field: { newKey: 'newVal' },
});
});
});