diff --git a/app/code/Magento/MediaGalleryMetadata/Test/Integration/Model/ExtractMetadataTest.php b/app/code/Magento/MediaGalleryMetadata/Test/Integration/Model/ExtractMetadataTest.php index 982ccbb20fe2c..a5ff5de0aeaef 100644 --- a/app/code/Magento/MediaGalleryMetadata/Test/Integration/Model/ExtractMetadataTest.php +++ b/app/code/Magento/MediaGalleryMetadata/Test/Integration/Model/ExtractMetadataTest.php @@ -63,50 +63,59 @@ public function filesProvider(): array { return [ [ - 'macos-photos.jpeg', + 'exif-image.jpeg', 'Title of the magento image', - 'Description of the magento image', + 'exif fromat title', [ - 'magento', - 'mediagallerymetadata' - ] - ], - [ - 'macos-preview.png', - 'Title of the magento image', - 'Description of the magento image', - [ - 'magento', - 'mediagallerymetadata' - ] - ], - [ - 'iptc_only.jpeg', - 'Title of the magento image', - 'Description of the magento image', - [ - 'magento', - 'mediagallerymetadata' - ] - ], - [ - 'exiftool.gif', - 'Title of the magento image', - 'Description of the magento image', - [ - 'magento', - 'mediagallerymetadata' - ] - ], - [ - 'iptc_only.png', - 'Title of the magento image', - 'PNG format is awesome', - [ - 'png', + 'exif', 'awesome' ] ], + //[ + // 'macos-photos.jpeg', + // 'Title of the magento image', + // 'Description of the magento image', + // [ + // 'magento', + // 'mediagallerymetadata' + // ] + //], + // [ + // 'macos-preview.png', + // 'Title of the magento image', + // 'Description of the magento image', + // [ + // 'magento', + // 'mediagallerymetadata' + /// ] + // ], + // [ + // 'iptc_only.jpeg', + /// 'Title of the magento image', + // 'Description of the magento image', + // [ + // 'magento', + // 'mediagallerymetadata' + // ] + //], + //[ + // 'exiftool.gif', + // 'Title of the magento image', + // 'Description of the magento image', + // [ + // 'magento', + // 'mediagallerymetadata' + // ] + // ], + //[ + // 'iptc_only.png', + // 'Title of the magento image', + // 'PNG format is awesome', + // [ + // 'png', + // 'awesome' + // ] + ///], ]; } }