Ghost/ghost/importer-handler-content-files/test/ImporterContentFileHandler.test.js
Hannah Wolfe 6161f94910
Updated to use assert/strict everywhere (#17047)
refs: https://github.com/TryGhost/Toolbox/issues/595

We're rolling out new rules around the node assert library, the first of which is enforcing the use of assert/strict. This means we don't need to use the strict version of methods, as the standard version will work that way by default.

This caught some gotchas in our existing usage of assert where the lack of strict mode had unexpected results:
- Url matching needs to be done on `url.href` see aa58b354a4
- Null and undefined are not the same thing,  there were a few cases of this being confused
- Particularly questionable changes in [PostExporter tests](c1a468744b) tracked [here](https://github.com/TryGhost/Team/issues/3505).
- A typo see eaac9c293a

Moving forward, using assert strict should help us to catch unexpected behaviour, particularly around nulls and undefineds during implementation.
2023-06-21 09:56:59 +01:00

129 lines
5.0 KiB
JavaScript

const assert = require('assert/strict');
const ImporterContentFileHandler = require('../index');
describe('ImporterContentFileHandler', function () {
it('creates an instance', function () {
const contentFileImporter = new ImporterContentFileHandler({
type: 'media',
storage: {},
config: {},
urlUtils: {}
});
assert.ok(contentFileImporter);
assert.equal(contentFileImporter.type, 'media');
});
it('returns configured extensions', function () {
const contentFileImporter = new ImporterContentFileHandler({
storage: {},
extensions: ['mp4'],
urlUtils: {}
});
assert.deepEqual(contentFileImporter.extensions, ['mp4']);
});
it('returns configured contentTypes', function () {
const contentFileImporter = new ImporterContentFileHandler({
storage: {},
contentTypes: ['video/mp4'],
urlUtils: {}
});
assert.deepEqual(contentFileImporter.contentTypes, ['video/mp4']);
});
// @NOTE: below tests need more work, they are just covering the basics
// the cases are based on a fact that the implementation was a copy
// from the image importer and the tests were adapted to the media importer
describe('loadFile', function () {
it('loads files and decorates them with newPath with subdirectory', async function () {
const contentFileImporter = new ImporterContentFileHandler({
storage: {
staticFileURLPrefix: 'content/media',
getUniqueFileName: (file, targetDir) => Promise.resolve(targetDir + '/' + file.name)
},
contentPath: '/var/www/ghost/content/media',
urlUtils: {
getSubdir: () => 'blog',
urlJoin: (...args) => args.join('/')
}
});
const files = [{
name: 'content/media/1.mp4'
}];
const subDir = 'blog';
await contentFileImporter.loadFile(files, subDir);
assert.equal(files[0].name, '1.mp4');
assert.equal(files[0].originalPath, 'content/media/1.mp4');
assert.equal(files[0].targetDir, '/var/www/ghost/content/media');
assert.equal(files[0].newPath, '//blog/content/media/1.mp4');
});
it('loads files and decorates them with newPath with NO subdirectory', async function () {
const contentFileImporter = new ImporterContentFileHandler({
storage: {
staticFileURLPrefix: 'content/media',
getUniqueFileName: (file, targetDir) => Promise.resolve(targetDir + '/' + file.name)
},
contentPath: '/var/www/ghost/content/media',
urlUtils: {
getSubdir: () => 'blog',
urlJoin: (...args) => args.join('/')
}
});
const files = [{
name: 'content/media/1.mp4'
}];
await contentFileImporter.loadFile(files);
assert.equal(files[0].name, '1.mp4');
assert.equal(files[0].originalPath, 'content/media/1.mp4');
assert.equal(files[0].targetDir, '/var/www/ghost/content/media');
assert.equal(files[0].newPath, '//blog/content/media/1.mp4');
});
it('ignores files in root folder', async function () {
const contentFileImporter = new ImporterContentFileHandler({
storage: {
staticFileURLPrefix: 'content/media',
getUniqueFileName: (file, targetDir) => Promise.resolve(targetDir + '/' + file.name)
},
contentPath: '/var/www/ghost/content/media',
ignoreRootFolderFiles: true,
urlUtils: {
getSubdir: () => 'blog',
urlJoin: (...args) => args.join('/')
}
});
const files = [{
name: 'root.mp4'
}, {
name: 'content/media/1.mp4'
}];
await contentFileImporter.loadFile(files);
// @NOTE: the root file is ignored. It's a weird test because ideally the file
// should be removed completely from the list, but the importer works
// by modifying the list in place and it's not easy to remove the file
assert.equal(files[0].name, 'root.mp4');
assert.equal(files[0].originalPath, undefined);
assert.equal(files[0].targetDir, undefined);
assert.equal(files[0].newPath, undefined);
assert.equal(files[1].name, '1.mp4');
assert.equal(files[1].originalPath, 'content/media/1.mp4');
assert.equal(files[1].targetDir, '/var/www/ghost/content/media');
assert.equal(files[1].newPath, '//blog/content/media/1.mp4');
});
});
});