Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/strapi/lib/core/__tests__/ drwxr-xr-x | |
| Viewing file: Select action/file-type: const fs = require('../fs');
const fse = require('fs-extra');
const path = require('path');
jest.mock('fs-extra');
describe('Strapi fs utils', () => {
const strapi = {
dir: '/tmp',
};
test('Provides new functions', () => {
const strapiFS = fs(strapi);
expect(strapiFS.writeAppFile).toBeInstanceOf(Function);
expect(strapiFS.writePluginFile).toBeInstanceOf(Function);
});
describe('Write App File', () => {
test('Makes sure the path exists and writes', async () => {
const strapiFS = fs(strapi);
const content = '';
await strapiFS.writeAppFile('test', content);
expect(fse.ensureFile).toHaveBeenCalledWith(path.join('/', 'tmp', 'test'));
expect(fse.writeFile).toHaveBeenCalledWith(path.join('/', 'tmp', 'test'), content);
});
test('Normalize the path to avoid relative access to folders in parent directories', async () => {
const strapiFS = fs(strapi);
const content = '';
await strapiFS.writeAppFile('../../test', content);
expect(fse.ensureFile).toHaveBeenCalledWith(path.join('/', 'tmp', 'test'));
expect(fse.writeFile).toHaveBeenCalledWith(path.join('/', 'tmp', 'test'), content);
});
test('Works with array path', async () => {
const strapiFS = fs(strapi);
const content = '';
await strapiFS.writeAppFile(['test', 'sub', 'path'], content);
expect(fse.ensureFile).toHaveBeenCalledWith(path.join('/', 'tmp', 'test', 'sub', 'path'));
expect(fse.writeFile).toHaveBeenCalledWith(
path.join('/', 'tmp', 'test', 'sub', 'path'),
content
);
});
});
describe('Write Plugin File', () => {
test('Scopes the writes in the extensions folder', async () => {
const strapiFS = fs(strapi);
const content = '';
strapiFS.writeAppFile = jest.fn(() => Promise.resolve());
await strapiFS.writePluginFile('users-permissions', ['test', 'sub', 'path'], content);
expect(strapiFS.writeAppFile).toHaveBeenCalledWith(
'extensions/users-permissions/test/sub/path',
content
);
});
});
});
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0487 ]-- |