2021-08-19 01:32:20 +09:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 17:26:18 +09:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2021-08-19 01:32:20 +09:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
2022-03-08 09:21:12 +09:00
|
|
|
namespace Component\Attachment\tests\Entity;
|
2021-08-19 01:32:20 +09:00
|
|
|
|
|
|
|
use App\Core\DB\DB;
|
|
|
|
use App\Core\Event;
|
|
|
|
use App\Util\Exception\NotStoredLocallyException;
|
|
|
|
use App\Util\GNUsocialTestCase;
|
2022-03-08 09:21:12 +09:00
|
|
|
use Component\Attachment\Entity\Attachment;
|
2021-12-26 18:48:16 +09:00
|
|
|
use Component\Attachment\Entity\AttachmentThumbnail;
|
2021-08-19 01:32:20 +09:00
|
|
|
use Functional as F;
|
|
|
|
use Jchook\AssertThrows\AssertThrows;
|
2021-10-10 17:26:18 +09:00
|
|
|
use SplFileInfo;
|
2021-08-19 01:32:20 +09:00
|
|
|
|
|
|
|
class AttachmentThumbnailTest extends GNUsocialTestCase
|
|
|
|
{
|
|
|
|
use AssertThrows;
|
|
|
|
|
|
|
|
public function testAttachmentThumbnailLifecycle()
|
|
|
|
{
|
|
|
|
parent::bootKernel();
|
|
|
|
|
2021-08-19 09:45:11 +09:00
|
|
|
// Data fixture already loaded this file, but we need to get its hash to find it
|
2021-10-10 17:26:18 +09:00
|
|
|
$file = new SplFileInfo(INSTALLDIR . '/tests/sample-uploads/attachment-lifecycle-target.jpg');
|
2021-09-07 03:49:03 +09:00
|
|
|
$hash = null;
|
2021-08-19 01:32:20 +09:00
|
|
|
Event::handle('HashFile', [$file->getPathname(), &$hash]);
|
2022-03-08 09:21:12 +09:00
|
|
|
$attachment = DB::findOneBy(Attachment::class, ['filehash' => $hash]);
|
2021-08-19 01:32:20 +09:00
|
|
|
|
2022-03-08 09:21:12 +09:00
|
|
|
$expected = [
|
2021-09-28 03:47:25 +09:00
|
|
|
AttachmentThumbnail::getOrCreate($attachment, 'small', crop: false),
|
|
|
|
AttachmentThumbnail::getOrCreate($attachment, 'medium', crop: false),
|
|
|
|
$thumb = AttachmentThumbnail::getOrCreate($attachment, 'big', crop: false),
|
2021-08-19 01:32:20 +09:00
|
|
|
];
|
|
|
|
|
|
|
|
static::assertSame($attachment, $thumb->getAttachment());
|
|
|
|
$thumb->setAttachment(null);
|
|
|
|
static::assertSame($attachment, $thumb->getAttachment());
|
|
|
|
|
2022-03-08 09:21:12 +09:00
|
|
|
$actual = $attachment->getThumbnails();
|
|
|
|
static::assertSame(\count($expected), \count($actual));
|
|
|
|
foreach ($expected as $e) {
|
|
|
|
$a = array_shift($actual);
|
|
|
|
static::assertObjectEquals($e, $a);
|
|
|
|
}
|
|
|
|
|
|
|
|
array_pop($expected);
|
|
|
|
$thumb->delete();
|
|
|
|
$actual = $attachment->getThumbnails();
|
|
|
|
static::assertSame(\count($expected), \count($actual));
|
|
|
|
foreach ($expected as $e) {
|
|
|
|
$a = array_shift($actual);
|
|
|
|
static::assertObjectEquals($e, $a);
|
|
|
|
}
|
2021-08-19 01:32:20 +09:00
|
|
|
|
|
|
|
$attachment->deleteStorage();
|
|
|
|
|
2022-03-08 09:21:12 +09:00
|
|
|
foreach (array_reverse($attachment->getThumbnails()) as $t) {
|
2021-11-16 04:27:39 +09:00
|
|
|
// Since we still have thumbnails, those will be used as the new thumbnail, even though we don't have the original
|
|
|
|
$new = AttachmentThumbnail::getOrCreate($attachment, 'big', crop: false);
|
|
|
|
static::assertSame([$t->getFilename(), $t->getSize()], [$new->getFilename(), $new->getSize()]);
|
2022-03-08 09:21:12 +09:00
|
|
|
$t->delete();
|
2021-11-16 04:27:39 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// Since the backed storage was deleted and we don't have any more previous thumnbs, we can't generate another thumbnail
|
2021-09-28 03:47:25 +09:00
|
|
|
static::assertThrows(NotStoredLocallyException::class, fn () => AttachmentThumbnail::getOrCreate($attachment, 'big', crop: false));
|
2021-08-19 01:32:20 +09:00
|
|
|
|
|
|
|
$attachment->kill();
|
2021-11-16 04:27:39 +09:00
|
|
|
// static::assertThrows(NotStoredLocallyException::class, fn () => AttachmentThumbnail::getOrCreate($attachment, 'big', crop: false));
|
2021-08-19 01:32:20 +09:00
|
|
|
}
|
|
|
|
|
2021-08-20 03:14:37 +09:00
|
|
|
public function testInvalidThumbnail()
|
|
|
|
{
|
|
|
|
parent::bootKernel();
|
2021-10-10 17:26:18 +09:00
|
|
|
$file = new SplFileInfo(INSTALLDIR . '/tests/sample-uploads/spreadsheet.ods');
|
2021-09-07 03:49:03 +09:00
|
|
|
$hash = null;
|
2021-08-20 03:14:37 +09:00
|
|
|
Event::handle('HashFile', [$file->getPathname(), &$hash]);
|
|
|
|
$attachment = DB::findOneBy('attachment', ['filehash' => $hash]);
|
2021-11-16 04:27:39 +09:00
|
|
|
static::assertNull(AttachmentThumbnail::getOrCreate($attachment, 'small', crop: false));
|
|
|
|
}
|
2021-08-20 03:14:37 +09:00
|
|
|
|
2021-11-16 04:27:39 +09:00
|
|
|
public function testPredictScalingValues()
|
|
|
|
{
|
|
|
|
parent::bootKernel();
|
|
|
|
// TODO test with cropping
|
|
|
|
|
|
|
|
$inputs = [
|
|
|
|
[100, 100],
|
|
|
|
[400, 200],
|
|
|
|
[800, 400],
|
|
|
|
[1600, 800],
|
|
|
|
[1600, 1600],
|
|
|
|
// 16:9 video
|
|
|
|
[854, 480],
|
|
|
|
[1280, 720],
|
|
|
|
[1920, 1080],
|
|
|
|
[2560, 1440],
|
|
|
|
[3840, 2160],
|
|
|
|
];
|
|
|
|
|
|
|
|
$outputs = [
|
|
|
|
'small' => [
|
|
|
|
[100, 100],
|
|
|
|
[400, 200],
|
|
|
|
[32, 14],
|
|
|
|
[32, 14],
|
|
|
|
[32, 32],
|
|
|
|
// 16:9 video
|
|
|
|
[32, 21],
|
|
|
|
[32, 21],
|
|
|
|
[32, 21],
|
|
|
|
[32, 21],
|
|
|
|
[32, 21],
|
|
|
|
],
|
|
|
|
'medium' => [
|
|
|
|
[100, 100],
|
|
|
|
[400, 200],
|
|
|
|
[256, 116],
|
|
|
|
[256, 116],
|
|
|
|
[256, 256],
|
|
|
|
// 16:9 video
|
|
|
|
[256, 170],
|
|
|
|
[256, 170],
|
|
|
|
[256, 170],
|
|
|
|
[256, 170],
|
|
|
|
[256, 170],
|
|
|
|
],
|
|
|
|
'big' => [
|
|
|
|
[100, 100],
|
|
|
|
[400, 200],
|
|
|
|
[496, 225],
|
|
|
|
[496, 225],
|
|
|
|
[496, 496],
|
|
|
|
// 16:9 video
|
|
|
|
[496, 330],
|
|
|
|
[496, 330],
|
|
|
|
[496, 330],
|
|
|
|
[496, 330],
|
|
|
|
[496, 330],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
foreach (['small', 'medium', 'big'] as $size) {
|
|
|
|
foreach (F\zip($inputs, $outputs[$size]) as [$existing, $results]) {
|
|
|
|
static::assertSame($results, AttachmentThumbnail::predictScalingValues(existing_width: $existing[0], existing_height: $existing[1], requested_size: $size, crop: false));
|
|
|
|
}
|
|
|
|
}
|
2021-08-20 03:14:37 +09:00
|
|
|
}
|
|
|
|
|
2021-11-16 04:27:39 +09:00
|
|
|
public function testGetUrl()
|
|
|
|
{
|
|
|
|
parent::bootKernel();
|
2022-03-08 09:21:12 +09:00
|
|
|
$attachment = DB::findBy(Attachment::class, ['mimetype' => 'image/png'], limit: 1)[0];
|
2021-11-16 04:27:39 +09:00
|
|
|
$thumb = AttachmentThumbnail::getOrCreate($attachment, 'big', crop: false);
|
|
|
|
$id = $attachment->getId();
|
2022-03-08 09:21:12 +09:00
|
|
|
$expected = "/object/note/42/attachment/{$id}/thumbnail/big";
|
|
|
|
static::assertSame($expected, $thumb->getUrl(note: 42));
|
2021-11-16 04:27:39 +09:00
|
|
|
}
|
2021-08-19 01:32:20 +09:00
|
|
|
}
|