function OptionsRequestSubscriberTest::testWithOptionsRequest
@covers ::onRequest
      
    
@dataProvider providerTestOnRequestWithOptionsRequest
File
- 
              core/tests/ Drupal/ Tests/ Core/ EventSubscriber/ OptionsRequestSubscriberTest.php, line 58 
Class
- OptionsRequestSubscriberTest
- @coversDefaultClass \Drupal\Core\EventSubscriber\OptionsRequestSubscriber[[api-linebreak]] @group EventSubscriber
Namespace
Drupal\Tests\Core\EventSubscriberCode
public function testWithOptionsRequest(RouteCollection $collection, $expected_header) {
  $kernel = $this->prophesize(HttpKernelInterface::class);
  $request = Request::create('/example', 'OPTIONS');
  $route_provider = $this->prophesize(RouteProviderInterface::class);
  $route_provider->getRouteCollectionForRequest($request)
    ->willReturn($collection)
    ->shouldBeCalled();
  $subscriber = new OptionsRequestSubscriber($route_provider->reveal());
  $event = new RequestEvent($kernel->reveal(), $request, HttpKernelInterface::MASTER_REQUEST);
  $subscriber->onRequest($event);
  $this->assertTrue($event->hasResponse());
  $response = $event->getResponse();
  $this->assertEquals(200, $response->getStatusCode());
  $this->assertEquals($expected_header, $response->headers
    ->get('Allow'));
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
