You are here

public function FilterTest::testInvalidFilterPathDueMissingMetaPrefixReferenceFieldWithMetaProperties in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php \Drupal\Tests\jsonapi\Kernel\Query\FilterTest::testInvalidFilterPathDueMissingMetaPrefixReferenceFieldWithMetaProperties()

@covers ::queryCondition

File

core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php, line 104

Class

FilterTest
@coversDefaultClass \Drupal\jsonapi\Query\Filter @group jsonapi @group jsonapi_query

Namespace

Drupal\Tests\jsonapi\Kernel\Query

Code

public function testInvalidFilterPathDueMissingMetaPrefixReferenceFieldWithMetaProperties() {
  $this
    ->expectException(CacheableBadRequestHttpException::class);
  $this
    ->expectExceptionMessage('Invalid nested filtering. The property `alt`, given in the path `photo.alt` belongs to the meta object of a relationship and must be preceded by `meta`.');
  $resource_type = $this->resourceTypeRepository
    ->get('node', 'painting');
  Filter::createFromQueryParameter([
    'photo.alt' => '',
  ], $resource_type, $this->fieldResolver);
}