You are here

class EntityFormBuilderTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityFormBuilderTest.php \Drupal\Tests\Core\Entity\EntityFormBuilderTest

@coversDefaultClass \Drupal\Core\Entity\EntityFormBuilder @group Entity

Hierarchy

Expanded class hierarchy of EntityFormBuilderTest

File

core/tests/Drupal/Tests/Core/Entity/EntityFormBuilderTest.php, line 12

Namespace

Drupal\Tests\Core\Entity
View source
class EntityFormBuilderTest extends UnitTestCase {

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

  /**
   * The form builder.
   *
   * @var \Drupal\Core\Form\FormBuilderInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $formBuilder;

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

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->formBuilder = $this
      ->createMock('Drupal\\Core\\Form\\FormBuilderInterface');
    $this->entityTypeManager = $this
      ->createMock('Drupal\\Core\\Entity\\EntityTypeManagerInterface');
    $this->entityFormBuilder = new EntityFormBuilder($this->entityTypeManager, $this->formBuilder);
  }

  /**
   * Tests the getForm() method.
   *
   * @covers ::getForm
   */
  public function testGetForm() {
    $form_controller = $this
      ->createMock('Drupal\\Core\\Entity\\EntityFormInterface');
    $form_controller
      ->expects($this
      ->any())
      ->method('getFormId')
      ->will($this
      ->returnValue('the_form_id'));
    $this->entityTypeManager
      ->expects($this
      ->any())
      ->method('getFormObject')
      ->with('the_entity_type', 'default')
      ->will($this
      ->returnValue($form_controller));
    $this->formBuilder
      ->expects($this
      ->once())
      ->method('buildForm')
      ->with($form_controller, $this
      ->isInstanceOf('Drupal\\Core\\Form\\FormStateInterface'))
      ->will($this
      ->returnValue('the form contents'));
    $entity = $this
      ->createMock('Drupal\\Core\\Entity\\EntityInterface');
    $entity
      ->expects($this
      ->once())
      ->method('getEntityTypeId')
      ->will($this
      ->returnValue('the_entity_type'));
    $this
      ->assertSame('the form contents', $this->entityFormBuilder
      ->getForm($entity));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityFormBuilderTest::$entityFormBuilder protected property The entity form builder.
EntityFormBuilderTest::$entityTypeManager protected property The entity manager.
EntityFormBuilderTest::$formBuilder protected property The form builder.
EntityFormBuilderTest::setUp protected function Overrides UnitTestCase::setUp
EntityFormBuilderTest::testGetForm public function Tests the getForm() method.
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.