122 lines
2.9 KiB
JavaScript
Raw Normal View History

'use strict';
const { createTestBuilder } = require('../../../../test/helpers/builder');
const { createStrapiInstance } = require('../../../../test/helpers/strapi');
const { createAuthRequest } = require('../../../../test/helpers/request');
const builder = createTestBuilder();
let strapi;
let rq;
const ct = {
name: 'withboolean',
attributes: {
field: {
type: 'boolean',
},
},
};
describe('Test type boolean', () => {
beforeAll(async () => {
await builder.addContentType(ct).build();
strapi = await createStrapiInstance({ ensureSuperAdmin: true });
rq = await createAuthRequest({ strapi });
}, 60000);
afterAll(async () => {
await strapi.destroy();
await builder.cleanup();
}, 60000);
test('Create entry with value input JSON', async () => {
const res = await rq.post(
'/content-manager/collection-types/application::withboolean.withboolean',
{
body: {
field: true,
},
}
);
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
field: true,
});
});
test('Throws on invalid boolean value', async () => {
let res = await rq.post(
'/content-manager/collection-types/application::withboolean.withboolean',
{
body: { field: 'random' },
}
);
expect(res.statusCode).toBe(400);
});
test('Convert integer to boolean value', async () => {
let res = await rq.post(
'/content-manager/collection-types/application::withboolean.withboolean',
{
body: { field: 1 },
}
);
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
field: true,
});
res = await rq.post('/content-manager/collection-types/application::withboolean.withboolean', {
body: { field: 0 },
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
field: false,
});
});
test('Reading entry, returns correct value', async () => {
const res = await rq.get(
'/content-manager/collection-types/application::withboolean.withboolean'
);
expect(res.statusCode).toBe(200);
expect(res.body.pagination).toBeDefined();
expect(Array.isArray(res.body.results)).toBe(true);
res.body.results.forEach(entry => {
expect(entry.field).toEqual(expect.any(Boolean));
});
});
test('Updating entry sets the right value and format', async () => {
const res = await rq.post(
'/content-manager/collection-types/application::withboolean.withboolean',
{
body: {
field: true,
},
}
);
const updateRes = await rq.put(
`/content-manager/collection-types/application::withboolean.withboolean/${res.body.id}`,
{
body: {
field: false,
},
}
);
expect(updateRes.statusCode).toBe(200);
expect(updateRes.body).toMatchObject({
2019-08-08 10:47:53 +02:00
id: res.body.id,
field: false,
});
});
});