Skip to content

Commit

Permalink
Merge pull request #396 from nlemoine/3.x-use-xxh3
Browse files Browse the repository at this point in the history
3.x-use-xxh3
  • Loading branch information
ADmad authored Jun 25, 2024
2 parents 975d897 + c061b28 commit 9afc803
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ public function getCachePath(string $path, array $params = []): string
unset($params['s'], $params['p']);
ksort($params);

$cachedPath = md5($sourcePath.'?'.http_build_query($params));
$cachedPath = hash('xxh3', $sourcePath.'?'.http_build_query($params));

if ($this->groupCacheInFolders) {
$cachedPath = $sourcePath.'/'.$cachedPath;
Expand Down
38 changes: 19 additions & 19 deletions tests/ServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public function testGetCacheWithFileExtensions()
public function testGetCachePath()
{
$this->assertEquals(
'image.jpg/e863e008b6f09807c3b0aa3805bc9c63',
'image.jpg/382a458ecb704818',
$this->server->getCachePath('image.jpg', ['w' => '100'])
);
}
Expand All @@ -244,53 +244,53 @@ public function testGetCachePathWithNoFolderGrouping()
$this->server->setGroupCacheInFolders(false);

$this->assertEquals(
'e863e008b6f09807c3b0aa3805bc9c63',
'382a458ecb704818',
$this->server->getCachePath('image.jpg', ['w' => '100'])
);
}

public function testGetCachePathWithPrefix()
{
$this->server->setCachePathPrefix('img/');
$this->assertEquals('img/image.jpg/75094881e9fd2b93063d6a5cb083091c', $this->server->getCachePath('image.jpg', []));
$this->assertEquals('img/image.jpg/a2c14b0b5cf0e5a5', $this->server->getCachePath('image.jpg', []));
}

public function testGetCachePathWithSourcePrefix()
{
$this->server->setSourcePathPrefix('img/');
$this->assertEquals('image.jpg/75094881e9fd2b93063d6a5cb083091c', $this->server->getCachePath('image.jpg', []));
$this->assertEquals('image.jpg/a2c14b0b5cf0e5a5', $this->server->getCachePath('image.jpg', []));
}

public function testGetCachePathWithExtension()
{
$this->server->setCacheWithFileExtensions(true);
$this->assertEquals('image.jpg/75094881e9fd2b93063d6a5cb083091c.jpg', $this->server->getCachePath('image.jpg', []));
$this->assertEquals('image.jpg/a2c14b0b5cf0e5a5.jpg', $this->server->getCachePath('image.jpg', []));
}

public function testGetCachePathWithExtensionAndFmParam()
{
$this->server->setCacheWithFileExtensions(true);
$this->assertEquals('image.jpg/eb6091e07fb06219634a3c82afb88239.gif', $this->server->getCachePath('image.jpg', ['fm' => 'gif']));
$this->assertEquals('image.jpg/1521d6d426c257b2.gif', $this->server->getCachePath('image.jpg', ['fm' => 'gif']));
}

public function testGetCachePathWithExtensionAndPjpgFmParam()
{
$this->server->setCacheWithFileExtensions(true);
$this->assertEquals('image.jpg/ce5cb75f4a37dec0a0a49854e94123eb.jpg', $this->server->getCachePath('image.jpg', ['fm' => 'pjpg']));
$this->assertEquals('image.jpg/58b79a7735b61b0d.jpg', $this->server->getCachePath('image.jpg', ['fm' => 'pjpg']));
}

public function testGetCachePathWithExtensionAndFmFromDefaults()
{
$this->server->setCacheWithFileExtensions(true);
$this->server->setDefaults(['fm' => 'gif']);
$this->assertEquals('image.jpg/eb6091e07fb06219634a3c82afb88239.gif', $this->server->getCachePath('image.jpg', []));
$this->assertEquals('image.jpg/1521d6d426c257b2.gif', $this->server->getCachePath('image.jpg', []));
}

public function testGetCachePathWithExtensionAndPjpgFmFromDefaults()
{
$this->server->setCacheWithFileExtensions(true);
$this->server->setDefaults(['fm' => 'pjpg']);
$this->assertEquals('image.jpg/ce5cb75f4a37dec0a0a49854e94123eb.jpg', $this->server->getCachePath('image.jpg', []));
$this->assertEquals('image.jpg/58b79a7735b61b0d.jpg', $this->server->getCachePath('image.jpg', []));
}

public function testGetCachePathWithExtensionAndFmFromPreset()
Expand All @@ -301,7 +301,7 @@ public function testGetCachePathWithExtensionAndFmFromPreset()
'fm' => 'gif',
]]);

