class EntityFormBuilderTest in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/EntityFormBuilderTest.php \Drupal\Tests\Core\Entity\EntityFormBuilderTest
@coversDefaultClass \Drupal\Core\Entity\EntityFormBuilder @group Entity
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitCompatibilityTrait, PhpUnitWarnings- class \Drupal\Tests\Core\Entity\EntityFormBuilderTest
 
Expanded class hierarchy of EntityFormBuilderTest
File
- core/tests/ Drupal/ Tests/ Core/ Entity/ EntityFormBuilderTest.php, line 12 
Namespace
Drupal\Tests\Core\EntityView source
class EntityFormBuilderTest extends UnitTestCase {
  /**
   * The entity type 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() : void {
    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
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| EntityFormBuilderTest:: | protected | property | The entity form builder. | |
| EntityFormBuilderTest:: | protected | property | The entity type manager. | |
| EntityFormBuilderTest:: | protected | property | The form builder. | |
| EntityFormBuilderTest:: | protected | function | Overrides UnitTestCase:: | |
| EntityFormBuilderTest:: | public | function | Tests the getForm() method. | |
| PhpUnitWarnings:: | private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
| PhpUnitWarnings:: | public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
| UnitTestCase:: | protected | property | The random generator. | |
| UnitTestCase:: | protected | property | The app root. | 1 | 
| UnitTestCase:: | protected | function | Asserts if two arrays are equal by sorting them first. | |
| UnitTestCase:: | protected | function | Returns a stub class resolver. | |
| UnitTestCase:: | public | function | Returns a stub config factory that behaves according to the passed array. | |
| UnitTestCase:: | public | function | Returns a stub config storage that returns the supplied configuration. | |
| UnitTestCase:: | protected | function | Sets up a container with a cache tags invalidator. | |
| UnitTestCase:: | protected | function | Gets the random generator for the utility methods. | |
| UnitTestCase:: | public | function | Returns a stub translation manager that just returns the passed string. | |
| UnitTestCase:: | public | function | Generates a unique random string containing letters and numbers. | |
| UnitTestCase:: | public static | function | 
