94 lines
2.3 KiB
JavaScript
Raw Normal View History

'use strict';
2021-04-29 11:11:46 +02:00
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: 'withinteger',
attributes: {
field: {
type: 'integer',
},
},
};
describe('Test type integer', () => {
beforeAll(async () => {
await builder.addContentType(ct).build();
strapi = await createStrapiInstance();
rq = await createAuthRequest({ strapi });
});
afterAll(async () => {
await strapi.destroy();
await builder.cleanup();
});
test('Create entry with value input JSON', async () => {
2021-08-06 18:09:49 +02:00
const res = await rq.post('/content-manager/collection-types/api::withinteger.withinteger', {
body: {
field: 123456,
},
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
field: 123456,
});
});
// I don't think it will work everywhere ...
test('Create entry with a string should cast the value', async () => {
2021-08-06 18:09:49 +02:00
const res = await rq.post('/content-manager/collection-types/api::withinteger.withinteger', {
body: {
field: '123456',
},
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
field: 123456,
});
});
test('Reading entry, returns correct value', async () => {
2021-08-06 18:09:49 +02:00
const res = await rq.get('/content-manager/collection-types/api::withinteger.withinteger');
expect(res.statusCode).toBe(200);
expect(res.body.pagination).toBeDefined();
expect(Array.isArray(res.body.results)).toBe(true);
res.body.results.forEach(entry => {
expect(Number.isInteger(entry.field)).toBe(true);
});
});
test('Updating entry sets the right value and format', async () => {
2021-08-06 18:09:49 +02:00
const res = await rq.post('/content-manager/collection-types/api::withinteger.withinteger', {
body: {
field: 123,
},
});
const updatedRes = await rq.put(
2021-08-06 18:09:49 +02:00
`/content-manager/collection-types/api::withinteger.withinteger/${res.body.id}`,
{
body: {
field: 543,
},
}
);
expect(updatedRes.statusCode).toBe(200);
expect(updatedRes.body).toMatchObject({
id: res.body.id,
field: 543,
});
});
});