You are here

class PaymentMethodConfigurationTest in Payment 8.2

@coversDefaultClass \Drupal\payment\Entity\PaymentMethodConfiguration

@group Payment

Hierarchy

Expanded class hierarchy of PaymentMethodConfigurationTest

File

tests/src/Unit/Entity/PaymentMethodConfigurationTest.php, line 18

Namespace

Drupal\Tests\payment\Unit\Entity
View source
class PaymentMethodConfigurationTest extends UnitTestCase {

  /**
   * The bundle.
   *
   * @var string
   */
  protected $bundle;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $entityTypeManager;

  /**
   * The entity type ID.
   *
   * @var string
   */
  protected $entityTypeId;

  /**
   * The class to test.
   *
   * @var \Drupal\payment\Entity\PaymentMethodConfiguration
   */
  protected $sut;

  /**
   * The typed config manager.
   *
   * @var \Drupal\Core\Config\TypedConfigManagerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $typedConfigManager;

  /**
   * The user storage.
   *
   * @var \Drupal\user\UserStorageInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $userStorage;

  /**
   * {@inheritdoc}
   *
   * @covers ::setEntityTypeManager
   * @covers ::setTypedConfig
   * @covers ::setUserStorage
   */
  public function setUp() : void {
    $this->bundle = $this
      ->randomMachineName();
    $this->entityTypeManager = $this
      ->createMock(EntityTypeManagerInterface::class);
    $this->entityTypeId = $this
      ->randomMachineName();
    $this->typedConfigManager = $this
      ->createMock(TypedConfigManagerInterface::class);
    $this->userStorage = $this
      ->createMock(UserStorageInterface::class);
    $this->sut = new PaymentMethodConfiguration([
      'pluginId' => $this->bundle,
    ], $this->entityTypeId);
    $this->sut
      ->setEntityTypeManager($this->entityTypeManager);
    $this->sut
      ->setTypedConfig($this->typedConfigManager);
    $this->sut
      ->setUserStorage($this->userStorage);
  }

  /**
   * @covers ::bundle
   */
  public function testBundle() {
    $this
      ->assertSame($this->bundle, $this->sut
      ->bundle());
  }

  /**
   * @covers ::getPluginId
   */
  public function testPluginId() {
    $this
      ->assertSame($this->bundle, $this->sut
      ->getPluginId());
  }

  /**
   * @covers ::setPluginConfiguration
   * @covers ::getPluginConfiguration
   */
  public function testGetConfiguration() {
    $configuration = [
      $this
        ->randomMachineName(),
    ];
    $this
      ->assertSame($this->sut, $this->sut
      ->setPluginConfiguration($configuration));
    $this
      ->assertSame($configuration, $this->sut
      ->getPluginConfiguration());
  }

  /**
   * @covers ::setLabel
   * @covers ::label
   */
  public function testLabel() {
    $entity_type = $this
      ->createMock(ConfigEntityTypeInterface::class);
    $entity_type
      ->expects($this
      ->atLeastOnce())
      ->method('getKey')
      ->with('label')
      ->willReturn('label');
    $this->entityTypeManager
      ->expects($this
      ->atLeastOnce())
      ->method('getDefinition')
      ->with($this->entityTypeId)
      ->willReturn($entity_type);
    $label = $this
      ->randomMachineName();
    $this
      ->assertSame($this->sut, $this->sut
      ->setLabel($label));
    $this
      ->assertSame($label, $this->sut
      ->label());
  }

  /**
   * @covers ::setOwnerId
   * @covers ::getOwnerId
   */
  public function testGetOwnerId() {
    $id = mt_rand();
    $this
      ->assertSame($this->sut, $this->sut
      ->setOwnerId($id));
    $this
      ->assertSame($id, $this->sut
      ->getOwnerId());
  }

  /**
   * @covers ::getOwner
   *
   * @depends testGetOwnerId
   */
  public function testGetOwner() {
    $owner = $this
      ->createMock(UserInterface::class);
    $id = mt_rand();
    $this->userStorage
      ->expects($this
      ->atLeastOnce())
      ->method('load')
      ->with($id)
      ->willReturn($owner);
    $this->sut
      ->setOwnerId($id);
    $this
      ->assertSame($owner, $this->sut
      ->getOwner());
  }

