Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Load entity types and add cache tags and contexts in search api producer #857

Merged
merged 5 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,13 @@ protected function buildBaseQuery(

$query->range($offset, $limit);
$cacheContext->addCacheableDependency($searchIndex);
foreach ($searchIndex->getDatasources() as $datasource) {
$storage = $this->entityTypeManager->getStorage($datasource->getEntityTypeId());
$entityType = $storage->getEntityType();

$cacheContext->addCacheTags($entityType->getListCacheTags());
$cacheContext->addCacheContexts($entityType->getListCacheContexts());
}

return $query;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
<?php

namespace Drupal\Tests\thunder_gqls\Kernel\DataProducer;

use Drupal\search_api\Entity\Index;
use Drupal\search_api\Entity\Server;
use Drupal\Tests\graphql\Kernel\GraphQLTestBase;

/**
* Test entities_with_term data producer.
*
* @group Thunder
*/
class ThunderSearchApiTest extends GraphQLTestBase {

/**
* {@inheritdoc}
*/
protected static $modules = [
'search_api',
'search_api_test',
'thunder_gqls',
];

/**
* The search server used for testing.
*
* @var \Drupal\search_api\ServerInterface
*/
protected $searchApiServer;

/**
* The search index used for testing.
*
* @var \Drupal\search_api\IndexInterface
*/
protected $searchApiIndex;

/**
* {@inheritdoc}
*/
public function setUp(): void {
parent::setUp();

$this->installSchema('search_api', [
'search_api_item',
]);
$this->installEntitySchema('search_api_task');
$this->installConfig('search_api');

// Create a test server.
$this->searchApiServer = Server::create([
'name' => 'Test Server',
'id' => 'test_server',
'status' => 1,
'backend' => 'search_api_test',
]);
$this->searchApiServer->save();

$this->searchApiIndex = Index::create([
'name' => 'Test Index',
'id' => 'test_index',
'status' => 1,
'tracker_settings' => [
'default' => [],
],
'datasource_settings' => [
'entity:node' => [],
],
'server' => $this->searchApiServer->id(),
'options' => ['index_directly' => FALSE],
]);
$this->searchApiIndex->save();

$schema = <<<GQL
type Query {
search: SearchApiResult
}
type SearchApiResult {
total: Int!
}
GQL;

$this->setUpSchema($schema);
}

/**
* Test cache metadata for the query.
*/
public function testQueryCacheMetadata(): void {
$query = <<<GQL
query {
search {
total
}
}
GQL;

$this->mockResolver('Query', 'search',
$this->builder->produce('thunder_search_api')
->map('index', $this->builder->fromValue('test_index'))
->map('offset', $this->builder->fromValue(0))
->map('limit', $this->builder->fromValue(20))
);
$this->mockResolver('SearchApiResult', 'total', $this->builder->fromValue(1));

$metadata = $this->defaultCacheMetaData();
$metadata->setCacheContexts(['languages:language_interface', 'user.permissions', 'user.node_grants:view']);
$metadata->addCacheTags(['config:search_api.index.test_index', 'node_list']);

$this->assertResults($query, [], [
'search' => ['total' => '1'],
], $metadata);
}

}