$this->assertEquals('image.jpg/eb6091e07fb06219634a3c82afb88239.gif', $this->server->getCachePath('image.jpg', ['p' => 'gif']));
$this->assertEquals('image.jpg/1521d6d426c257b2.gif', $this->server->getCachePath('image.jpg', ['p' => 'gif']));
}

public function testGetCachePathWithExtensionAndPjpgFmFromPreset()
Expand All @@ -312,13 +312,13 @@ public function testGetCachePathWithExtensionAndPjpgFmFromPreset()
'fm' => 'pjpg',
]]);

$this->assertEquals('image.jpg/ce5cb75f4a37dec0a0a49854e94123eb.jpg', $this->server->getCachePath('image.jpg', ['p' => 'pjpg']));
$this->assertEquals('image.jpg/58b79a7735b61b0d.jpg', $this->server->getCachePath('image.jpg', ['p' => 'pjpg']));
}

public function testCacheFileExists()
{
$this->server->setCache(\Mockery::mock('League\Flysystem\FilesystemOperator', function ($mock) {
$mock->shouldReceive('fileExists')->with('image.jpg/75094881e9fd2b93063d6a5cb083091c')->andReturn(true)->once();
$mock->shouldReceive('fileExists')->with('image.jpg/a2c14b0b5cf0e5a5')->andReturn(true)->once();
}));

$this->assertTrue($this->server->cacheFileExists('image.jpg', []));
Expand Down Expand Up @@ -475,7 +475,7 @@ public function testGetImageAsBase64()
public function testGetImageAsBase64WithUnreadableSource()
{
$this->expectException(FilesystemException::class);
$this->expectExceptionMessage('Could not read the image `image.jpg/75094881e9fd2b93063d6a5cb083091c`.');
$this->expectExceptionMessage('Could not read the image `image.jpg/a2c14b0b5cf0e5a5`.');

$this->server->setCache(\Mockery::mock('League\Flysystem\FilesystemOperator', function ($mock) {
$mock->shouldReceive('fileExists')->andReturn(true);
Expand Down Expand Up @@ -518,7 +518,7 @@ public function testMakeImageFromSource()

$this->server->setCache(\Mockery::mock('League\Flysystem\FilesystemOperator', function ($mock) {
$mock->shouldReceive('fileExists')->andReturn(false)->once();
$mock->shouldReceive('write')->withArgs(['image.jpg/75094881e9fd2b93063d6a5cb083091c', 'content'])->once();
$mock->shouldReceive('write')->withArgs(['image.jpg/a2c14b0b5cf0e5a5', 'content'])->once();
}));

$this->server->setApi(\Mockery::mock('League\Glide\Api\ApiInterface', function ($mock) {
Expand All @@ -527,7 +527,7 @@ public function testMakeImageFromSource()
}));

$this->assertEquals(
'image.jpg/75094881e9fd2b93063d6a5cb083091c',
'image.jpg/a2c14b0b5cf0e5a5',
$this->server->makeImage('image.jpg', [])
);
}
Expand All @@ -541,7 +541,7 @@ public function testMakeImageFromSourceWithCustomTmpDir()

$this->server->setCache(\Mockery::mock('League\Flysystem\FilesystemOperator', function ($mock) {
$mock->shouldReceive('fileExists')->andReturn(false)->once();
$mock->shouldReceive('write')->with('image.jpg/75094881e9fd2b93063d6a5cb083091c', 'content')->once();
$mock->shouldReceive('write')->with('image.jpg/a2c14b0b5cf0e5a5', 'content')->once();
}));

$this->server->setTempDir(__DIR__);
Expand All @@ -551,7 +551,7 @@ public function testMakeImageFromSourceWithCustomTmpDir()
}));

$this->assertEquals(
'image.jpg/75094881e9fd2b93063d6a5cb083091c',
'image.jpg/a2c14b0b5cf0e5a5',
$this->server->makeImage('image.jpg', [])
);
}
Expand All @@ -563,7 +563,7 @@ public function testMakeImageFromCache()
}));

$this->assertEquals(
'image.jpg/75094881e9fd2b93063d6a5cb083091c',
'image.jpg/a2c14b0b5cf0e5a5',
$this->server->makeImage('image.jpg', [])
);
}
Expand Down Expand Up @@ -604,7 +604,7 @@ public function testMakeImageWithUnreadableSource()
public function testMakeImageWithUnwritableCache()
{
$this->expectException(FilesystemException::class);
$this->expectExceptionMessage('Could not write the image `image.jpg/75094881e9fd2b93063d6a5cb083091c`.');
$this->expectExceptionMessage('Could not write the image `image.jpg/a2c14b0b5cf0e5a5`.');

$this->server->setSource(\Mockery::mock('League\Flysystem\FilesystemOperator', function ($mock) {
$mock->shouldReceive('fileExists')->andReturn(true)->once();
Expand Down

0 comments on commit 9afc803

Please sign in to comment.