PluginManagerDecoratorTest.php in Plugin 8.2        
                          
                  
                        
  
  
  
  
  
File
  tests/src/Unit/PluginManager/PluginManagerDecoratorTest.php
  
    View source  
  <?php
namespace Drupal\Tests\plugin\Unit\PluginManager;
use BadMethodCallException;
use Drupal\Component\Plugin\Discovery\DiscoveryInterface;
use Drupal\Component\Plugin\Exception\PluginNotFoundException;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\Component\Plugin\PluginManagerInterface;
use Drupal\plugin\PluginManager\PluginManagerDecorator;
use Drupal\Tests\UnitTestCase;
class PluginManagerDecoratorTest extends UnitTestCase {
  
  protected $decoratedDiscovery;
  
  protected $decoratedFactory;
  
  protected $sut;
  
  public function testCreateInstanceWithExistingPlugin() {
    $plugin_manager = $this
      ->createMock(PluginManagerInterface::class);
    $this->decoratedDiscovery = $plugin_manager;
    $this->decoratedFactory = $plugin_manager;
    $this->sut = new PluginManagerDecorator($plugin_manager);
    $plugin_id = $this
      ->randomMachineName();
    $plugin = $this
      ->createMock(PluginInspectionInterface::class);
    $plugin_definitions = [
      $plugin_id => [
        'id' => $plugin_id,
      ],
    ];
    $this->decoratedDiscovery
      ->expects($this
      ->once())
      ->method('getDefinitions')
      ->willReturn($plugin_definitions);
    $this->decoratedFactory
      ->expects($this
      ->once())
      ->method('createInstance')
      ->with($plugin_id)
      ->willReturn($plugin);
    $this
      ->assertSame($plugin, $this->sut
      ->createInstance($plugin_id));
  }
  
  public function testCreateInstanceWithExistingPluginAndOverriddenDiscovery() {
    $plugin_manager = $this
      ->createMock(PluginManagerInterface::class);
    $this->decoratedDiscovery = $this
      ->createMock(DiscoveryInterface::class);
    $this->decoratedFactory = $plugin_manager;
    $this->sut = new PluginManagerDecorator($plugin_manager, $this->decoratedDiscovery);
    $plugin_id = $this
      ->randomMachineName();
    $plugin = $this
      ->createMock(PluginInspectionInterface::class);
    $plugin_definitions = [
      $plugin_id => [
        'id' => $plugin_id,
      ],
    ];
    $this->decoratedDiscovery
      ->expects($this
      ->once())
      ->method('getDefinitions')
      ->willReturn($plugin_definitions);
    $this->decoratedFactory
      ->expects($this
      ->once())
      ->method('createInstance')
      ->with($plugin_id)
      ->willReturn($plugin);
    $this
      ->assertSame($plugin, $this->sut
      ->createInstance($plugin_id));
  }
  
  public function testCreateInstanceWithNonExistingPlugin() {
    $this
      ->expectException(PluginNotFoundException::class);
    $plugin_manager = $this
      ->createMock(PluginManagerInterface::class);
    $this->decoratedDiscovery = $plugin_manager;
    $this->decoratedFactory = $plugin_manager;
    $this->sut = new PluginManagerDecorator($plugin_manager);
    $plugin_id = $this
      ->randomMachineName();
    $this->decoratedDiscovery
      ->expects($this
      ->once())
      ->method('getDefinitions')
      ->willReturn([]);
    $this->decoratedFactory
      ->expects($this
      ->never())
      ->method('createInstance');
    $this->sut
      ->createInstance($plugin_id);
  }
  
  public function testCreateInstanceWithNonExistingPluginAndOverriddenDiscovery() {
    $this
      ->expectException(PluginNotFoundException::class);
    $plugin_manager = $this
      ->createMock(PluginManagerInterface::class);
    $this->decoratedDiscovery = $this
      ->createMock(DiscoveryInterface::class);
    $this->decoratedFactory = $plugin_manager;
    $this->sut = new PluginManagerDecorator($plugin_manager, $this->decoratedDiscovery);
    $plugin_id = $this
      ->randomMachineName();
    $this->decoratedDiscovery
      ->expects($this
      ->once())
      ->method('getDefinitions')
      ->willReturn([]);
    $this->decoratedFactory
      ->expects($this
      ->never())
      ->method('createInstance');
    $this->sut
      ->createInstance($plugin_id);
  }
  
  public function testGetInstance() {
    $this
      ->expectException(BadMethodCallException::class);
    $plugin_manager = $this
      ->createMock(PluginManagerInterface::class);
    $this->sut = new PluginManagerDecorator($plugin_manager);
    $this->sut
      ->getInstance([]);
  }
}