mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
124 lines
5.6 KiB
TypeScript
124 lines
5.6 KiB
TypeScript
import {expect} from 'chai';
|
|
import {MetadataLoader} from '../../../../../src/backend/model/threading/MetadataLoader';
|
|
import {Utils} from '../../../../../src/common/Utils';
|
|
import * as path from 'path';
|
|
import * as fs from 'fs';
|
|
import {PhotoProcessing} from '../../../../../src/backend/model/fileprocessing/PhotoProcessing';
|
|
|
|
describe('MetadataLoader', () => {
|
|
|
|
it('should load png', async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/test_png.png'));
|
|
delete data.creationDate; // creation time for png not supported
|
|
const expected = require(path.join(__dirname, '/../../../assets/test_png.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
|
|
it('should load jpg', async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/test image öüóőúéáű-.,.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/test image öüóőúéáű-.,.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
|
|
it('should load miss dated jpg', async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/date_issue.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/date_issue.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
|
|
|
|
it('should load Rating and not overwrite its value by RatingPercent', async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/two_ratings.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/two_ratings.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
|
|
it('should load jpg 2', async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/old_photo.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/old_photo.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
|
|
describe('should load jpg with proper height and orientation', () => {
|
|
it('jpg 1', async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/orientation/broken_orientation_exif.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/orientation/broken_orientation_exif.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
it('jpg 2', async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(
|
|
path.join(__dirname, '/../../../assets/orientation/broken_orientation_exif2.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/orientation/broken_orientation_exif2.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
});
|
|
|
|
describe('should load jpg with edge case exif data', () => {
|
|
const root = path.join(__dirname, '/../../../assets/edge_case_exif_data');
|
|
const files = fs.readdirSync(root);
|
|
for (const item of files) {
|
|
const fullFilePath = path.join(root, item);
|
|
if (PhotoProcessing.isPhoto(fullFilePath)) {
|
|
it(item, async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(fullFilePath);
|
|
const expected = require(fullFilePath.split('.').slice(0, -1).join('.') + '.json');
|
|
if (expected.skip) {
|
|
expected.skip.forEach((s: string) => {
|
|
delete (data as any)[s];
|
|
delete expected[s];
|
|
});
|
|
delete expected.skip;
|
|
}
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
describe('should read orientation', () => {
|
|
for (let i = 0; i <= 8; ++i) {
|
|
it('Landscape ' + i, async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/orientation/Landscape_' + i + '.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/orientation/Landscape.json'));
|
|
expected.orientation = i;
|
|
delete data.fileSize;
|
|
delete data.creationDate;
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
it('Portrait ' + i, async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/orientation/Portrait_' + i + '.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/orientation/Portrait.json'));
|
|
expected.orientation = i;
|
|
delete data.fileSize;
|
|
delete data.creationDate;
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
}
|
|
});
|
|
|
|
|
|
it('should load jpg edited with exiftool', async () => {
|
|
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/exiftool.jpg'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/exiftool.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
|
|
|
|
it('should load mp4', async () => {
|
|
const data = await MetadataLoader.loadVideoMetadata(path.join(__dirname, '/../../../assets/video.mp4'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/video.json'));
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
|
|
it('should respect mp4 rotate transformation', async () => {
|
|
const data = await MetadataLoader.loadVideoMetadata(path.join(__dirname, '/../../../assets/video_rotate.mp4'));
|
|
const expected = require(path.join(__dirname, '/../../../assets/video_rotate.json'));
|
|
delete data.duration;
|
|
delete expected.duration;
|
|
expect(Utils.clone(data)).to.be.deep.equal(expected);
|
|
});
|
|
|
|
});
|