1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
<?php
declare(strict_types=1);
namespace WebThumbnailer\Application;
use WebThumbnailer\TestCase;
use WebThumbnailer\Utils\FileUtils;
/**
* Test the cache manager.
*/
class CacheManagerTest extends TestCase
{
/**
* @var string relative path.
*/
protected static $cache = 'tests/workdir/cache/';
/**
* Load test config before running tests.
*/
public function setUp(): void
{
$resource = 'tests/resources/';
ConfigManager::$configFiles = [$resource . 'settings-useful.json'];
ConfigManager::reload();
}
/**
* Remove cache folder after every tests.
*/
public function tearDown(): void
{
FileUtils::rmdir(ConfigManager::get('settings.path.cache'));
}
/**
* Test getCachePath().
*/
public function testGetCachePathValid(): void
{
$path = CacheManager::getCachePath(CacheManager::TYPE_THUMB);
$this->assertTrue(is_dir($path));
$this->assertStringContainsString(self::$cache . CacheManager::TYPE_THUMB . '/', $path);
$path = CacheManager::getCachePath(CacheManager::TYPE_FINDER);
$this->assertTrue(is_dir($path));
$this->assertStringContainsString(self::$cache . CacheManager::TYPE_FINDER . '/', $path);
}
/**
* Test getCachePath() with an invalid type.
*/
public function testGetCachePathInvalidType(): void
{
$this->expectException(\Exception::class);
$this->expectExceptionMessageRegExp('/Unknown cache type/');
CacheManager::getCachePath('nope');
}
/**
* Test getCachePath() without cache folder.
*/
public function testGetCachePathNoFolder(): void
{
$this->expectException(\Exception::class);
$this->expectExceptionMessageRegExp('/Cache folders are not writable/');
CacheManager::getCachePath(CacheManager::TYPE_THUMB, true);
}
/**
* Test getCacheFilePath
*/
public function testGetCacheFilePathValid(): void
{
$url = 'http://whatever.io';
$domain = 'whatever.io';
$type = CacheManager::TYPE_THUMB;
$width = 512;
$height = 0;
$cacheFile = CacheManager::getCacheFilePath($url, $domain, $type, $width, $height, false);
$whateverDir = self::$cache . 'thumb/' . md5($domain) . '/';
$this->assertTrue(is_dir($whateverDir));
$this->assertStringContainsString($whateverDir, $cacheFile);
// sha1 sum + dimensions
$this->assertStringContainsString('0a35602901944a0c6d853da2a5364665c2bda069' . '51200' . '.jpg', $cacheFile);
}
/**
* Test isCacheValid() with an existing file.
*/
public function testIsCacheValidExisting(): void
{
$domain = 'whatever.io';
$filename = '0a35602901944a0c6d853da2a5364665c2bda06951200.jpg';
mkdir(self::$cache . '/thumb/' . $domain, 0755, true);
$cacheFile = self::$cache . '/thumb/' . $domain . '/' . $filename;
touch($cacheFile);
$this->assertTrue(CacheManager::isCacheValid($cacheFile, $domain, CacheManager::TYPE_THUMB));
}
/**
* Test isCacheValid() with an outdated file.
*/
public function testIsCacheValidExpired(): void
{
$domain = 'whatever.io';
$filename = '0a35602901944a0c6d853da2a5364665c2bda0695120.jpg';
mkdir(self::$cache . '/thumb/' . $domain, 0755, true);
$cacheFile = self::$cache . '/thumb/' . $domain . '/' . $filename;
touch($cacheFile, time() - ConfigManager::get('settings.cache_duration') - 1);
$this->assertFalse(CacheManager::isCacheValid($cacheFile, $domain, CacheManager::TYPE_THUMB));
}
/**
* Test isCacheValid() without any file.
*/
public function testIsCacheValidNotExistent(): void
{
$domain = 'whatever.io';
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_THUMB));
$this->assertTrue(is_dir(self::$cache . '/thumb/' . md5($domain)));
}
/**
* Test isCacheValid() without any file and infinite cache setting.
*/
public function testIsCacheValidInfiniteNotExistent(): void
{
$domain = 'whatever.io';
ConfigManager::addFile('tests/resources/settings-infinite-cache.json');
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_THUMB));
$this->assertTrue(is_dir(self::$cache . '/thumb/' . md5($domain)));
}
/**
* Test isCacheValid() with an existing file and infinite cache setting.
*/
public function testIsCacheValidInfiniteExisting(): void
{
$domain = 'whatever.io';
$filename = '0a35602901944a0c6d853da2a5364665c2bda06951200.jpg';
mkdir(self::$cache . '/thumb/' . $domain, 0755, true);
$cacheFile = self::$cache . '/thumb/' . $domain . '/' . $filename;
touch($cacheFile);
ConfigManager::addFile('tests/resources/settings-infinite-cache.json');
$this->assertTrue(CacheManager::isCacheValid($cacheFile, $domain, CacheManager::TYPE_THUMB));
}
/**
* Test isCacheValid() with an existing file and infinite cache setting.
*/
public function testIsCacheValidInfiniteExistingOneYear(): void
{
$domain = 'whatever.io';
$filename = '0a35602901944a0c6d853da2a5364665c2bda06951200.jpg';
mkdir(self::$cache . '/thumb/' . $domain, 0755, true);
$cacheFile = self::$cache . '/thumb/' . $domain . '/' . $filename;
touch($cacheFile, time() - 3600 * 24 * 31 * 12);
ConfigManager::addFile('tests/resources/settings-infinite-cache.json');
$this->assertTrue(CacheManager::isCacheValid($cacheFile, $domain, CacheManager::TYPE_THUMB));
}
/**
* Check that htaccess file is properly created (finder -> denied).
*/
public function testHtaccessCreationDenied(): void
{
$domain = 'whatever.io';
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_FINDER));
$this->assertFileEquals(__DIR__ . '/../resources/htaccess_denied', self::$cache . '/finder/.htaccess');
}
/**
* Check that htaccess file is properly created (thumb -> granted).
*/
public function testHtaccessCreationGranted(): void
{
$domain = 'whatever.io';
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_THUMB));
$this->assertFileEquals(__DIR__ . '/../resources/htaccess_granted', self::$cache . '/thumb/.htaccess');
}
/**
* Check that htaccess file is properly created with Apache 2.2 forced (finder -> granted).
*/
public function testHtaccess22CreationDenied(): void
{
$domain = 'whatever.io';
ConfigManager::addFile(__DIR__ . '/../resources/settings-apache22.json');
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_FINDER));
$this->assertFileEquals(__DIR__ . '/../resources/htaccess22_denied', self::$cache . '/finder/.htaccess');
}
/**
* Check that htaccess file is properly created with Apache 2.2 forced (finder -> denied).
*/
public function testHtaccess22CreationGranted(): void
{
$domain = 'whatever.io';
ConfigManager::addFile(__DIR__ . '/../resources/settings-apache22.json');
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_THUMB));
$this->assertFileEquals(__DIR__ . '/../resources/htaccess22_granted', self::$cache . '/thumb/.htaccess');
}
/**
* Check that htaccess file is properly created with Apache 2.4 forced (finder -> granted).
*/
public function testHtaccess24CreationDenied(): void
{
$domain = 'whatever.io';
ConfigManager::addFile(__DIR__ . '/../resources/settings-apache24.json');
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_FINDER));
$this->assertFileEquals(__DIR__ . '/../resources/htaccess24_denied', self::$cache . '/finder/.htaccess');
}
/**
* Check that htaccess file is properly created with Apache 2.4 forced (finder -> denied).
*/
public function testHtaccess24CreationGranted(): void
{
$domain = 'whatever.io';
ConfigManager::addFile(__DIR__ . '/../resources/settings-apache24.json');
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_THUMB));
$this->assertFileEquals(__DIR__ . '/../resources/htaccess24_granted', self::$cache . '/thumb/.htaccess');
}
/**
* Check that htaccess file is properly created with Apache invalid version forced (finder -> granted).
*/
public function testHtaccessInvalidCreationDenied(): void
{
$domain = 'whatever.io';
ConfigManager::addFile(__DIR__ . '/../resources/settings-apache-ko.json');
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_FINDER));
$this->assertFileEquals(__DIR__ . '/../resources/htaccess_denied', self::$cache . '/finder/.htaccess');
}
/**
* Check that htaccess file is properly created with Apache invalid version forced (finder -> denied).
*/
public function testHtaccessInvalidCreationGranted(): void
{
$domain = 'whatever.io';
ConfigManager::addFile(__DIR__ . '/../resources/settings-apache-ko.json');
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_THUMB));
$this->assertFileEquals(__DIR__ . '/../resources/htaccess_granted', self::$cache . '/thumb/.htaccess');
}
/**
* Check that htaccess file is not overridden if it already exists
*/
public function testHtaccessDontOverride(): void
{
$domain = 'whatever.io';
$htaccessFile = self::$cache . '/thumb/.htaccess';
mkdir(self::$cache . '/thumb/', 0755, true);
file_put_contents($htaccessFile, $content = 'kek');
$this->assertFalse(CacheManager::isCacheValid('nope', $domain, CacheManager::TYPE_THUMB));
$this->assertEquals($content, file_get_contents($htaccessFile));
}
}
|