View source
<?php
namespace Drupal\Tests\jsonapi\Unit\Query;
use Drupal\Core\Cache\Context\CacheContextsManager;
use Drupal\Core\DependencyInjection\Container;
use Drupal\jsonapi\Query\Sort;
use Drupal\Tests\UnitTestCase;
use Prophecy\Argument;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
class SortTest extends UnitTestCase {
protected function setUp() {
parent::setUp();
$container = new Container();
$cache_context_manager = $this
->prophesize(CacheContextsManager::class);
$cache_context_manager
->assertValidTokens(Argument::any())
->willReturn(TRUE);
$container
->set('cache_contexts_manager', $cache_context_manager
->reveal());
\Drupal::setContainer($container);
}
public function testCreateFromQueryParameter($input, $expected) {
$sort = Sort::createFromQueryParameter($input);
foreach ($sort
->fields() as $index => $sort_field) {
$this
->assertEquals($expected[$index]['path'], $sort_field['path']);
$this
->assertEquals($expected[$index]['direction'], $sort_field['direction']);
$this
->assertEquals($expected[$index]['langcode'], $sort_field['langcode']);
}
}
public function parameterProvider() {
return [
[
'lorem',
[
[
'path' => 'lorem',
'direction' => 'ASC',
'langcode' => NULL,
],
],
],
[
'-lorem',
[
[
'path' => 'lorem',
'direction' => 'DESC',
'langcode' => NULL,
],
],
],
[
'-lorem,ipsum',
[
[
'path' => 'lorem',
'direction' => 'DESC',
'langcode' => NULL,
],
[
'path' => 'ipsum',
'direction' => 'ASC',
'langcode' => NULL,
],
],
],
[
'-lorem,-ipsum',
[
[
'path' => 'lorem',
'direction' => 'DESC',
'langcode' => NULL,
],
[
'path' => 'ipsum',
'direction' => 'DESC',
'langcode' => NULL,
],
],
],
[
[
[
'path' => 'lorem',
'langcode' => NULL,
],
[
'path' => 'ipsum',
'langcode' => 'ca',
],
[
'path' => 'dolor',
'direction' => 'ASC',
'langcode' => 'ca',
],
[
'path' => 'sit',
'direction' => 'DESC',
'langcode' => 'ca',
],
],
[
[
'path' => 'lorem',
'direction' => 'ASC',
'langcode' => NULL,
],
[
'path' => 'ipsum',
'direction' => 'ASC',
'langcode' => 'ca',
],
[
'path' => 'dolor',
'direction' => 'ASC',
'langcode' => 'ca',
],
[
'path' => 'sit',
'direction' => 'DESC',
'langcode' => 'ca',
],
],
],
];
}
public function testCreateFromQueryParameterFail($input) {
$this
->expectException(BadRequestHttpException::class);
Sort::createFromQueryParameter($input);
}
public function badParameterProvider() {
return [
[
[
[
'lorem',
],
],
],
[
'',
],
];
}
}