mirror of
https://github.com/strapi/strapi.git
synced 2025-11-01 18:33:55 +00:00
add content api tests for connect relation format
This commit is contained in:
parent
987987e2df
commit
05c93d44c5
@ -982,7 +982,7 @@ const createEntityManager = (db) => {
|
||||
}
|
||||
|
||||
// Delete the previous relations for anyToOne relations
|
||||
if (isBidirectional(attribute) && isAnyToOne(attribute)) {
|
||||
if (isAnyToOne(attribute)) {
|
||||
await deletePreviousAnyToOneRelations({
|
||||
id,
|
||||
attribute,
|
||||
|
||||
@ -65,10 +65,8 @@ const deletePreviousAnyToOneRelations = async ({
|
||||
const { joinTable } = attribute;
|
||||
const { joinColumn, inverseJoinColumn } = joinTable;
|
||||
|
||||
if (!(isBidirectional(attribute) && isAnyToOne(attribute))) {
|
||||
throw new Error(
|
||||
'deletePreviousAnyToOneRelations can only be called for bidirectional anyToOne relations'
|
||||
);
|
||||
if (!isAnyToOne(attribute)) {
|
||||
throw new Error('deletePreviousAnyToOneRelations can only be called for anyToOne relations');
|
||||
}
|
||||
// handling manyToOne
|
||||
if (isManyToAny(attribute)) {
|
||||
|
||||
690
packages/core/strapi/tests/api/relations.test.e2e.js
Normal file
690
packages/core/strapi/tests/api/relations.test.e2e.js
Normal file
@ -0,0 +1,690 @@
|
||||
'use strict';
|
||||
|
||||
const { createTestBuilder } = require('../../../../../test/helpers/builder');
|
||||
const { createStrapiInstance } = require('../../../../../test/helpers/strapi');
|
||||
const { createAuthRequest } = require('../../../../../test/helpers/request');
|
||||
const modelsUtils = require('../../../../../test/helpers/models');
|
||||
|
||||
let strapi;
|
||||
let rq;
|
||||
const data = {
|
||||
products: [],
|
||||
shops: [],
|
||||
};
|
||||
let id1;
|
||||
let id2;
|
||||
let id3;
|
||||
const populateShop = [
|
||||
'products_ow',
|
||||
'products_oo',
|
||||
'products_mo',
|
||||
'products_om',
|
||||
'products_mm',
|
||||
'products_mw',
|
||||
'myCompo.compo_products_ow',
|
||||
'myCompo.compo_products_mw',
|
||||
];
|
||||
|
||||
const compo = (withRelations = false) => ({
|
||||
displayName: 'compo',
|
||||
category: 'default',
|
||||
attributes: {
|
||||
name: {
|
||||
type: 'string',
|
||||
},
|
||||
...(!withRelations
|
||||
? {}
|
||||
: {
|
||||
compo_products_ow: {
|
||||
type: 'relation',
|
||||
relation: 'oneToOne',
|
||||
target: 'api::product.product',
|
||||
},
|
||||
compo_products_mw: {
|
||||
type: 'relation',
|
||||
relation: 'oneToMany',
|
||||
target: 'api::product.product',
|
||||
},
|
||||
}),
|
||||
},
|
||||
});
|
||||
|
||||
const productModel = {
|
||||
attributes: {
|
||||
name: {
|
||||
type: 'string',
|
||||
},
|
||||
},
|
||||
displayName: 'Product',
|
||||
singularName: 'product',
|
||||
pluralName: 'products',
|
||||
description: '',
|
||||
collectionName: '',
|
||||
};
|
||||
|
||||
const shopModel = {
|
||||
attributes: {
|
||||
name: {
|
||||
type: 'string',
|
||||
},
|
||||
products_ow: {
|
||||
type: 'relation',
|
||||
relation: 'oneToOne',
|
||||
target: 'api::product.product',
|
||||
},
|
||||
products_oo: {
|
||||
type: 'relation',
|
||||
relation: 'oneToOne',
|
||||
target: 'api::product.product',
|
||||
targetAttribute: 'shop',
|
||||
},
|
||||
products_mo: {
|
||||
type: 'relation',
|
||||
relation: 'manyToOne',
|
||||
target: 'api::product.product',
|
||||
targetAttribute: 'shops_mo',
|
||||
},
|
||||
products_om: {
|
||||
type: 'relation',
|
||||
relation: 'oneToMany',
|
||||
target: 'api::product.product',
|
||||
targetAttribute: 'shop_om',
|
||||
},
|
||||
products_mm: {
|
||||
type: 'relation',
|
||||
relation: 'manyToMany',
|
||||
target: 'api::product.product',
|
||||
targetAttribute: 'shops',
|
||||
},
|
||||
products_mw: {
|
||||
type: 'relation',
|
||||
relation: 'oneToMany',
|
||||
target: 'api::product.product',
|
||||
},
|
||||
myCompo: {
|
||||
type: 'component',
|
||||
repeatable: false,
|
||||
component: 'default.compo',
|
||||
},
|
||||
},
|
||||
displayName: 'Shop',
|
||||
singularName: 'shop',
|
||||
pluralName: 'shops',
|
||||
};
|
||||
|
||||
const createEntry = async (pluralName, data, populate) => {
|
||||
const { body } = await rq({
|
||||
method: 'POST',
|
||||
url: `/api/${pluralName}`,
|
||||
body: { data },
|
||||
qs: { populate },
|
||||
});
|
||||
return body.data;
|
||||
};
|
||||
|
||||
const updateEntry = async (pluralName, id, data, populate) => {
|
||||
const { body } = await rq({
|
||||
method: 'PUT',
|
||||
url: `/api/${pluralName}/${id}`,
|
||||
body: { data },
|
||||
qs: { populate },
|
||||
});
|
||||
return body.data;
|
||||
};
|
||||
|
||||
describe('Relations', () => {
|
||||
const builder = createTestBuilder();
|
||||
|
||||
beforeAll(async () => {
|
||||
await builder.addComponent(compo(false)).addContentTypes([productModel, shopModel]).build();
|
||||
|
||||
await modelsUtils.modifyComponent(compo(true));
|
||||
|
||||
strapi = await createStrapiInstance();
|
||||
rq = await createAuthRequest({ strapi });
|
||||
|
||||
const createdProduct1 = await createEntry('products', { name: 'Skate' });
|
||||
const createdProduct2 = await createEntry('products', { name: 'Candle' });
|
||||
const createdProduct3 = await createEntry('products', { name: 'Mug' });
|
||||
|
||||
data.products.push(createdProduct1);
|
||||
data.products.push(createdProduct2);
|
||||
data.products.push(createdProduct3);
|
||||
|
||||
id1 = data.products[0].id;
|
||||
id2 = data.products[1].id;
|
||||
id3 = data.products[2].id;
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await strapi.destroy();
|
||||
await builder.cleanup();
|
||||
});
|
||||
|
||||
describe.each([['connect'], ['set']])(
|
||||
'Create an entity with relations using %s',
|
||||
(connectOrSet) => {
|
||||
describe.each([
|
||||
['directly in the array ([1, 2])', 'object'],
|
||||
['an object in the array ([{ id: 1 }, { id: 2 }])', 'array'],
|
||||
])('ids being %s', (name, mode) => {
|
||||
test('In one order', async () => {
|
||||
const oneRelation = mode === 'object' ? [{ id: id1 }] : [id1];
|
||||
const manyRelations = mode === 'object' ? [{ id: id1 }, { id: id2 }] : [id1, id2];
|
||||
|
||||
const shop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { [connectOrSet]: oneRelation },
|
||||
products_oo: { [connectOrSet]: oneRelation },
|
||||
products_mo: { [connectOrSet]: oneRelation },
|
||||
products_om: { [connectOrSet]: manyRelations },
|
||||
products_mm: { [connectOrSet]: manyRelations },
|
||||
products_mw: { [connectOrSet]: manyRelations },
|
||||
myCompo: {
|
||||
compo_products_ow: { [connectOrSet]: oneRelation },
|
||||
compo_products_mw: { [connectOrSet]: manyRelations },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(shop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_mw: { data: [{ id: id1 }, { id: id2 }] },
|
||||
compo_products_ow: { data: { id: id1 } },
|
||||
},
|
||||
products_mm: { data: [{ id: id1 }, { id: id2 }] },
|
||||
products_mo: { data: { id: id1 } },
|
||||
products_mw: { data: [{ id: id1 }, { id: id2 }] },
|
||||
products_om: { data: [{ id: id1 }, { id: id2 }] },
|
||||
products_oo: { data: { id: id1 } },
|
||||
products_ow: { data: { id: id1 } },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('In reversed order', async () => {
|
||||
const oneRelation = mode === 'object' ? [{ id: id1 }] : [id1];
|
||||
const manyRelations = mode === 'object' ? [{ id: id1 }, { id: id2 }] : [id1, id2];
|
||||
manyRelations.reverse();
|
||||
|
||||
const shop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { [connectOrSet]: oneRelation },
|
||||
products_oo: { [connectOrSet]: oneRelation },
|
||||
products_mo: { [connectOrSet]: oneRelation },
|
||||
products_om: { [connectOrSet]: manyRelations },
|
||||
products_mm: { [connectOrSet]: manyRelations },
|
||||
products_mw: { [connectOrSet]: manyRelations },
|
||||
myCompo: {
|
||||
compo_products_ow: { [connectOrSet]: oneRelation },
|
||||
compo_products_mw: { [connectOrSet]: manyRelations },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(shop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_mw: { data: [{ id: id2 }, { id: id1 }] },
|
||||
compo_products_ow: { data: { id: id1 } },
|
||||
},
|
||||
products_mm: { data: [{ id: id2 }, { id: id1 }] },
|
||||
products_mo: { data: { id: id1 } },
|
||||
products_mw: { data: [{ id: id2 }, { id: id1 }] },
|
||||
products_om: { data: [{ id: id2 }, { id: id1 }] },
|
||||
products_oo: { data: { id: id1 } },
|
||||
products_ow: { data: { id: id1 } },
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
describe('Update an entity relations', () => {
|
||||
describe.each([
|
||||
['directly in the array ([3])', 'object'],
|
||||
['an object in the array ([{ id: 3 }])', 'array'],
|
||||
])('ids being %s', (name, mode) => {
|
||||
test('Adding id3', async () => {
|
||||
const createdShop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { connect: [id1] },
|
||||
products_oo: { connect: [id1] },
|
||||
products_mo: { connect: [id1] },
|
||||
products_om: { connect: [id1, id2] },
|
||||
products_mm: { connect: [id1, id2] },
|
||||
products_mw: { connect: [id1, id2] },
|
||||
myCompo: {
|
||||
compo_products_ow: { connect: [id1] },
|
||||
compo_products_mw: { connect: [id1, id2] },
|
||||
},
|
||||
},
|
||||
['myCompo']
|
||||
);
|
||||
|
||||
const relationToAdd = mode === 'object' ? [{ id: id3 }] : [id3];
|
||||
|
||||
const updatedShop = await updateEntry(
|
||||
'shops',
|
||||
createdShop.id,
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { connect: relationToAdd },
|
||||
products_oo: { connect: relationToAdd },
|
||||
products_mo: { connect: relationToAdd },
|
||||
products_om: { connect: relationToAdd },
|
||||
products_mm: { connect: relationToAdd },
|
||||
products_mw: { connect: relationToAdd },
|
||||
myCompo: {
|
||||
id: createdShop.attributes.myCompo.id,
|
||||
compo_products_ow: { connect: relationToAdd },
|
||||
compo_products_mw: { connect: relationToAdd },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(updatedShop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_mw: { data: [{ id: id1 }, { id: id2 }, { id: id3 }] },
|
||||
compo_products_ow: { data: { id: id3 } },
|
||||
},
|
||||
products_mm: { data: [{ id: id1 }, { id: id2 }, { id: id3 }] },
|
||||
products_mo: { data: { id: id3 } },
|
||||
products_mw: { data: [{ id: id1 }, { id: id2 }, { id: id3 }] },
|
||||
products_om: { data: [{ id: id1 }, { id: id2 }, { id: id3 }] },
|
||||
products_oo: { data: { id: id3 } },
|
||||
products_ow: { data: { id: id3 } },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('Adding id3 & removing id1', async () => {
|
||||
const createdShop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { connect: [id1] },
|
||||
products_oo: { connect: [id1] },
|
||||
products_mo: { connect: [id1] },
|
||||
products_om: { connect: [id1, id2] },
|
||||
products_mm: { connect: [id1, id2] },
|
||||
products_mw: { connect: [id1, id2] },
|
||||
myCompo: {
|
||||
compo_products_ow: { connect: [id1] },
|
||||
compo_products_mw: { connect: [id1, id2] },
|
||||
},
|
||||
},
|
||||
['myCompo']
|
||||
);
|
||||
|
||||
const relationToAdd = mode === 'object' ? [{ id: id3 }] : [id3];
|
||||
const relationToRemove = mode === 'object' ? [{ id: id1 }] : [id1];
|
||||
|
||||
const updatedShop = await updateEntry(
|
||||
'shops',
|
||||
createdShop.id,
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_oo: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_mo: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_om: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_mm: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_mw: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
myCompo: {
|
||||
id: createdShop.attributes.myCompo.id,
|
||||
compo_products_ow: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
compo_products_mw: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(updatedShop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_mw: { data: [{ id: id2 }, { id: id3 }] },
|
||||
compo_products_ow: { data: { id: id3 } },
|
||||
},
|
||||
products_mm: { data: [{ id: id2 }, { id: id3 }] },
|
||||
products_mo: { data: { id: id3 } },
|
||||
products_mw: { data: [{ id: id2 }, { id: id3 }] },
|
||||
products_om: { data: [{ id: id2 }, { id: id3 }] },
|
||||
products_oo: { data: { id: id3 } },
|
||||
products_ow: { data: { id: id3 } },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('Adding id3 & removing id1, id3 (should still add id3)', async () => {
|
||||
const createdShop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { connect: [id1] },
|
||||
products_oo: { connect: [id1] },
|
||||
products_mo: { connect: [id1] },
|
||||
products_om: { connect: [id1, id2] },
|
||||
products_mm: { connect: [id1, id2] },
|
||||
products_mw: { connect: [id1, id2] },
|
||||
myCompo: {
|
||||
compo_products_ow: { connect: [id1] },
|
||||
compo_products_mw: { connect: [id1, id2] },
|
||||
},
|
||||
},
|
||||
['myCompo']
|
||||
);
|
||||
|
||||
const relationToAdd = mode === 'object' ? [{ id: id3 }] : [id3];
|
||||
const relationToRemove = mode === 'object' ? [{ id: id1 }, { id: id3 }] : [id1, id3];
|
||||
|
||||
const updatedShop = await updateEntry(
|
||||
'shops',
|
||||
createdShop.id,
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_oo: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_mo: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_om: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_mm: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
products_mw: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
myCompo: {
|
||||
id: createdShop.attributes.myCompo.id,
|
||||
compo_products_ow: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
compo_products_mw: { connect: relationToAdd, disconnect: relationToRemove },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(updatedShop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_mw: { data: [{ id: id2 }, { id: id3 }] },
|
||||
compo_products_ow: { data: { id: id3 } },
|
||||
},
|
||||
products_mm: { data: [{ id: id2 }, { id: id3 }] },
|
||||
products_mo: { data: { id: id3 } },
|
||||
products_mw: { data: [{ id: id2 }, { id: id3 }] },
|
||||
products_om: { data: [{ id: id2 }, { id: id3 }] },
|
||||
products_oo: { data: { id: id3 } },
|
||||
products_ow: { data: { id: id3 } },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('Change relation order from id1, id2, id3 to id3, id2, id1', async () => {
|
||||
const createdShop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_om: { connect: [id1, id2, id3] },
|
||||
products_mm: { connect: [id1, id2, id3] },
|
||||
products_mw: { connect: [id1, id2, id3] },
|
||||
myCompo: {
|
||||
compo_products_mw: { connect: [id1, id2, id3] },
|
||||
},
|
||||
},
|
||||
['myCompo']
|
||||
);
|
||||
|
||||
const relationToChange =
|
||||
mode === 'object' ? [{ id: id3 }, { id: id2 }, { id: id1 }] : [id3, id2, id1];
|
||||
|
||||
const updatedShop = await updateEntry(
|
||||
'shops',
|
||||
createdShop.id,
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_om: { connect: relationToChange },
|
||||
products_mm: { connect: relationToChange },
|
||||
products_mw: { connect: relationToChange },
|
||||
myCompo: {
|
||||
id: createdShop.attributes.myCompo.id,
|
||||
compo_products_mw: { connect: relationToChange },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(updatedShop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_mw: { data: [{ id: id3 }, { id: id2 }, { id: id1 }] },
|
||||
},
|
||||
products_mm: { data: [{ id: id3 }, { id: id2 }, { id: id1 }] },
|
||||
products_mw: { data: [{ id: id3 }, { id: id2 }, { id: id1 }] },
|
||||
products_om: { data: [{ id: id3 }, { id: id2 }, { id: id1 }] },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('Change relation order by putting id2 at the end', async () => {
|
||||
const createdShop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_om: { connect: [id1, id2, id3] },
|
||||
products_mm: { connect: [id1, id2, id3] },
|
||||
products_mw: { connect: [id1, id2, id3] },
|
||||
myCompo: {
|
||||
compo_products_mw: { connect: [id1, id2, id3] },
|
||||
},
|
||||
},
|
||||
['myCompo']
|
||||
);
|
||||
|
||||
const relationToChange = mode === 'object' ? [{ id: id2 }] : [id2];
|
||||
|
||||
const updatedShop = await updateEntry(
|
||||
'shops',
|
||||
createdShop.id,
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_om: { connect: relationToChange },
|
||||
products_mm: { connect: relationToChange },
|
||||
products_mw: { connect: relationToChange },
|
||||
myCompo: {
|
||||
id: createdShop.attributes.myCompo.id,
|
||||
compo_products_mw: { connect: relationToChange },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(updatedShop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_mw: { data: [{ id: id1 }, { id: id3 }, { id: id2 }] },
|
||||
},
|
||||
products_mm: { data: [{ id: id1 }, { id: id3 }, { id: id2 }] },
|
||||
products_mw: { data: [{ id: id1 }, { id: id3 }, { id: id2 }] },
|
||||
products_om: { data: [{ id: id1 }, { id: id3 }, { id: id2 }] },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test('Change relation order by putting id2, id1 at the end', async () => {
|
||||
const createdShop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_om: { connect: [id1, id2, id3] },
|
||||
products_mm: { connect: [id1, id2, id3] },
|
||||
products_mw: { connect: [id1, id2, id3] },
|
||||
myCompo: {
|
||||
compo_products_mw: { connect: [id1, id2, id3] },
|
||||
},
|
||||
},
|
||||
['myCompo']
|
||||
);
|
||||
|
||||
const relationToChange = mode === 'object' ? [{ id: id2 }, { id: id1 }] : [id2, id1];
|
||||
|
||||
const updatedShop = await updateEntry(
|
||||
'shops',
|
||||
createdShop.id,
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_om: { connect: relationToChange },
|
||||
products_mm: { connect: relationToChange },
|
||||
products_mw: { connect: relationToChange },
|
||||
myCompo: {
|
||||
id: createdShop.attributes.myCompo.id,
|
||||
compo_products_mw: { connect: relationToChange },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(updatedShop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_mw: { data: [{ id: id3 }, { id: id2 }, { id: id1 }] },
|
||||
},
|
||||
products_mm: { data: [{ id: id3 }, { id: id2 }, { id: id1 }] },
|
||||
products_mw: { data: [{ id: id3 }, { id: id2 }, { id: id1 }] },
|
||||
products_om: { data: [{ id: id3 }, { id: id2 }, { id: id1 }] },
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('Disconnect entity relations', () => {
|
||||
describe.each([
|
||||
['directly in the array ([1, 2, 3])', 'object'],
|
||||
['an object in the array ([{ id: 1 }, { id: 2 }, { id: 3 }])', 'array'],
|
||||
])('ids being %s', (name, mode) => {
|
||||
test('Remove all relations id1, id2, id3', async () => {
|
||||
const createdShop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { connect: [id1] },
|
||||
products_oo: { connect: [id1] },
|
||||
products_mo: { connect: [id1] },
|
||||
products_om: { connect: [id1, id2, id3] },
|
||||
products_mm: { connect: [id1, id2, id3] },
|
||||
products_mw: { connect: [id1, id2, id3] },
|
||||
myCompo: {
|
||||
compo_products_ow: { connect: [id1] },
|
||||
compo_products_mw: { connect: [id1, id2, id3] },
|
||||
},
|
||||
},
|
||||
['myCompo']
|
||||
);
|
||||
|
||||
const relationsToDisconnectOne = mode === 'object' ? [{ id: id1 }] : [id1];
|
||||
const relationsToDisconnectMany =
|
||||
mode === 'object' ? [{ id: id3 }, { id: id2 }, { id: id1 }] : [id3, id2, id1];
|
||||
|
||||
const updatedShop = await updateEntry(
|
||||
'shops',
|
||||
createdShop.id,
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { disconnect: relationsToDisconnectOne },
|
||||
products_oo: { disconnect: relationsToDisconnectOne },
|
||||
products_mo: { disconnect: relationsToDisconnectOne },
|
||||
products_om: { disconnect: relationsToDisconnectMany },
|
||||
products_mm: { disconnect: relationsToDisconnectMany },
|
||||
products_mw: { disconnect: relationsToDisconnectMany },
|
||||
myCompo: {
|
||||
id: createdShop.attributes.myCompo.id,
|
||||
compo_products_ow: { disconnect: relationsToDisconnectOne },
|
||||
compo_products_mw: { disconnect: relationsToDisconnectMany },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(updatedShop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_ow: { data: null },
|
||||
compo_products_mw: { data: [] },
|
||||
},
|
||||
products_ow: { data: null },
|
||||
products_oo: { data: null },
|
||||
products_mo: { data: null },
|
||||
products_mm: { data: [] },
|
||||
products_mw: { data: [] },
|
||||
products_om: { data: [] },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("Remove relations that doesn't exist doesn't fail", async () => {
|
||||
const createdShop = await createEntry(
|
||||
'shops',
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { connect: [id1] },
|
||||
products_oo: { connect: [id1] },
|
||||
products_mo: { connect: [id1] },
|
||||
products_om: { connect: [id1] },
|
||||
products_mm: { connect: [id1] },
|
||||
products_mw: { connect: [id1] },
|
||||
myCompo: {
|
||||
compo_products_ow: { connect: [id1] },
|
||||
compo_products_mw: { connect: [id1] },
|
||||
},
|
||||
},
|
||||
['myCompo']
|
||||
);
|
||||
|
||||
const relationsToDisconnectMany =
|
||||
mode === 'object' ? [{ id: id3 }, { id: id2 }, { id: 9999 }] : [id3, id2, 9999];
|
||||
|
||||
const updatedShop = await updateEntry(
|
||||
'shops',
|
||||
createdShop.id,
|
||||
{
|
||||
name: 'Cazotte Shop',
|
||||
products_ow: { disconnect: relationsToDisconnectMany },
|
||||
products_oo: { disconnect: relationsToDisconnectMany },
|
||||
products_mo: { disconnect: relationsToDisconnectMany },
|
||||
products_om: { disconnect: relationsToDisconnectMany },
|
||||
products_mm: { disconnect: relationsToDisconnectMany },
|
||||
products_mw: { disconnect: relationsToDisconnectMany },
|
||||
myCompo: {
|
||||
id: createdShop.attributes.myCompo.id,
|
||||
compo_products_ow: { disconnect: relationsToDisconnectMany },
|
||||
compo_products_mw: { disconnect: relationsToDisconnectMany },
|
||||
},
|
||||
},
|
||||
populateShop
|
||||
);
|
||||
|
||||
expect(updatedShop).toMatchObject({
|
||||
attributes: {
|
||||
myCompo: {
|
||||
compo_products_ow: { data: { id: id1 } },
|
||||
compo_products_mw: { data: [{ id: id1 }] },
|
||||
},
|
||||
products_ow: { data: { id: id1 } },
|
||||
products_oo: { data: { id: id1 } },
|
||||
products_mo: { data: { id: id1 } },
|
||||
products_mm: { data: [{ id: id1 }] },
|
||||
products_mw: { data: [{ id: id1 }] },
|
||||
products_om: { data: [{ id: id1 }] },
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user