View source
<?php
namespace Drupal\KernelTests\Core\Routing;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\KernelTests\KernelTestBase;
use Drupal\Tests\Traits\Core\PathAliasTestTrait;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class ContentNegotiationRoutingTest extends KernelTestBase {
use PathAliasTestTrait;
protected static $modules = [
'conneg_test',
'path_alias',
];
protected function setUp() : void {
parent::setUp();
$this
->installEntitySchema('path_alias');
}
public function register(ContainerBuilder $container) {
parent::register($container);
if ($container
->hasDefinition('path_alias.path_processor')) {
$definition = $container
->getDefinition('path_alias.path_processor');
$definition
->addTag('path_processor_inbound', [
'priority' => 100,
])
->addTag('path_processor_outbound', [
'priority' => 300,
]);
}
}
public function testContentRouting() {
$this
->createPathAlias('/conneg/html', '/alias.html');
$this
->createPathAlias('/conneg/html?_format=json', '/alias.json');
$tests = [
[
'conneg/simple.json',
'',
'application/json',
],
[
'conneg/simple.json',
'application/xml',
'application/json',
],
[
'conneg/simple.json',
'application/json',
'application/json',
],
[
'conneg/html',
'',
'text/html',
],
[
'conneg/html',
'*/*',
'text/html',
],
[
'conneg/html',
'application/xml',
'text/html',
],
[
'conneg/html',
'text/xml',
'text/html',
],
[
'conneg/html',
'text/html',
'text/html',
],
[
'conneg/html?_format=json',
'',
'application/json',
],
[
'conneg/html?_format=json',
'*/*',
'application/json',
],
[
'conneg/html?_format=json',
'application/xml',
'application/json',
],
[
'conneg/html?_format=json',
'application/json',
'application/json',
],
[
'conneg/html?_format=xml',
'',
'application/xml',
],
[
'conneg/html?_format=xml',
'*/*',
'application/xml',
],
[
'conneg/html?_format=xml',
'application/json',
'application/xml',
],
[
'conneg/html?_format=xml',
'application/xml',
'application/xml',
],
[
'conneg/plugin/plugin.id',
'',
'text/html',
],
[
'conneg/plugin/plugin.id',
'*/*',
'text/html',
],
[
'conneg/plugin/plugin.id',
'text/xml',
'text/html',
],
[
'conneg/plugin/plugin.id',
'text/html',
'text/html',
],
[
'alias.html',
'',
'text/html',
],
[
'alias.html',
'*/*',
'text/html',
],
[
'alias.html',
'text/xml',
'text/html',
],
[
'alias.html',
'text/html',
'text/html',
],
];
foreach ($tests as $test) {
$path = $test[0];
$accept_header = $test[1];
$content_type = $test[2];
$message = "Testing path:{$path} Accept:{$accept_header} Content-type:{$content_type}";
$request = Request::create('/' . $path);
if ($accept_header) {
$request->headers
->set('Accept', $accept_header);
}
$kernel = \Drupal::getContainer()
->get('http_kernel');
$response = $kernel
->handle($request);
$this
->assertTrue(TRUE, $message);
$this
->assertEquals(Response::HTTP_OK, $response
->getStatusCode());
$this
->assertStringContainsString($content_type, $response->headers
->get('Content-type'));
}
}
public function testFullNegotiation() {
$this
->enableModules([
'accept_header_routing_test',
]);
$tests = [
[
'conneg/negotiate',
'',
'text/html',
],
[
'conneg/negotiate',
'',
'text/html',
],
[
'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);
$kernel = \Drupal::getContainer()
->get('http_kernel');
$response = $kernel
->handle($request);
$this
->assertEquals(Response::HTTP_OK, $response
->getStatusCode(), "Testing path:{$path} Accept:{$accept_header} Content-type:{$content_type}");
}
}
}