
| Current Path : /var/www/html/holz-machines/web/core/tests/Drupal/Tests/Core/Field/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/holz-machines/web/core/tests/Drupal/Tests/Core/Field/BaseFieldDefinitionTestBase.php |
<?php
namespace Drupal\Tests\Core\Field;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\Field\BaseFieldDefinition;
use Drupal\Core\Field\FieldTypePluginManager;
use Drupal\Core\TypedData\TypedDataManagerInterface;
use Drupal\Tests\UnitTestCase;
/**
* Provides setup method for testing base field definitions.
*/
abstract class BaseFieldDefinitionTestBase extends UnitTestCase {
/**
* The field definition used in this test.
*
* @var \Drupal\Core\Field\BaseFieldDefinition
*/
protected $definition;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
// getModuleAndPath() returns an array of the module name and directory.
[$module_name, $module_dir] = $this->getModuleAndPath();
$namespaces = new \ArrayObject();
$namespaces["Drupal\\$module_name"] = $module_dir . '/src';
$module_handler = $this->createMock('Drupal\Core\Extension\ModuleHandlerInterface');
$module_handler->expects($this->once())
->method('moduleExists')
->with($module_name)
->willReturn(TRUE);
$typed_data_manager = $this->createMock(TypedDataManagerInterface::class);
$plugin_manager = new FieldTypePluginManager(
$namespaces,
$this->createMock('Drupal\Core\Cache\CacheBackendInterface'),
$module_handler,
$typed_data_manager
);
$container = new ContainerBuilder();
$container->set('plugin.manager.field.field_type', $plugin_manager);
// The 'string_translation' service is used by the @Translation annotation.
$container->set('string_translation', $this->getStringTranslationStub());
\Drupal::setContainer($container);
$this->definition = BaseFieldDefinition::create($this->getPluginId());
}
/**
* Returns the plugin ID of the tested field type.
*
* @return string
* The plugin ID.
*/
abstract protected function getPluginId();
/**
* Returns the module name and the module directory for the plugin.
*
* @return array
* A one-dimensional array containing the following strings:
* - The module name.
* - The module directory, e.g. DRUPAL_CORE . 'core/modules/path'.
*/
abstract protected function getModuleAndPath();
}