You are here

FileCacheFactoryTest.php in Zircon Profile 8

File

core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Tests\Component\FileCache\FileCacheFactoryTest.
 */
namespace Drupal\Tests\Component\FileCache;

use Drupal\Component\FileCache\FileCacheFactory;
use Drupal\Tests\UnitTestCase;

/**
 * @coversDefaultClass \Drupal\Component\FileCache\FileCacheFactory
 * @group FileCache
 */
class FileCacheFactoryTest extends UnitTestCase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $settings = [
      'collection' => 'test-23',
      'cache_backend_class' => '\\Drupal\\Tests\\Component\\FileCache\\StaticFileCacheBackend',
      'cache_backend_configuration' => [
        'bin' => 'dog',
      ],
    ];
    $configuration = FileCacheFactory::getConfiguration();
    if (!$configuration) {
      $configuration = [];
    }
    $configuration += [
      'test_foo_settings' => $settings,
    ];
    FileCacheFactory::setConfiguration($configuration);
    FileCacheFactory::setPrefix('prefix');
  }

  /**
   * @covers ::get
   */
  public function testGet() {
    $file_cache = FileCacheFactory::get('test_foo_settings', []);

    // Ensure the right backend and configuration is used.
    $filename = __DIR__ . '/Fixtures/llama-23.txt';
    $realpath = realpath($filename);
    $cid = 'prefix:test-23:' . $realpath;
    $file_cache
      ->set($filename, 23);
    $static_cache = new StaticFileCacheBackend([
      'bin' => 'dog',
    ]);
    $result = $static_cache
      ->fetch([
      $cid,
    ]);
    $this
      ->assertNotEmpty($result);

    // Cleanup static caches.
    $file_cache
      ->delete($filename);
  }

  /**
   * @covers ::get
   *
   * @expectedException \InvalidArgumentException
   * @expectedExceptionMessage Required prefix configuration is missing
   */
  public function testGetNoPrefix() {
    FileCacheFactory::setPrefix(NULL);
    FileCacheFactory::get('test_foo_settings', []);
  }

  /**
   * @covers ::getConfiguration
   * @covers ::setConfiguration
   */
  public function testGetSetConfiguration() {
    $configuration = FileCacheFactory::getConfiguration();
    $configuration['test_foo_bar'] = [
      'bar' => 'llama',
    ];
    FileCacheFactory::setConfiguration($configuration);
    $configuration = FileCacheFactory::getConfiguration();
    $this
      ->assertEquals([
      'bar' => 'llama',
    ], $configuration['test_foo_bar']);
  }

  /**
   * @covers ::getPrefix
   * @covers ::setPrefix
   */
  public function testGetSetPrefix() {
    $prefix = $this
      ->randomMachineName();
    FileCacheFactory::setPrefix($prefix);
    $this
      ->assertEquals($prefix, FileCacheFactory::getPrefix());
  }

}

Classes

Namesort descending Description
FileCacheFactoryTest @coversDefaultClass \Drupal\Component\FileCache\FileCacheFactory @group FileCache