mirror of
https://github.com/strapi/strapi.git
synced 2025-12-30 00:37:24 +00:00
Single non required group test
This commit is contained in:
parent
e6a3c34fc1
commit
d786217d06
@ -1,145 +0,0 @@
|
||||
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 groups', () => {
|
||||
beforeAll(async () => {
|
||||
const token = await registerAndLogin();
|
||||
rq = createAuthRequest(token);
|
||||
|
||||
modelsUtils = createModelsUtils({ rq });
|
||||
|
||||
await modelsUtils.createGroup({
|
||||
name: 'somegroup',
|
||||
attributes: {
|
||||
name: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
});
|
||||
}, 60000);
|
||||
|
||||
afterAll(async () => {
|
||||
await modelsUtils.deleteGroup('somegroup');
|
||||
});
|
||||
|
||||
describe('Non repeatable and Non required group', () => {
|
||||
beforeAll(async () => {
|
||||
await modelsUtils.createModelWithType('withgroup', 'group', {
|
||||
group: 'somegroup',
|
||||
repeatable: false,
|
||||
required: false,
|
||||
});
|
||||
}, 60000);
|
||||
|
||||
afterAll(async () => {
|
||||
await modelsUtils.deleteModel('withgroup');
|
||||
}, 60000);
|
||||
|
||||
describe('POST new entry', () => {
|
||||
test('Creating entry with JSON works', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: {
|
||||
name: 'someString',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body.field).toEqual(
|
||||
expect.objectContaining({
|
||||
id: expect.anything(),
|
||||
name: 'someString',
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test('Creating entry with formdata works', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
formData: {
|
||||
data: JSON.stringify({
|
||||
field: {
|
||||
name: 'someValue',
|
||||
},
|
||||
}),
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body.field).toEqual(
|
||||
expect.objectContaining({
|
||||
id: expect.anything(),
|
||||
name: 'someValue',
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test.each([[], 'someString', 128219, false])(
|
||||
'Throws if the field is not an object %p',
|
||||
async value => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: value,
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(400);
|
||||
}
|
||||
);
|
||||
|
||||
test('Can send a null value', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: null,
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body.field).toBe(null);
|
||||
});
|
||||
|
||||
test('Can send input without the group field', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body.field).toBe(null);
|
||||
});
|
||||
});
|
||||
|
||||
describe('GET entries', () => {
|
||||
test('Should return entries with their nested groups', async () => {
|
||||
const res = await rq.get('/content-manager/explorer/withgroup');
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(Array.isArray(res.body)).toBe(true);
|
||||
res.body.forEach(entry => {
|
||||
if (entry.field === null) return;
|
||||
|
||||
expect(entry.field).toMatchObject({
|
||||
name: expect.any(String),
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('PUT entry', () => {
|
||||
test.todo('Keeps the previous value if group not sent');
|
||||
test.todo('Removes previous group if null sent');
|
||||
test.todo('Replaces the previous group if sent without id');
|
||||
test.todo('Throws on invalid id in sent group');
|
||||
test.todo('Updates group if previsous group id is sent');
|
||||
});
|
||||
});
|
||||
|
||||
describe('Non repeatable required group', () => {});
|
||||
describe('Repeatable non required group', () => {});
|
||||
describe('Repeatable non required group with min and max', () => {});
|
||||
describe('Repeatable required group', () => {});
|
||||
describe('Repeatable required group with min and max', () => {});
|
||||
});
|
||||
@ -0,0 +1,318 @@
|
||||
const { registerAndLogin } = require('../../../../test/helpers/auth');
|
||||
const createModelsUtils = require('../../../../test/helpers/models');
|
||||
const { createAuthRequest } = require('../../../../test/helpers/request');
|
||||
|
||||
let modelsUtils;
|
||||
let rq;
|
||||
|
||||
describe('Non repeatable and Non required group', () => {
|
||||
beforeAll(async () => {
|
||||
const token = await registerAndLogin();
|
||||
rq = createAuthRequest(token);
|
||||
|
||||
modelsUtils = createModelsUtils({ rq });
|
||||
|
||||
await modelsUtils.createGroup({
|
||||
name: 'somegroup',
|
||||
attributes: {
|
||||
name: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
await modelsUtils.createModelWithType('withgroup', 'group', {
|
||||
group: 'somegroup',
|
||||
repeatable: false,
|
||||
required: false,
|
||||
});
|
||||
}, 60000);
|
||||
|
||||
afterAll(async () => {
|
||||
await modelsUtils.deleteGroup('somegroup');
|
||||
await modelsUtils.deleteModel('withgroup');
|
||||
});
|
||||
|
||||
describe('POST new entry', () => {
|
||||
test('Creating entry with JSON works', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: {
|
||||
name: 'someString',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body.field).toEqual(
|
||||
expect.objectContaining({
|
||||
id: expect.anything(),
|
||||
name: 'someString',
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test('Creating entry with formdata works', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
formData: {
|
||||
data: JSON.stringify({
|
||||
field: {
|
||||
name: 'someValue',
|
||||
},
|
||||
}),
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body.field).toEqual(
|
||||
expect.objectContaining({
|
||||
id: expect.anything(),
|
||||
name: 'someValue',
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test.each([[], 'someString', 128219, false])(
|
||||
'Throws if the field is not an object %p',
|
||||
async value => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: value,
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(400);
|
||||
}
|
||||
);
|
||||
|
||||
test('Can send a null value', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: null,
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body.field).toBe(null);
|
||||
});
|
||||
|
||||
test('Can send input without the group field', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {},
|
||||
});
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body.field).toBe(null);
|
||||
});
|
||||
});
|
||||
|
||||
describe('GET entries', () => {
|
||||
test('Should return entries with their nested groups', async () => {
|
||||
const res = await rq.get('/content-manager/explorer/withgroup');
|
||||
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(Array.isArray(res.body)).toBe(true);
|
||||
res.body.forEach(entry => {
|
||||
if (entry.field === null) return;
|
||||
|
||||
expect(entry.field).toMatchObject({
|
||||
name: expect.any(String),
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('PUT entry', () => {
|
||||
test('Keeps the previous value if group not sent', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: {
|
||||
name: 'someString',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const updateRes = await rq.put(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`,
|
||||
{
|
||||
body: {},
|
||||
}
|
||||
);
|
||||
|
||||
expect(updateRes.statusCode).toBe(200);
|
||||
expect(updateRes.body).toEqual(res.body);
|
||||
|
||||
const getRes = await rq.get(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`
|
||||
);
|
||||
|
||||
expect(getRes.statusCode).toBe(200);
|
||||
expect(getRes.body).toEqual(res.body);
|
||||
});
|
||||
|
||||
test('Removes previous group if null sent', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: {
|
||||
name: 'someString',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const updateRes = await rq.put(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`,
|
||||
{
|
||||
body: {
|
||||
field: null,
|
||||
},
|
||||
}
|
||||
);
|
||||
|
||||
const expectResult = {
|
||||
id: res.body.id,
|
||||
field: null,
|
||||
};
|
||||
|
||||
expect(updateRes.statusCode).toBe(200);
|
||||
expect(updateRes.body).toMatchObject(expectResult);
|
||||
|
||||
const getRes = await rq.get(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`
|
||||
);
|
||||
|
||||
expect(getRes.statusCode).toBe(200);
|
||||
expect(getRes.body).toMatchObject(expectResult);
|
||||
});
|
||||
|
||||
test('Replaces the previous group if sent without id', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: {
|
||||
name: 'someString',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const updateRes = await rq.put(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`,
|
||||
{
|
||||
body: {
|
||||
field: {
|
||||
name: 'new String',
|
||||
},
|
||||
},
|
||||
}
|
||||
);
|
||||
|
||||
expect(updateRes.statusCode).toBe(200);
|
||||
expect(updateRes.body.field.id).not.toBe(res.body.field.id);
|
||||
expect(updateRes.body).toMatchObject({
|
||||
id: res.body.id,
|
||||
field: {
|
||||
name: 'new String',
|
||||
},
|
||||
});
|
||||
|
||||
const getRes = await rq.get(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`
|
||||
);
|
||||
|
||||
expect(getRes.statusCode).toBe(200);
|
||||
expect(getRes.body).toMatchObject({
|
||||
id: res.body.id,
|
||||
field: {
|
||||
name: 'new String',
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('Throws on invalid id in group', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: {
|
||||
name: 'someString',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const updateRes = await rq.put(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`,
|
||||
{
|
||||
body: {
|
||||
field: {
|
||||
id: 'invalid_id',
|
||||
name: 'new String',
|
||||
},
|
||||
},
|
||||
}
|
||||
);
|
||||
|
||||
expect(updateRes.statusCode).toBe(400);
|
||||
});
|
||||
|
||||
test('Updates group if previsous group id is sent', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: {
|
||||
name: 'someString',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const updateRes = await rq.put(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`,
|
||||
{
|
||||
body: {
|
||||
field: {
|
||||
id: res.body.field.id, // send old id to update the previous group
|
||||
name: 'new String',
|
||||
},
|
||||
},
|
||||
}
|
||||
);
|
||||
|
||||
const expectedResult = {
|
||||
id: res.body.id,
|
||||
field: {
|
||||
id: res.body.field.id,
|
||||
name: 'new String',
|
||||
},
|
||||
};
|
||||
|
||||
expect(updateRes.statusCode).toBe(200);
|
||||
expect(updateRes.body).toMatchObject(expectedResult);
|
||||
|
||||
const getRes = await rq.get(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`
|
||||
);
|
||||
|
||||
expect(getRes.statusCode).toBe(200);
|
||||
expect(getRes.body).toMatchObject(expectedResult);
|
||||
});
|
||||
});
|
||||
|
||||
describe('DELETE entry', () => {
|
||||
test('Returns entry with groups', async () => {
|
||||
const res = await rq.post('/content-manager/explorer/withgroup', {
|
||||
body: {
|
||||
field: {
|
||||
name: 'someString',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const deleteRes = await rq.delete(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`
|
||||
);
|
||||
|
||||
expect(deleteRes.statusCode).toBe(200);
|
||||
expect(deleteRes.body).toMatchObject(res.body);
|
||||
|
||||
const getRes = await rq.get(
|
||||
`/content-manager/explorer/withgroup/${res.body.id}`
|
||||
);
|
||||
|
||||
expect(getRes.statusCode).toBe(404);
|
||||
});
|
||||
});
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user