forked from api-platform/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathElasticsearchContext.php
More file actions
143 lines (117 loc) · 3.7 KB
/
ElasticsearchContext.php
File metadata and controls
143 lines (117 loc) · 3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\Tests\Behat;
use Behat\Behat\Context\Context;
use Elastic\Elasticsearch\Client;
use Elasticsearch\Client as V7Client;
use OpenSearch\Client as OpenSearchClient;
use Symfony\Component\Finder\Finder;
/**
* @experimental
*
* @author Baptiste Meyer <baptiste.meyer@gmail.com>
*/
final class ElasticsearchContext implements Context
{
public function __construct(
private readonly V7Client|Client|OpenSearchClient $client, // @phpstan-ignore-line
private readonly string $elasticsearchMappingsPath,
private readonly string $elasticsearchFixturesPath,
) {
}
/**
* @BeforeScenario
*/
public function initializeElasticsearch(): void
{
static $initialized = false;
if ($initialized) {
return;
}
$this->deleteIndexes();
$this->createIndexesAndMappings();
$this->loadFixtures();
$initialized = true;
}
/**
* @Given indexes and their mappings are created
*/
public function thereAreIndexes(): void
{
$this->createIndexesAndMappings();
}
/**
* @Given indexes are deleted
*/
public function thereAreNoIndexes(): void
{
$this->deleteIndexes();
}
/**
* @Given fixtures files are loaded
*/
public function thereAreFixtures(): void
{
$this->loadFixtures();
}
private function createIndexesAndMappings(): void
{
$finder = new Finder();
$finder->files()->in($this->elasticsearchMappingsPath);
foreach ($finder as $file) {
$this->client->indices()->create([ // @phpstan-ignore-line
'index' => $file->getBasename('.json'),
'body' => json_decode($file->getContents(), true, 512, \JSON_THROW_ON_ERROR),
]);
}
}
private function deleteIndexes(): void
{
$finder = new Finder();
$finder->files()->in($this->elasticsearchMappingsPath)->name('*.json');
$indexes = [];
foreach ($finder as $file) {
$indexes[] = $file->getBasename('.json');
}
if ([] !== $indexes) {
$this->client->indices()->delete([ // @phpstan-ignore-line
'index' => implode(',', $indexes),
'ignore_unavailable' => true,
]);
}
}
private function loadFixtures(): void
{
$finder = new Finder();
$finder->files()->in($this->elasticsearchFixturesPath)->name('*.json');
$indexClient = $this->client->indices(); // @phpstan-ignore-line
foreach ($finder as $file) {
$index = $file->getBasename('.json');
$bulk = [];
foreach (json_decode($file->getContents(), true, 512, \JSON_THROW_ON_ERROR) as $document) {
if (null === ($document['id'] ?? null)) {
$bulk[] = ['index' => ['_index' => $index]];
} else {
$bulk[] = ['create' => ['_index' => $index, '_id' => (string) $document['id']]];
}
$bulk[] = $document;
if (0 === (\count($bulk) % 50)) {
$this->client->bulk(['body' => $bulk]); // @phpstan-ignore-line
$bulk = [];
}
}
if ($bulk) {
$this->client->bulk(['body' => $bulk]); // @phpstan-ignore-line
}
$indexClient->refresh(['index' => $index]);
}
}
}