2016-05-01 18:54:56 +03:00
|
|
|
<?php
|
2016-07-19 18:38:41 +03:00
|
|
|
namespace ShlinkioTest\Shlink\Common\Factory;
|
2016-05-01 18:54:56 +03:00
|
|
|
|
|
|
|
use Doctrine\Common\Cache\ApcuCache;
|
|
|
|
use Doctrine\Common\Cache\ArrayCache;
|
2016-08-01 21:16:13 +03:00
|
|
|
use Doctrine\Common\Cache\FilesystemCache;
|
2016-08-09 18:58:47 +03:00
|
|
|
use Doctrine\Common\Cache\MemcachedCache;
|
|
|
|
use Doctrine\Common\Cache\RedisCache;
|
2016-05-01 18:54:56 +03:00
|
|
|
use PHPUnit_Framework_TestCase as TestCase;
|
2016-07-19 18:38:41 +03:00
|
|
|
use Shlinkio\Shlink\Common\Factory\CacheFactory;
|
2016-08-16 00:40:49 +03:00
|
|
|
use Shlinkio\Shlink\Core\Options\AppOptions;
|
2016-05-01 18:54:56 +03:00
|
|
|
use Zend\ServiceManager\ServiceManager;
|
|
|
|
|
|
|
|
class CacheFactoryTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var CacheFactory
|
|
|
|
*/
|
|
|
|
protected $factory;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->factory = new CacheFactory();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function tearDownAfterClass()
|
|
|
|
{
|
|
|
|
putenv('APP_ENV');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function productionReturnsApcAdapter()
|
|
|
|
{
|
|
|
|
putenv('APP_ENV=pro');
|
2016-08-01 21:16:13 +03:00
|
|
|
$instance = $this->factory->__invoke($this->createSM(), '');
|
2016-05-01 18:54:56 +03:00
|
|
|
$this->assertInstanceOf(ApcuCache::class, $instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function developmentReturnsArrayAdapter()
|
|
|
|
{
|
|
|
|
putenv('APP_ENV=dev');
|
2016-08-01 21:16:13 +03:00
|
|
|
$instance = $this->factory->__invoke($this->createSM(), '');
|
2016-05-01 18:54:56 +03:00
|
|
|
$this->assertInstanceOf(ArrayCache::class, $instance);
|
|
|
|
}
|
2016-08-01 21:16:13 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function adapterDefinedInConfigIgnoresEnvironment()
|
|
|
|
{
|
|
|
|
putenv('APP_ENV=pro');
|
|
|
|
$instance = $this->factory->__invoke($this->createSM(ArrayCache::class), '');
|
|
|
|
$this->assertInstanceOf(ArrayCache::class, $instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function invalidAdapterDefinedInConfigFallbacksToEnvironment()
|
|
|
|
{
|
|
|
|
putenv('APP_ENV=pro');
|
2016-08-09 18:58:47 +03:00
|
|
|
$instance = $this->factory->__invoke($this->createSM(RedisCache::class), '');
|
2016-08-01 21:16:13 +03:00
|
|
|
$this->assertInstanceOf(ApcuCache::class, $instance);
|
|
|
|
}
|
|
|
|
|
2016-08-09 18:58:47 +03:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function filesystemCacheAdaptersReadDirOption()
|
|
|
|
{
|
|
|
|
$dir = sys_get_temp_dir();
|
|
|
|
/** @var FilesystemCache $instance */
|
|
|
|
$instance = $this->factory->__invoke($this->createSM(FilesystemCache::class, ['dir' => $dir]), '');
|
|
|
|
$this->assertInstanceOf(FilesystemCache::class, $instance);
|
|
|
|
$this->assertEquals($dir, $instance->getDirectory());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function memcachedCacheAdaptersReadServersOption()
|
|
|
|
{
|
|
|
|
$servers = [
|
|
|
|
[
|
|
|
|
'host' => '1.2.3.4',
|
|
|
|
'port' => 123
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'host' => '4.3.2.1',
|
|
|
|
'port' => 321
|
|
|
|
],
|
|
|
|
];
|
|
|
|
/** @var MemcachedCache $instance */
|
|
|
|
$instance = $this->factory->__invoke($this->createSM(MemcachedCache::class, ['servers' => $servers]), '');
|
|
|
|
$this->assertInstanceOf(MemcachedCache::class, $instance);
|
2016-08-09 19:56:01 +03:00
|
|
|
$this->assertEquals(count($servers), count($instance->getMemcached()->getServerList()));
|
2016-08-09 18:58:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function createSM($cacheAdapter = null, array $options = [])
|
2016-08-01 21:16:13 +03:00
|
|
|
{
|
|
|
|
return new ServiceManager(['services' => [
|
|
|
|
'config' => isset($cacheAdapter) ? [
|
2016-08-09 18:58:47 +03:00
|
|
|
'cache' => [
|
|
|
|
'adapter' => $cacheAdapter,
|
|
|
|
'options' => $options,
|
|
|
|
],
|
2016-08-01 21:16:13 +03:00
|
|
|
] : [],
|
2016-08-16 00:40:49 +03:00
|
|
|
AppOptions::class => new AppOptions(),
|
2016-08-01 21:16:13 +03:00
|
|
|
]]);
|
|
|
|
}
|
2016-05-01 18:54:56 +03:00
|
|
|
}
|