2022-03-22 18:19:46 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// Test a simple default API with no relations
|
|
|
|
|
|
|
|
const { omit } = require('lodash/fp');
|
|
|
|
|
|
|
|
const { createTestBuilder } = require('../../../../../test/helpers/builder');
|
|
|
|
const { createStrapiInstance } = require('../../../../../test/helpers/strapi');
|
|
|
|
const { createAuthRequest } = require('../../../../../test/helpers/request');
|
|
|
|
|
|
|
|
let strapi;
|
|
|
|
let rq;
|
|
|
|
let data = {
|
|
|
|
folders: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('Folder', () => {
|
|
|
|
const builder = createTestBuilder();
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
|
|
|
strapi = await createStrapiInstance();
|
|
|
|
rq = await createAuthRequest({ strapi });
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(async () => {
|
|
|
|
await strapi.destroy();
|
|
|
|
await builder.cleanup();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('create', () => {
|
|
|
|
test('Can create a folder at root level', async () => {
|
|
|
|
const res = await rq({
|
|
|
|
method: 'POST',
|
|
|
|
url: '/upload/folders?populate=parent',
|
|
|
|
body: {
|
|
|
|
name: 'folder-1',
|
|
|
|
parent: null,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(res.body.data).toMatchObject({
|
|
|
|
id: expect.anything(),
|
|
|
|
name: 'folder-1',
|
|
|
|
uid: expect.anything(),
|
|
|
|
path: '/folder-1',
|
|
|
|
createdAt: expect.anything(),
|
|
|
|
updatedAt: expect.anything(),
|
|
|
|
parent: null,
|
|
|
|
});
|
|
|
|
|
|
|
|
data.folders.push(omit('parent', res.body.data));
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Cannot create a folder with duplicated name at root level', async () => {
|
|
|
|
const res = await rq({
|
|
|
|
method: 'POST',
|
|
|
|
url: '/upload/folders?populate=parent',
|
|
|
|
body: {
|
|
|
|
name: 'folder-1',
|
|
|
|
parent: null,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(res.status).toBe(400);
|
|
|
|
expect(res.body.error.message).toBe('name already taken');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Cannot create a folder with path containing a slash', async () => {
|
|
|
|
const res = await rq({
|
|
|
|
method: 'POST',
|
|
|
|
url: '/upload/folders?populate=parent',
|
|
|
|
body: {
|
|
|
|
name: 'folder-1/2',
|
|
|
|
parent: null,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(res.status).toBe(400);
|
|
|
|
expect(res.body.error.message).toBe('name cannot contain slashes');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Can create a folder inside another folder', async () => {
|
|
|
|
const res = await rq({
|
|
|
|
method: 'POST',
|
|
|
|
url: '/upload/folders?populate=parent',
|
|
|
|
body: {
|
|
|
|
name: 'folder-2',
|
|
|
|
parent: data.folders[0].id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(res.body.data).toMatchObject({
|
|
|
|
id: expect.anything(),
|
|
|
|
name: 'folder-2',
|
|
|
|
uid: expect.anything(),
|
|
|
|
path: '/folder-1/folder-2',
|
|
|
|
createdAt: expect.anything(),
|
|
|
|
updatedAt: expect.anything(),
|
|
|
|
parent: data.folders[0],
|
|
|
|
});
|
|
|
|
|
|
|
|
data.folders.push(omit('parent', res.body.data));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('read', () => {
|
|
|
|
test('Can read folders', async () => {
|
|
|
|
const res = await rq({
|
|
|
|
method: 'GET',
|
|
|
|
url: '/upload/folders',
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(res.body.pagination).toMatchObject({
|
|
|
|
page: 1,
|
|
|
|
pageCount: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
total: 2,
|
|
|
|
});
|
|
|
|
expect(res.body.results).toHaveLength(2);
|
|
|
|
expect(res.body.results).toEqual(
|
|
|
|
expect.arrayContaining([
|
|
|
|
{
|
|
|
|
children: { count: 1 },
|
|
|
|
createdAt: expect.anything(),
|
|
|
|
createdBy: {
|
2022-03-22 18:57:50 +01:00
|
|
|
firstname: expect.anything(),
|
2022-03-22 18:19:46 +01:00
|
|
|
id: expect.anything(),
|
2022-03-22 18:57:50 +01:00
|
|
|
lastname: expect.anything(),
|
2022-03-22 18:19:46 +01:00
|
|
|
username: null,
|
|
|
|
},
|
|
|
|
files: { count: 0 },
|
|
|
|
id: expect.anything(),
|
|
|
|
name: 'folder-1',
|
|
|
|
parent: null,
|
|
|
|
path: '/folder-1',
|
|
|
|
uid: expect.anything(),
|
|
|
|
updatedAt: expect.anything(),
|
|
|
|
updatedBy: {
|
2022-03-22 18:57:50 +01:00
|
|
|
firstname: expect.anything(),
|
2022-03-22 18:19:46 +01:00
|
|
|
id: expect.anything(),
|
2022-03-22 18:57:50 +01:00
|
|
|
lastname: expect.anything(),
|
2022-03-22 18:19:46 +01:00
|
|
|
username: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
children: { count: 0 },
|
|
|
|
createdAt: expect.anything(),
|
|
|
|
createdBy: {
|
2022-03-22 18:57:50 +01:00
|
|
|
firstname: expect.anything(),
|
2022-03-22 18:19:46 +01:00
|
|
|
id: expect.anything(),
|
2022-03-22 18:57:50 +01:00
|
|
|
lastname: expect.anything(),
|
2022-03-22 18:19:46 +01:00
|
|
|
username: null,
|
|
|
|
},
|
2022-03-22 18:57:50 +01:00
|
|
|
files: { count: 0 },
|
2022-03-22 18:19:46 +01:00
|
|
|
id: expect.anything(),
|
|
|
|
name: 'folder-2',
|
|
|
|
parent: {
|
|
|
|
createdAt: expect.anything(),
|
|
|
|
id: expect.anything(),
|
|
|
|
name: 'folder-1',
|
|
|
|
path: '/folder-1',
|
|
|
|
uid: expect.anything(),
|
|
|
|
updatedAt: expect.anything(),
|
|
|
|
},
|
|
|
|
path: '/folder-1/folder-2',
|
|
|
|
uid: expect.anything(),
|
|
|
|
updatedAt: expect.anything(),
|
|
|
|
updatedBy: {
|
2022-03-22 18:57:50 +01:00
|
|
|
firstname: expect.anything(),
|
2022-03-22 18:19:46 +01:00
|
|
|
id: expect.anything(),
|
2022-03-22 18:57:50 +01:00
|
|
|
lastname: expect.anything(),
|
2022-03-22 18:19:46 +01:00
|
|
|
username: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
])
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|