You are here

ReadonlyStorageTest.php in Config Filter 8

Same filename and directory in other branches
  1. 8.2 src/Tests/ReadonlyStorageTest.php

File

src/Tests/ReadonlyStorageTest.php
View source
<?php

namespace Drupal\config_filter\Tests;

use Drupal\config_filter\Config\ReadOnlyStorage;
use Drupal\config_filter\Exception\UnsupportedMethod;
use Drupal\Core\Config\StorageInterface;
use Drupal\Tests\UnitTestCase;
use Prophecy\Argument;
use Prophecy\Prophecy\MethodProphecy;

/**
 * Tests ReadonlyStorage operations.
 *
 * @group config_filter
 */
class ReadonlyStorageTest extends UnitTestCase {

  /**
   * Wrap a given storage.
   *
   * This is useful when testing a subclass of ReadonlyStorage.
   *
   * @param \Drupal\Core\Config\StorageInterface $source
   *   The storage to decorate.
   *
   * @return \Drupal\Core\Config\StorageInterface
   *   The storage wrapping the source.
   */
  protected function getStorage(StorageInterface $source) {
    return new ReadOnlyStorage($source);
  }

  /**
   * Test methods that should be transparent.
   *
   * @dataProvider readMethodsProvider
   */
  public function testReadOperations($method, $arguments, $returnValue) {
    $source = $this
      ->prophesize(StorageInterface::class);
    $methodProhecy = new MethodProphecy($source, $method, $arguments);
    $methodProhecy
      ->shouldBeCalledTimes(1);
    $methodProhecy
      ->willReturn($returnValue);
    $source
      ->addMethodProphecy($methodProhecy);
    $storage = $this
      ->getStorage($source
      ->reveal());
    $actual = call_user_func_array([
      $storage,
      $method,
    ], $arguments);
    $this
      ->assertEquals($actual, $returnValue);
  }

  /**
   * Provide the methods that should continue to work.
   *
   * @return array
   *   The data.
   */
  public function readMethodsProvider() {
    return [
      [
        'exists',
        [
          $this
            ->randomMachineName(),
        ],
        $this
          ->randomMachineName(),
      ],
      [
        'read',
        [
          $this
            ->randomMachineName(),
        ],
        $this
          ->randomArray(),
      ],
      [
        'readMultiple',
        [
          $this
            ->randomArray(),
        ],
        $this
          ->randomArray(),
      ],
      [
        'encode',
        [
          $this
            ->randomArray(),
        ],
        $this
          ->randomMachineName(),
      ],
      [
        'decode',
        [
          $this
            ->randomMachineName(),
        ],
        $this
          ->randomArray(),
      ],
      [
        'listAll',
        [
          $this
            ->randomMachineName(),
        ],
        $this
          ->randomArray(),
      ],
      [
        'getAllCollectionNames',
        [],
        $this
          ->randomArray(),
      ],
      [
        'getCollectionName',
        [],
        $this
          ->randomMachineName(),
      ],
    ];
  }

  /**
   * Test creating a collection.
   *
   * Creating collections returns a new instance, make sure it decorates the
   * new instance of the source.
   */
  public function testCreateCollection() {
    $name = $this
      ->randomMachineName();
    $source = $this
      ->prophesize(StorageInterface::class);
    $collectionSource = $this
      ->prophesize(StorageInterface::class)
      ->reveal();
    $source
      ->createCollection($name)
      ->willReturn($collectionSource);
    $storage = $this
      ->getStorage($source
      ->reveal());
    $collectionStorage = $storage
      ->createCollection($name);
    $this
      ->assertInstanceOf(ReadOnlyStorage::class, $collectionStorage);
    $readonlyReflection = new \ReflectionClass(ReadOnlyStorage::class);
    $storageProperty = $readonlyReflection
      ->getProperty('storage');
    $storageProperty
      ->setAccessible(TRUE);
    $actualSource = $storageProperty
      ->getValue($collectionStorage);
    $this
      ->assertEquals($collectionSource, $actualSource);
  }

  /**
   * Test the operations that should throw an error.
   *
   * @dataProvider writeMethodsProvider
   */
  public function testWriteOperations($method, $arguments) {
    $source = $this
      ->prophesize(StorageInterface::class);
    $source
      ->{$method}(Argument::any())
      ->shouldNotBeCalled();
    $storage = $this
      ->getStorage($source
      ->reveal());
    try {
      call_user_func_array([
        $storage,
        $method,
      ], $arguments);
      $this
        ->fail();
    } catch (UnsupportedMethod $exception) {
      $this
        ->assertEquals(ReadOnlyStorage::class . '::' . $method . ' is not allowed on a ReadOnlyStorage', $exception
        ->getMessage());
    }
  }

  /**
   * Provide the methods that should throw an exception.
   *
   * @return array
   *   The data
   */
  public function writeMethodsProvider() {
    return [
      [
        'write',
        [
          $this
            ->randomMachineName(),
          $this
            ->randomArray(),
        ],
      ],
      [
        'delete',
        [
          $this
            ->randomMachineName(),
        ],
      ],
      [
        'rename',
        [
          $this
            ->randomMachineName(),
          $this
            ->randomMachineName(),
        ],
      ],
      [
        'deleteAll',
        [
          $this
            ->randomMachineName(),
        ],
      ],
    ];
  }

  /**
   * Get a random array.
   *
   * @return array
   *   A random array used for data testing.
   */
  protected function randomArray() {
    return (array) $this
      ->getRandomGenerator()
      ->object();
  }

}

Classes

Namesort descending Description
ReadonlyStorageTest Tests ReadonlyStorage operations.