class CacheFactoryTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Cache/CacheFactoryTest.php \Drupal\Tests\Core\Cache\CacheFactoryTest
@coversDefaultClass \Drupal\Core\Cache\CacheFactory @group Cache
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Cache\CacheFactoryTest
Expanded class hierarchy of CacheFactoryTest
File
- core/
tests/ Drupal/ Tests/ Core/ Cache/ CacheFactoryTest.php, line 19 - Contains \Drupal\Tests\Core\Cache\CacheFactoryTest.
Namespace
Drupal\Tests\Core\CacheView source
class CacheFactoryTest extends UnitTestCase {
/**
* Test that the cache factory falls back to the built-in default service.
*
* @covers ::__construct
* @covers ::get
*/
public function testCacheFactoryWithDefaultSettings() {
$settings = new Settings(array());
$cache_factory = new CacheFactory($settings);
$container = new ContainerBuilder();
$cache_factory
->setContainer($container);
$builtin_default_backend_factory = $this
->getMock('\\Drupal\\Core\\Cache\\CacheFactoryInterface');
$container
->set('cache.backend.database', $builtin_default_backend_factory);
$render_bin = $this
->getMock('\\Drupal\\Core\\Cache\\CacheBackendInterface');
$builtin_default_backend_factory
->expects($this
->once())
->method('get')
->with('render')
->will($this
->returnValue($render_bin));
$actual_bin = $cache_factory
->get('render');
$this
->assertSame($render_bin, $actual_bin);
}
/**
* Test that the cache factory falls back to customized default service.
*
* @covers ::__construct
* @covers ::get
*/
public function testCacheFactoryWithCustomizedDefaultBackend() {
$settings = new Settings(array(
'cache' => array(
'default' => 'cache.backend.custom',
),
));
$cache_factory = new CacheFactory($settings);
$container = new ContainerBuilder();
$cache_factory
->setContainer($container);
$custom_default_backend_factory = $this
->getMock('\\Drupal\\Core\\Cache\\CacheFactoryInterface');
$container
->set('cache.backend.custom', $custom_default_backend_factory);
$render_bin = $this
->getMock('\\Drupal\\Core\\Cache\\CacheBackendInterface');
$custom_default_backend_factory
->expects($this
->once())
->method('get')
->with('render')
->will($this
->returnValue($render_bin));
$actual_bin = $cache_factory
->get('render');
$this
->assertSame($render_bin, $actual_bin);
}
/**
* Test that the cache factory picks the correct per-bin service.
*
* @covers ::__construct
* @covers ::get
*/
public function testCacheFactoryWithSpecifiedPerBinBackend() {
$settings = new Settings(array(
'cache' => array(
'bins' => array(
'render' => 'cache.backend.custom',
),
),
));
$cache_factory = new CacheFactory($settings);
$container = new ContainerBuilder();
$cache_factory
->setContainer($container);
$custom_render_backend_factory = $this
->getMock('\\Drupal\\Core\\Cache\\CacheFactoryInterface');
$container
->set('cache.backend.custom', $custom_render_backend_factory);
$render_bin = $this
->getMock('\\Drupal\\Core\\Cache\\CacheBackendInterface');
$custom_render_backend_factory
->expects($this
->once())
->method('get')
->with('render')
->will($this
->returnValue($render_bin));
$actual_bin = $cache_factory
->get('render');
$this
->assertSame($render_bin, $actual_bin);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheFactoryTest:: |
public | function | Test that the cache factory falls back to customized default service. | |
CacheFactoryTest:: |
public | function | Test that the cache factory falls back to the built-in default service. | |
CacheFactoryTest:: |
public | function | Test that the cache factory picks the correct per-bin service. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 259 |