2019-12-27 04:03:10 +08:00
|
|
|
import {expect} from 'chai';
|
|
|
|
import {VideoProcessing} from '../../../../../src/backend/model/fileprocessing/VideoProcessing';
|
|
|
|
import {Config} from '../../../../../src/common/config/private/Config';
|
|
|
|
import {ProjectPath} from '../../../../../src/backend/ProjectPath';
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
|
|
|
|
describe('VideoProcessing', () => {
|
|
|
|
|
2022-04-05 01:37:31 +08:00
|
|
|
/* eslint-disable no-unused-expressions,@typescript-eslint/no-unused-expressions */
|
2019-12-27 04:03:10 +08:00
|
|
|
it('should generate converted file path', async () => {
|
|
|
|
|
2020-01-08 05:28:59 +08:00
|
|
|
ProjectPath.ImageFolder = path.join(__dirname, './../../../assets');
|
2019-12-27 04:03:10 +08:00
|
|
|
const videoPath = path.join(ProjectPath.ImageFolder, 'video.mp4');
|
|
|
|
expect(await VideoProcessing
|
|
|
|
.isValidConvertedPath(VideoProcessing.generateConvertedFilePath(videoPath)))
|
|
|
|
.to.be.true;
|
|
|
|
|
|
|
|
expect(await VideoProcessing
|
|
|
|
.isValidConvertedPath(VideoProcessing.generateConvertedFilePath(videoPath + 'noPath')))
|
|
|
|
.to.be.false;
|
|
|
|
|
|
|
|
{
|
|
|
|
const convertedPath = VideoProcessing.generateConvertedFilePath(videoPath);
|
2022-12-29 02:12:18 +08:00
|
|
|
Config.Media.Video.transcoding.bitRate = 10;
|
2019-12-27 04:03:10 +08:00
|
|
|
expect(await VideoProcessing.isValidConvertedPath(convertedPath)).to.be.false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
const convertedPath = VideoProcessing.generateConvertedFilePath(videoPath);
|
2022-12-29 02:12:18 +08:00
|
|
|
Config.Media.Video.transcoding.codec = 'codec_text' as any;
|
2019-12-27 04:03:10 +08:00
|
|
|
expect(await VideoProcessing.isValidConvertedPath(convertedPath)).to.be.false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
const convertedPath = VideoProcessing.generateConvertedFilePath(videoPath);
|
2022-12-29 02:12:18 +08:00
|
|
|
Config.Media.Video.transcoding.format = 'format_test' as any;
|
2019-12-27 04:03:10 +08:00
|
|
|
expect(await VideoProcessing.isValidConvertedPath(convertedPath)).to.be.false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
const convertedPath = VideoProcessing.generateConvertedFilePath(videoPath);
|
2022-12-29 02:12:18 +08:00
|
|
|
Config.Media.Video.transcoding.resolution = 1 as any;
|
2019-12-27 04:03:10 +08:00
|
|
|
expect(await VideoProcessing.isValidConvertedPath(convertedPath)).to.be.false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|