final class OtherEventVariablesTest in Hook Event Dispatcher 8.2
Same name and namespace in other branches
- 3.x modules/preprocess_event_dispatcher/tests/src/Unit/OtherEventVariablesTest.php \Drupal\Tests\preprocess_event_dispatcher\Unit\OtherEventVariablesTest
Class OtherEventVariablesTest.
@group preprocess_event_dispatcher
Testing the other events gives expected PHPMD warnings.
Plugin annotation
@SuppressWarnings(PHPMD.CouplingBetweenObjects)
@SuppressWarnings(PHPMD.TooManyPublicMethods)
Hierarchy
- class \Drupal\Tests\preprocess_event_dispatcher\Unit\OtherEventVariablesTest extends \PHPUnit\Framework\TestCase
Expanded class hierarchy of OtherEventVariablesTest
File
- modules/
preprocess_event_dispatcher/ tests/ src/ Unit/ OtherEventVariablesTest.php, line 49
Namespace
Drupal\Tests\preprocess_event_dispatcher\UnitView source
final class OtherEventVariablesTest extends TestCase {
/**
* Factory mapper.
*
* @var \Drupal\preprocess_event_dispatcher\Service\PreprocessEventFactoryMapper
*/
private $mapper;
/**
* {@inheritdoc}
*/
public function setUp() : void {
$this->mapper = YamlDefinitionsLoader::getInstance()
->getMapper();
}
/**
* Test a BlockPreprocessEvent.
*/
public function testBlockEvent() : void {
$variablesArray = $this
->createVariablesArray();
$block = Mockery::mock(BlockInterface::class);
$variablesArray['block'] = $block;
$variablesArray['elements']['#id'] = '22';
$variablesArray['content']['test'] = [
'success2',
];
/** @var \Drupal\preprocess_event_dispatcher\Variables\BlockEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(BlockPreprocessEvent::class, $variablesArray);
self::assertInstanceOf(BlockEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame($block, $variables
->getBlock());
self::assertSame('22', $variables
->getId());
self::assertSame([
'success2',
], $variables
->getContentChild('test'));
self::assertSame([], $variables
->getContentChild('none-existing'));
self::assertNull($variables
->getBlockContent());
}
/**
* Test a BlockPreprocessEvent with block content entity.
*/
public function testBlockEventWithBlockContent() : void {
$variablesArray = $this
->createVariablesArray();
$blockContent = Mockery::mock(BlockContentInterface::class);
$variablesArray['content']['#block_content'] = $blockContent;
/** @var \Drupal\preprocess_event_dispatcher\Variables\BlockEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(BlockPreprocessEvent::class, $variablesArray);
self::assertInstanceOf(BlockEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame($blockContent, $variables
->getBlockContent());
}
/**
* Test a FieldPreprocessEvent.
*/
public function testFieldEvent() : void {
$variablesArray = $this
->createVariablesArray();
$variablesArray['element'] = [
'element array',
];
$variablesArray['items'] = [
'items array',
];
/** @var \Drupal\preprocess_event_dispatcher\Variables\FieldEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(FieldPreprocessEvent::class, $variablesArray);
self::assertInstanceOf(FieldEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame([
'element array',
], $variables
->getElement());
self::assertSame([
'items array',
], $variables
->getItems());
}
/**
* Test FormPreprocessEvent.
*/
public function testFormEvent() : void {
$variablesArray = $this
->createVariablesArray();
$variablesArray['element'] = [
'element array',
];
/** @var \Drupal\preprocess_event_dispatcher\Variables\FormEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(FormPreprocessEvent::class, $variablesArray);
self::assertInstanceOf(FormEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame([
'element array',
], $variables
->getElement());
}
/**
* Test a HtmlPreprocessEvent.
*/
public function testHtmlEvent() : void {
$variablesArray = $this
->createVariablesArray();
/** @var \Drupal\preprocess_event_dispatcher\Variables\HtmlEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(HtmlPreprocessEvent::class, $variablesArray);
self::assertInstanceOf(HtmlEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
}
/**
* Test a ImagePreprocessEvent.
*/
public function testImageEvent() : void {
$variablesArray = $this
->createVariablesArray();
/** @var \Drupal\preprocess_event_dispatcher\Variables\ImageEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(ImagePreprocessEvent::class, $variablesArray);
self::assertInstanceOf(ImageEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
}
/**
* Test a PagePreprocessEvent.
*/
public function testPageEvent() : void {
$variablesArray = [
'page' => $this
->createVariablesArray(),
];
/** @var \Drupal\preprocess_event_dispatcher\Variables\PageEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(PagePreprocessEvent::class, $variablesArray);
self::assertInstanceOf(PageEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
}
/**
* Test a UsernamePreprocessEvent.
*/
public function testUsernameEvent() : void {
$variablesArray = $this
->createVariablesArray();
$accountMock = Mockery::mock(UserInterface::class);
$accountMock
->expects('isAnonymous')
->with()
->once()
->andReturnTrue();
$variablesArray['account'] = $accountMock;
/** @var \Drupal\preprocess_event_dispatcher\Variables\UsernameEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(UsernamePreprocessEvent::class, $variablesArray);
self::assertInstanceOf(UsernameEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame($accountMock, $variables
->getAccount());
self::assertTrue($variables
->userIsAnonymous());
}
/**
* Test a ViewFieldPreprocessEvent.
*/
public function testViewFieldEvent() : void {
$variablesArray = $this
->createVariablesArray();
$field = Mockery::mock(FieldHandlerInterface::class);
$variablesArray['field'] = $field;
$output = Mockery::mock(Markup::class);
$variablesArray['output'] = $output;
$row = Mockery::mock(ResultRow::class);
$variablesArray['row'] = $row;
$view = Mockery::mock(ViewExecutable::class);
$variablesArray['view'] = $view;
/** @var \Drupal\preprocess_event_dispatcher\Variables\ViewFieldEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(ViewFieldPreprocessEvent::class, $variablesArray);
self::assertInstanceOf(ViewFieldEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame($field, $variables
->getField());
self::assertSame($output, $variables
->getOutput());
self::assertSame($row, $variables
->getRow());
self::assertSame($view, $variables
->getView());
}
/**
* Test a ViewTablePreprocessEvent.
*/
public function testViewTableEvent() : void {
$variablesArray = $this
->createVariablesArray();
$rows = Mockery::mock(ResultRow::class);
$variablesArray['rows'] = $rows;
$view = Mockery::mock(ViewExecutable::class);
$variablesArray['view'] = $view;
/** @var \Drupal\preprocess_event_dispatcher\Variables\ViewTableEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(ViewTablePreprocessEvent::class, $variablesArray);
self::assertInstanceOf(ViewTableEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame($rows, $variables
->getRows());
self::assertSame($view, $variables
->getView());
}
/**
* Test a ViewPreprocessEvent.
*/
public function testViewEvent() : void {
$variablesArray = $this
->createVariablesArray();
$variablesArray['rows'] = [
[
'#rows' => [
'rows',
],
],
];
$view = Mockery::mock(ViewExecutable::class);
$variablesArray['view'] = $view;
/** @var \Drupal\preprocess_event_dispatcher\Variables\ViewEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(ViewPreprocessEvent::class, $variablesArray);
self::assertInstanceOf(ViewEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame([
'rows',
], $variables
->getRows());
self::assertSame($view, $variables
->getView());
}
/**
* Test a StatusMessagesPreprocessEvent.
*/
public function testStatusMessagesEvent() : void {
$variablesArray = $this
->createVariablesArray();
/** @var \Drupal\preprocess_event_dispatcher\Variables\StatusMessagesEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(StatusMessagesPreprocessEvent::class, $variablesArray);
self::assertInstanceOf(StatusMessagesEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
}
/**
* Test the default event variable functions.
*
* @param \Drupal\preprocess_event_dispatcher\Variables\AbstractEventVariables $variables
* Variables object.
*/
private function assertAbstractEventVariables(AbstractEventVariables $variables) : void {
self::assertSame('success', $variables
->get('test'));
self::assertSame('default', $variables
->get('test2', 'default'));
$reference =& $variables
->getByReference('reference');
self::assertSame('first', $reference);
$reference = 'second';
self::assertSame('second', $variables
->get('reference'));
$variables
->set('test3', 'new set');
self::assertSame('new set', $variables
->get('test3'));
$variables
->remove('test');
self::assertNull($variables
->get('test'));
}
/**
* Get the variables from the created event.
*
* @param string $class
* Event class name.
* @param array $variablesArray
* Variables array.
*
* @return \Drupal\preprocess_event_dispatcher\Variables\AbstractEventVariables
* Variables object.
*/
private function getVariablesFromCreatedEvent(string $class, array $variablesArray) : AbstractEventVariables {
/** @var \Drupal\preprocess_event_dispatcher\Event\PreprocessEventInterface $class */
$hook = $class::getHook();
self::assertSame(AbstractPreprocessEvent::DISPATCH_NAME_PREFIX . $hook, $class::name());
$factory = $this->mapper
->getFactory($hook);
self::assertSame($hook, $factory
->getEventHook());
/** @var \Drupal\preprocess_event_dispatcher\Event\PreprocessEventInterface $event*/
$event = $factory
->createEvent($variablesArray);
self::assertInstanceOf($class, $event);
return $event
->getVariables();
}
/**
* Create the variables array.
*
* @return array
* Variables array.
*/
private function createVariablesArray() : array {
return [
'test' => 'success',
'reference' => 'first',
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
OtherEventVariablesTest:: |
private | property | Factory mapper. | |
OtherEventVariablesTest:: |
private | function | Test the default event variable functions. | |
OtherEventVariablesTest:: |
private | function | Create the variables array. | |
OtherEventVariablesTest:: |
private | function | Get the variables from the created event. | |
OtherEventVariablesTest:: |
public | function | ||
OtherEventVariablesTest:: |
public | function | Test a BlockPreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a BlockPreprocessEvent with block content entity. | |
OtherEventVariablesTest:: |
public | function | Test a FieldPreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test FormPreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a HtmlPreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a ImagePreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a PagePreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a StatusMessagesPreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a UsernamePreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a ViewPreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a ViewFieldPreprocessEvent. | |
OtherEventVariablesTest:: |
public | function | Test a ViewTablePreprocessEvent. |