You are here

class ConfigDeriverTest in Payment 8.2

@coversDefaultClass \Drupal\payment\Plugin\Payment\Status\ConfigDeriver

@group Payment

Hierarchy

Expanded class hierarchy of ConfigDeriverTest

File

tests/src/Unit/Plugin/Payment/Status/ConfigDeriverTest.php, line 17

Namespace

Drupal\Tests\payment\Unit\Plugin\Payment\Status
View source
class ConfigDeriverTest extends UnitTestCase {

  /**
   * The class under test.
   *
   * @var \Drupal\payment\Plugin\Payment\Status\ConfigDeriver
   */
  protected $sut;

  /**
   * The payment status storage controller.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $paymentStatusStorage;

  /**
   * {@inheritdoc}
   */
  public function setUp() : void {
    $this->paymentStatusStorage = $this
      ->createMock(EntityStorageInterface::class);
    $this->sut = new ConfigDeriver($this->paymentStatusStorage);
  }

  /**
   * @covers ::create
   * @covers ::__construct
   */
  function testCreate() {
    $entity_type_manager = $this
      ->createMock(EntityTypeManagerInterface::class);
    $entity_type_manager
      ->expects($this
      ->once())
      ->method('getStorage')
      ->with('payment_status')
      ->willReturn($this->paymentStatusStorage);
    $container = $this
      ->createMock(ContainerInterface::class);
    $map = array(
      array(
        'entity_type.manager',
        ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
        $entity_type_manager,
      ),
    );
    $container
      ->expects($this
      ->any())
      ->method('get')
      ->willReturnMap($map);
    $configuration = [];
    $plugin_definition = [];
    $plugin_id = $this
      ->randomMachineName();
    $sut = ConfigDeriver::create($container, $configuration, $plugin_id, $plugin_definition);
    $this
      ->assertInstanceOf(ConfigDeriver::class, $sut);
  }

  /**
   * @covers ::getDerivativeDefinitions
   */
  public function testGetDerivativeDefinitions() {
    $status_a = $this
      ->createMock(PaymentStatusInterface::class);
    $status_a
      ->expects($this
      ->once())
      ->method('getDescription')
      ->willReturn($this
      ->randomMachineName());
    $status_a
      ->expects($this
      ->once())
      ->method('id')
      ->willReturn($this
      ->randomMachineName());
    $status_a
      ->expects($this
      ->once())
      ->method('label')
      ->willReturn($this
      ->randomMachineName());
    $status_a
      ->expects($this
      ->once())
      ->method('getParentId')
      ->willReturn($this
      ->randomMachineName());
    $status_b = $this
      ->createMock(PaymentStatusInterface::class);
    $status_b
      ->expects($this
      ->once())
      ->method('getDescription')
      ->willReturn($this
      ->randomMachineName());
    $status_b
      ->expects($this
      ->once())
      ->method('id')
      ->willReturn($this
      ->randomMachineName());
    $status_b
      ->expects($this
      ->once())
      ->method('label')
      ->willReturn($this
      ->randomMachineName());
    $status_b
      ->expects($this
      ->once())
      ->method('getParentId')
      ->willReturn($this
      ->randomMachineName());
    $this->paymentStatusStorage
      ->expects($this
      ->once())
      ->method('loadMultiple')
      ->willReturn(array(
      $status_a,
      $status_b,
    ));
    $derivatives = $this->sut
      ->getDerivativeDefinitions([]);
    $this
      ->assertCount(2, $derivatives);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigDeriverTest::$paymentStatusStorage protected property The payment status storage controller.
ConfigDeriverTest::$sut protected property The class under test.
ConfigDeriverTest::setUp public function Overrides UnitTestCase::setUp
ConfigDeriverTest::testCreate function @covers ::create @covers ::__construct
ConfigDeriverTest::testGetDerivativeDefinitions public function @covers ::getDerivativeDefinitions
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.