strapi/packages/core/content-manager/tests/api/basic-dp.test.e2e.js
2021-08-06 18:09:49 +02:00

275 lines
7.6 KiB
JavaScript

'use strict';
const _ = require('lodash');
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;
let data = {
productsWithDP: [],
};
const productWithDP = {
attributes: {
name: {
type: 'string',
required: true,
},
description: {
type: 'text',
minLength: 3,
maxLength: 30,
},
},
draftAndPublish: true,
name: 'product with DP',
description: '',
collectionName: '',
};
const compo = {
name: 'compo',
attributes: {
name: {
type: 'string',
required: true,
},
description: {
type: 'text',
minLength: 4,
maxLength: 30,
},
},
};
describe('CM API - Basic + draftAndPublish', () => {
beforeAll(async () => {
await builder
.addComponent(compo)
.addContentType(productWithDP)
.build();
strapi = await createStrapiInstance();
rq = await createAuthRequest({ strapi });
});
afterAll(async () => {
await strapi.destroy();
await builder.cleanup();
});
test('Create a product', async () => {
const product = {
name: 'Product 1',
description: 'Product description',
};
const res = await rq({
method: 'POST',
url: '/content-manager/collection-types/api::product-with-dp.product-with-dp',
body: product,
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject(product);
expect(res.body.published_at).toBeNull();
data.productsWithDP.push(res.body);
});
test('Create a product + cannot overwrite published_at', async () => {
const product = {
name: 'Product 2',
description: 'Product description',
published_at: '2020-08-20T10:27:55.866Z',
};
const res = await rq({
method: 'POST',
url: '/content-manager/collection-types/api::product-with-dp.product-with-dp',
body: product,
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject(_.omit(product, 'published_at'));
expect(res.body.published_at).toBeNull();
data.productsWithDP.push(res.body);
});
test('Read all products', async () => {
const res = await rq({
method: 'GET',
url: '/content-manager/collection-types/api::product-with-dp.product-with-dp',
});
expect(res.statusCode).toBe(200);
expect(Array.isArray(res.body.results)).toBe(true);
expect(res.body.results).toHaveLength(2);
expect(res.body.results).toEqual(
expect.arrayContaining([
expect.objectContaining({
name: 'Product 1',
description: 'Product description',
}),
])
);
res.body.results.forEach(p => {
expect(p.published_at).toBeNull();
});
});
test('Update a draft', async () => {
const product = {
name: 'Product 1 updated',
description: 'Updated Product description',
};
const res = await rq({
method: 'PUT',
url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${data.productsWithDP[0].id}`,
body: product,
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject(_.omit(product, 'published_at'));
expect(res.body.id).toEqual(data.productsWithDP[0].id);
expect(res.body.published_at).toBeNull();
data.productsWithDP[0] = res.body;
});
test('Update product + cannot overwrite published_at', async () => {
const product = {
name: 'Product 1 updated',
description: 'Updated Product description',
published_at: '2020-08-27T09:50:50.465Z',
};
const res = await rq({
method: 'PUT',
url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${data.productsWithDP[0].id}`,
body: product,
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject(_.omit(product, ['published_at']));
expect(res.body.published_at).toBeNull();
expect(res.body.id).toEqual(data.productsWithDP[0].id);
data.productsWithDP[0] = res.body;
});
test('Publish a product, expect published_at to be defined', async () => {
const entry = data.productsWithDP[0];
let { body } = await rq({
url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${entry.id}/actions/publish`,
method: 'POST',
});
data.productsWithDP[0] = body;
expect(body.published_at).toBeISODate();
});
test('Publish article1, expect article1 to be already published', async () => {
const entry = data.productsWithDP[0];
let { body } = await rq({
url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${entry.id}/actions/publish`,
method: 'POST',
});
expect(body.statusCode).toBe(400);
expect(body.message).toBe('already.published');
});
test('Unpublish article1, expect article1 to be set to null', async () => {
const entry = data.productsWithDP[0];
let { body } = await rq({
url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${entry.id}/actions/unpublish`,
method: 'POST',
});
data.productsWithDP[0] = body;
expect(body.published_at).toBeNull();
});
test('Unpublish article1, expect article1 to already be a draft', async () => {
const entry = data.productsWithDP[0];
let { body } = await rq({
url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${entry.id}/actions/unpublish`,
method: 'POST',
});
expect(body.statusCode).toBe(400);
expect(body.message).toBe('already.draft');
});
test('Delete a draft', async () => {
const res = await rq({
method: 'DELETE',
url: `/content-manager/collection-types/api::product-with-dp.product-with-dp/${data.productsWithDP[0].id}`,
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject(data.productsWithDP[0]);
expect(res.body.id).toEqual(data.productsWithDP[0].id);
expect(res.body.published_at).toBeNull();
data.productsWithDP.shift();
});
describe('validators', () => {
test('Can create a product - minLength', async () => {
const product = {
name: 'Product 1',
description: '',
};
const res = await rq({
method: 'POST',
url: '/content-manager/collection-types/api::product-with-dp.product-with-dp',
body: product,
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject(product);
data.productsWithDP.push(res.body);
});
test('Can create a product - required', async () => {
const product = {
description: 'Product description',
};
const res = await rq({
method: 'POST',
url: '/content-manager/collection-types/api::product-with-dp.product-with-dp',
body: product,
});
expect(res.statusCode).toBe(200);
expect(res.body).toMatchObject({
...product,
});
expect(_.isNil(res.body.name)).toBe(true);
data.productsWithDP.push(res.body);
});
test('Cannot create a product - maxLength', async () => {
const product = {
name: 'Product 1',
description: "I'm a product description that is very long. At least thirty characters.",
};
const res = await rq({
method: 'POST',
url: '/content-manager/collection-types/api::product-with-dp.product-with-dp',
body: product,
});
expect(res.statusCode).toBe(400);
expect(_.get(res, 'body.data.errors.description.0')).toBe(
'description must be at most 30 characters'
);
});
});
});