1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/test/backend/unit/model/fileprocessing/VideoProcessing.spec.ts

46 lines
1.8 KiB
TypeScript
Raw Normal View History

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 () => {
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);
2023-01-02 05:09:24 +08:00
Config.Media.Video.transcoding.mp4Codec = '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;
}
});
});