mirror of
https://github.com/strapi/strapi.git
synced 2025-10-05 21:32:26 +00:00
Add e2e tests for RF
Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
This commit is contained in:
parent
0d9812db95
commit
008dba0ac4
@ -10,4 +10,5 @@ module.exports = {
|
|||||||
'<rootDir>/test/',
|
'<rootDir>/test/',
|
||||||
],
|
],
|
||||||
transform: {},
|
transform: {},
|
||||||
|
modulePathIgnorePatterns: ['.cache'],
|
||||||
};
|
};
|
||||||
|
@ -35,8 +35,8 @@ const withDefaultPagination = params => {
|
|||||||
const { page = 1, pageSize = 100, ...rest } = params;
|
const { page = 1, pageSize = 100, ...rest } = params;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
page: parseInt(page),
|
page: Math.max(1, parseInt(page)) || 1,
|
||||||
pageSize: parseInt(pageSize),
|
pageSize: Math.max(1, parseInt(pageSize)) || 100,
|
||||||
...rest,
|
...rest,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -0,0 +1,218 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const { prop, difference, map, uniq } = require('lodash/fp');
|
||||||
|
const { registerAndLogin } = require('../../../../test/helpers/auth');
|
||||||
|
const createModelsUtils = require('../../../../test/helpers/models');
|
||||||
|
const { createAuthRequest } = require('../../../../test/helpers/request');
|
||||||
|
|
||||||
|
let rq;
|
||||||
|
let modelsUtils;
|
||||||
|
const data = {
|
||||||
|
product: [],
|
||||||
|
category: [],
|
||||||
|
shop: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
const productModel = {
|
||||||
|
attributes: {
|
||||||
|
name: {
|
||||||
|
type: 'string',
|
||||||
|
unique: true,
|
||||||
|
},
|
||||||
|
categories: {
|
||||||
|
nature: 'oneToMany',
|
||||||
|
private: false,
|
||||||
|
target: 'application::category.category',
|
||||||
|
targetAttribute: 'product',
|
||||||
|
},
|
||||||
|
shops: {
|
||||||
|
nature: 'manyWay',
|
||||||
|
target: 'application::shop.shop',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
name: 'product',
|
||||||
|
};
|
||||||
|
|
||||||
|
const categoryModel = {
|
||||||
|
attributes: {
|
||||||
|
name: {
|
||||||
|
type: 'string',
|
||||||
|
unique: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
name: 'category',
|
||||||
|
};
|
||||||
|
|
||||||
|
const shopModel = {
|
||||||
|
attributes: {
|
||||||
|
name: {
|
||||||
|
type: 'string',
|
||||||
|
unique: true,
|
||||||
|
},
|
||||||
|
metadata: {
|
||||||
|
type: 'string',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
name: 'shop',
|
||||||
|
};
|
||||||
|
|
||||||
|
const fixtures = {
|
||||||
|
shop: [
|
||||||
|
{ name: 'SH.A', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.B', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.C', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.D', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.E', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.F', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.G', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.H', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.I', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.J', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.K', metadata: 'foobar' },
|
||||||
|
{ name: 'SH.L', metadata: 'foobar' },
|
||||||
|
],
|
||||||
|
category: [
|
||||||
|
{ name: 'CT.A' },
|
||||||
|
{ name: 'CT.B' },
|
||||||
|
{ name: 'CT.C' },
|
||||||
|
{ name: 'CT.D' },
|
||||||
|
{ name: 'CT.E' },
|
||||||
|
{ name: 'CT.F' },
|
||||||
|
{ name: 'CT.G' },
|
||||||
|
{ name: 'CT.H' },
|
||||||
|
{ name: 'CT.I' },
|
||||||
|
{ name: 'CT.J' },
|
||||||
|
{ name: 'CT.K' },
|
||||||
|
{ name: 'CT.L' },
|
||||||
|
],
|
||||||
|
product: () => {
|
||||||
|
const { shop, category } = data;
|
||||||
|
|
||||||
|
const getFrom = model => (start, end) => fixtures[model].map(prop('name')).slice(start, end);
|
||||||
|
|
||||||
|
const items = [
|
||||||
|
{ name: 'PD.A', categories: getFrom('category')(0, 5), shops: getFrom('shop')(0, 12) },
|
||||||
|
];
|
||||||
|
|
||||||
|
return items.map(item => ({
|
||||||
|
...item,
|
||||||
|
categories: item.categories.map(catName => category.find(cat => cat.name === catName).id),
|
||||||
|
shops: item.shops.map(shopName => shop.find(sh => sh.name === shopName).id),
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const getUID = modelName => `application::${modelName}.${modelName}`;
|
||||||
|
const getCMPrefixUrl = modelName => `/content-manager/collection-types/${getUID(modelName)}`;
|
||||||
|
|
||||||
|
const createFixtures = async () => {
|
||||||
|
let url = getCMPrefixUrl(shopModel.name);
|
||||||
|
for (const shop of fixtures.shop) {
|
||||||
|
const res = await rq.post(url, { body: shop });
|
||||||
|
data.shop.push(res.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
url = getCMPrefixUrl(categoryModel.name);
|
||||||
|
for (const category of fixtures.category) {
|
||||||
|
const res = await rq.post(url, { body: category });
|
||||||
|
data.category.push(res.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
url = getCMPrefixUrl(productModel.name);
|
||||||
|
for (const product of fixtures.product()) {
|
||||||
|
const res = await rq.post(url, { body: product });
|
||||||
|
data.product.push(res.body);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
describe('x-to-many RF Preview', () => {
|
||||||
|
const cmProductUrl = getCMPrefixUrl(productModel.name);
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
const token = await registerAndLogin();
|
||||||
|
rq = createAuthRequest(token);
|
||||||
|
|
||||||
|
modelsUtils = createModelsUtils({ rq });
|
||||||
|
await modelsUtils.createContentTypes([shopModel, categoryModel, productModel]);
|
||||||
|
await modelsUtils.cleanupContentTypes(['shop', 'category', 'product']);
|
||||||
|
|
||||||
|
await createFixtures();
|
||||||
|
}, 60000);
|
||||||
|
|
||||||
|
afterAll(async () => {
|
||||||
|
await modelsUtils.cleanupContentTypes(['shop', 'category', 'product']);
|
||||||
|
await modelsUtils.deleteContentTypes(['shop', 'category', 'product']);
|
||||||
|
}, 60000);
|
||||||
|
|
||||||
|
describe('Entity Misc', () => {
|
||||||
|
test.each(['foobar', 'name'])(`Throws if the targeted field is invalid (%s)`, async field => {
|
||||||
|
const product = data.product[0];
|
||||||
|
const { body, statusCode } = await rq.get(`${cmProductUrl}/${product.id}/${field}`);
|
||||||
|
|
||||||
|
expect(statusCode).toBe(400);
|
||||||
|
expect(body.error).toBe('Bad Request');
|
||||||
|
expect(body.message).toBe('Invalid target field');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Throws if the entity does not exist', async () => {
|
||||||
|
const { body, statusCode } = await rq.get(`${cmProductUrl}/0/categories`);
|
||||||
|
|
||||||
|
expect(statusCode).toBe(404);
|
||||||
|
expect(body.error).toBe('Not Found');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Relation Nature', () => {
|
||||||
|
test(`Throws if the relation's nature is not a x-to-many`, async () => {
|
||||||
|
const url = getCMPrefixUrl(categoryModel.name);
|
||||||
|
const id = data.category[0].id;
|
||||||
|
|
||||||
|
const { body, statusCode } = await rq.get(`${url}/${id}/product`);
|
||||||
|
|
||||||
|
expect(statusCode).toBe(400);
|
||||||
|
expect(body.error).toBe('Bad Request');
|
||||||
|
expect(body.message).toBe('Invalid target field');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Default Behavior', () => {
|
||||||
|
test.each(['shops', 'categories'])('Should returns a preview for the %s field', async field => {
|
||||||
|
const product = data.product[0];
|
||||||
|
|
||||||
|
const { body, statusCode } = await rq.get(`${cmProductUrl}/${product.id}/${field}`);
|
||||||
|
|
||||||
|
const toIds = arr => uniq(map(prop('id'))(arr));
|
||||||
|
const expected = product[field].slice(0, 10);
|
||||||
|
|
||||||
|
expect(statusCode).toBe(200);
|
||||||
|
expect(body.results).toHaveLength(expected.length);
|
||||||
|
expect(difference(toIds(body.results), toIds(product[field]))).toHaveLength(0);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Pagination', () => {
|
||||||
|
test.each([
|
||||||
|
[1, 10],
|
||||||
|
[2, 10],
|
||||||
|
[5, 1],
|
||||||
|
[4, 2],
|
||||||
|
[1, 100],
|
||||||
|
])('Custom pagination (%s, %s)', async (page, pageSize) => {
|
||||||
|
const product = data.product[0];
|
||||||
|
|
||||||
|
const { body, statusCode } = await rq.get(
|
||||||
|
`${cmProductUrl}/${product.id}/shops?page=${page}&pageSize=${pageSize}`
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(statusCode).toBe(200);
|
||||||
|
|
||||||
|
const { pagination, results } = body;
|
||||||
|
|
||||||
|
expect(pagination.page).toBe(page);
|
||||||
|
expect(pagination.pageSize).toBe(pageSize);
|
||||||
|
expect(results).toHaveLength(
|
||||||
|
Math.min(pageSize, product.shops.length - pageSize * (page - 1))
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user