You are here

public function ContentNegotiationRoutingTest::testFullNegotiation in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php \Drupal\KernelTests\Core\Routing\ContentNegotiationRoutingTest::testFullNegotiation()

Full negotiation by header only.

File

core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php, line 118

Class

ContentNegotiationRoutingTest
Tests content negotiation routing variations.

Namespace

Drupal\KernelTests\Core\Routing

Code

public function testFullNegotiation() {
  $this
    ->enableModules([
    'accept_header_routing_test',
  ]);
  \Drupal::service('router.builder')
    ->rebuild();
  $tests = [
    // ['path', 'accept', 'content-type'],
    // 406?
    [
      'conneg/negotiate',
      '',
      'text/html',
    ],
    // 406?
    [
      'conneg/negotiate',
      '',
      'text/html',
    ],
    // ['conneg/negotiate', '*/*', '??'],
    [
      'conneg/negotiate',
      'application/json',
      'application/json',
    ],
    [
      'conneg/negotiate',
      'application/xml',
      'application/xml',
    ],
    [
      'conneg/negotiate',
      'application/json',
      'application/json',
    ],
    [
      'conneg/negotiate',
      'application/xml',
      'application/xml',
    ],
  ];
  foreach ($tests as $test) {
    $path = $test[0];
    $accept_header = $test[1];
    $content_type = $test[2];
    $request = Request::create('/' . $path);
    $request->headers
      ->set('Accept', $accept_header);

    /** @var \Symfony\Component\HttpKernel\HttpKernelInterface $kernel */
    $kernel = \Drupal::getContainer()
      ->get('http_kernel');
    $response = $kernel
      ->handle($request);
    $this
      ->assertEqual($response
      ->getStatusCode(), Response::HTTP_OK, "Testing path:{$path} Accept:{$accept_header} Content-type:{$content_type}");
  }
}