  /**
   * @covers ::setOwner
   *
   * @depends testGetOwnerId
   */
  public function testSetOwner() {
    $id = mt_rand();
    $owner = $this
      ->createMock(UserInterface::class);
    $owner
      ->expects($this
      ->atLeastOnce())
      ->method('id')
      ->willReturn($id);
    $this->sut
      ->setOwner($owner);
    $this
      ->assertSame($id, $this->sut
      ->getOwnerId());
  }

  /**
   * @covers ::setId
   * @covers ::id
   */
  public function testId() {
    $id = mt_rand();
    $this
      ->assertSame($this->sut, $this->sut
      ->setId($id));
    $this
      ->assertSame($id, $this->sut
      ->id());
  }

  /**
   * @covers ::setUuid
   * @covers ::uuid
   */
  public function testUuid() {
    $uuid = $this
      ->randomMachineName();
    $this
      ->assertSame($this->sut, $this->sut
      ->setUuid($uuid));
    $this
      ->assertSame($uuid, $this->sut
      ->uuid());
  }

  /**
   * @covers ::entityTypeManager
   */
  public function testEntityTypeManager() {
    $method = new \ReflectionMethod($this->sut, 'entityTypeManager');
    $method
      ->setAccessible(TRUE);
    $this
      ->assertSame($this->entityTypeManager, $method
      ->invoke($this->sut));
  }

  /**
   * @covers ::getTypedConfig
   */
  public function testGetTypedConfig() {
    $method = new \ReflectionMethod($this->sut, 'getTypedConfig');
    $method
      ->setAccessible(TRUE);
    $this
      ->assertSame($this->typedConfigManager, $method
      ->invoke($this->sut));
  }

  /**
   * @covers ::getUserStorage
   */
  public function testGetUserStorage() {
    $method = new \ReflectionMethod($this->sut, 'getUserStorage');
    $method
      ->setAccessible(TRUE);
    $this
      ->assertSame($this->userStorage, $method
      ->invoke($this->sut));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PaymentMethodConfigurationTest::$bundle protected property The bundle.
PaymentMethodConfigurationTest::$entityTypeId protected property The entity type ID.
PaymentMethodConfigurationTest::$entityTypeManager protected property The entity type manager.
PaymentMethodConfigurationTest::$sut protected property The class to test.
PaymentMethodConfigurationTest::$typedConfigManager protected property The typed config manager.
PaymentMethodConfigurationTest::$userStorage protected property The user storage.
PaymentMethodConfigurationTest::setUp public function @covers ::setEntityTypeManager @covers ::setTypedConfig @covers ::setUserStorage Overrides UnitTestCase::setUp
PaymentMethodConfigurationTest::testBundle public function @covers ::bundle
PaymentMethodConfigurationTest::testEntityTypeManager public function @covers ::entityTypeManager
PaymentMethodConfigurationTest::testGetConfiguration public function @covers ::setPluginConfiguration @covers ::getPluginConfiguration
PaymentMethodConfigurationTest::testGetOwner public function @covers ::getOwner
PaymentMethodConfigurationTest::testGetOwnerId public function @covers ::setOwnerId @covers ::getOwnerId
PaymentMethodConfigurationTest::testGetTypedConfig public function @covers ::getTypedConfig
PaymentMethodConfigurationTest::testGetUserStorage public function @covers ::getUserStorage
PaymentMethodConfigurationTest::testId public function @covers ::setId @covers ::id
PaymentMethodConfigurationTest::testLabel public function @covers ::setLabel @covers ::label
PaymentMethodConfigurationTest::testPluginId public function @covers ::getPluginId
PaymentMethodConfigurationTest::testSetOwner public function @covers ::setOwner
PaymentMethodConfigurationTest::testUuid public function @covers ::setUuid @covers ::uuid
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.