function TaggedHandlersPassTest::testProcessWithExtraArguments

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\TaggedHandlersPassTest::testProcessWithExtraArguments()
  2. 8.9.x core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\TaggedHandlersPassTest::testProcessWithExtraArguments()
  3. 10 core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\TaggedHandlersPassTest::testProcessWithExtraArguments()

Tests consumer method with extra parameters.

@covers ::process

File

core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php, line 314

Class

TaggedHandlersPassTest
@coversDefaultClass \Drupal\Core\DependencyInjection\Compiler\TaggedHandlersPass[[api-linebreak]] @group DependencyInjection

Namespace

Drupal\Tests\Core\DependencyInjection\Compiler

Code

public function testProcessWithExtraArguments() : void {
  $container = $this->buildContainer();
  $container->register('consumer_id', __NAMESPACE__ . '\\ValidConsumerWithExtraArguments')
    ->addTag('service_collector');
  $container->register('handler1', __NAMESPACE__ . '\\ValidHandler')
    ->addTag('consumer_id', [
    'extra1' => 'extra1',
    'extra2' => 'extra2',
  ]);
  $handler_pass = new TaggedHandlersPass();
  $handler_pass->process($container);
  $method_calls = $container->getDefinition('consumer_id')
    ->getMethodCalls();
  $this->assertCount(4, $method_calls[0][1]);
  $this->assertEquals(new Reference('handler1'), $method_calls[0][1][0]);
  $this->assertEquals(0, $method_calls[0][1][1]);
  $this->assertEquals('extra1', $method_calls[0][1][2]);
  $this->assertEquals('extra2', $method_calls[0][1][3]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.