You are here

class AddCurrencyTest in Currency 8.3

@coversDefaultClass \Drupal\currency\Controller\AddCurrency

@group Currency

Hierarchy

Expanded class hierarchy of AddCurrencyTest

File

tests/src/Unit/Controller/AddCurrencyTest.php, line 19

Namespace

Drupal\Tests\currency\Unit\Controller
View source
class AddCurrencyTest extends UnitTestCase {

  /**
   * The currency storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $currencyStorage;

  /**
   * The entity form builder.
   *
   * @var \Drupal\Core\Entity\EntityFormBuilderInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $entityFormBuilder;

  /**
   * The class under test.
   *
   * @var \Drupal\currency\Controller\AddCurrency
   */
  protected $sut;

  /**
   * {@inheritdoc}
   */
  public function setUp() : void {
    $this->currencyStorage = $this
      ->createMock(EntityStorageInterface::class);
    $this->entityFormBuilder = $this
      ->createMock(EntityFormBuilderInterface::class);
    $this->sut = new AddCurrency($this->entityFormBuilder, $this->currencyStorage);
  }

  /**
   * @covers ::create
   * @covers ::__construct
   */
  function testCreate() {
    $entity_type_manager = $this
      ->createMock(EntityTypeManagerInterface::class);
    $entity_type_manager
      ->expects($this
      ->atLeastOnce())
      ->method('getStorage')
      ->with('currency')
      ->willReturn($this->currencyStorage);
    $container = $this
      ->createMock(ContainerInterface::class);
    $map = array(
      array(
        'entity.form_builder',
        ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
        $this->entityFormBuilder,
      ),
      array(
        'entity_type.manager',
        ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
        $entity_type_manager,
      ),
    );
    $container
      ->expects($this
      ->any())
      ->method('get')
      ->willReturnMap($map);
    $sut = AddCurrency::create($container);
    $this
      ->assertInstanceOf(AddCurrency::class, $sut);
  }

  /**
   * @covers ::execute
   */
  public function testExecute() {
    $currency = $this
      ->createMock(CurrencyInterface::class);
    $this->currencyStorage
      ->expects($this
      ->once())
      ->method('create')
      ->with(array())
      ->willReturn($currency);
    $form = $this
      ->createMock(EntityFormInterface::class);
    $this->entityFormBuilder
      ->expects($this
      ->once())
      ->method('getForm')
      ->with($currency)
      ->willReturn($form);
    $this
      ->assertSame($form, $this->sut
      ->execute());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AddCurrencyTest::$currencyStorage protected property The currency storage.
AddCurrencyTest::$entityFormBuilder protected property The entity form builder.
AddCurrencyTest::$sut protected property The class under test.
AddCurrencyTest::setUp public function Overrides UnitTestCase::setUp
AddCurrencyTest::testCreate function @covers ::create @covers ::__construct
AddCurrencyTest::testExecute public function @covers ::execute
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.