1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

moved some tests, that seemed to influence indexing tests

This commit is contained in:
gras 2024-03-31 16:15:45 +02:00
parent 75d81d42bd
commit ae1309b011
6 changed files with 5 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 8.5 MiB

After

Width:  |  Height:  |  Size: 8.5 MiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -24,7 +24,7 @@ describe('DiskMangerWorker', () => {
ProjectPath.ImageFolder = path.join(__dirname, '/../../../assets');
const dir = await DiskManager.scanDirectory('/');
// should match the number of media (photo/video) files in the assets folder
expect(dir.media.length).to.be.equals(17);
expect(dir.media.length).to.be.equals(15);
// eslint-disable-next-line @typescript-eslint/no-var-requires
const expected = require(path.join(__dirname, '/../../../assets/test image öüóőúéáű-.,.json'));
const i = dir.media.findIndex(m => m.name === 'test image öüóőúéáű-.,.jpg');

View File

@ -36,8 +36,8 @@ describe('MetadataLoader', () => {
});
it('should load png with description', async () => {
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/description.png'));
const expected = require(path.join(__dirname, '/../../../assets/description.json'));
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/title_caption/description.png'));
const expected = require(path.join(__dirname, '/../../../assets/title_caption/description.json'));
expect(Utils.clone(data)).to.be.deep.equal(expected);
});
@ -186,8 +186,8 @@ describe('MetadataLoader', () => {
expect(Utils.clone(data)).to.be.deep.equal(expected);
});
it('should load image with metadata saved by digikam', async () => {
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/digikam.jpg'));
const expected = require(path.join(__dirname, '/../../../assets/digikam.json'));
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/title_caption/digikam.jpg'));
const expected = require(path.join(__dirname, '/../../../assets/title_caption/digikam.json'));
expect(Utils.clone(data)).to.be.deep.equal(expected);
});