-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIbexaTestCore.php
190 lines (159 loc) · 5.68 KB
/
IbexaTestCore.php
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);
namespace Ibexa\Contracts\Test\Core;
use Doctrine\DBAL\Connection;
use Ibexa\Contracts\Core\Persistence\TransactionHandler;
use Ibexa\Contracts\Core\Repository\ContentService;
use Ibexa\Contracts\Core\Repository\ContentTypeService;
use Ibexa\Contracts\Core\Repository\LanguageService;
use Ibexa\Contracts\Core\Repository\LocationService;
use Ibexa\Contracts\Core\Repository\ObjectStateService;
use Ibexa\Contracts\Core\Repository\PermissionResolver;
use Ibexa\Contracts\Core\Repository\RoleService;
use Ibexa\Contracts\Core\Repository\SearchService;
use Ibexa\Contracts\Core\Repository\SectionService;
use Ibexa\Contracts\Core\Repository\UserPreferenceService;
use Ibexa\Contracts\Core\Repository\UserService;
use Ibexa\Contracts\Core\Test\IbexaTestKernelInterface;
use Ibexa\Contracts\Core\Test\Persistence\Fixture\FixtureImporter;
use Ibexa\Core\Repository\Values\User\UserReference;
use Ibexa\Tests\Core\Repository\LegacySchemaImporter;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* @experimental
*
* @internal use IbexaTestCoreInterface instead.
*
* @see \Ibexa\Contracts\Test\Core\IbexaTestCoreInterface
*/
final class IbexaTestCore implements IbexaTestCoreInterface
{
public const ANONYMOUS_USER_ID = 10;
public const ADMIN_USER_ID = 14;
private ContainerInterface $container;
private IbexaTestKernelInterface $kernel;
public function __construct(ContainerInterface $container, IbexaTestKernelInterface $kernel)
{
$this->container = $container;
$this->kernel = $kernel;
}
public function loadSchema(): void
{
/** @var \Ibexa\Tests\Core\Repository\LegacySchemaImporter $schemaImporter */
$schemaImporter = $this->container->get(LegacySchemaImporter::class);
foreach ($this->getSchemaFiles() as $schemaFile) {
$schemaImporter->importSchema($schemaFile);
}
}
/**
* @return iterable<string>
*/
public function getSchemaFiles(): iterable
{
yield from $this->kernel->getSchemaFiles();
}
/**
* @throws \Doctrine\DBAL\DBALException
*/
public function loadFixtures(?callable $postLoadFixtures = null): void
{
/** @var \Ibexa\Contracts\Core\Test\Persistence\Fixture\FixtureImporter $fixtureImporter */
$fixtureImporter = $this->container->get(FixtureImporter::class);
foreach ($this->getFixtures() as $fixture) {
$fixtureImporter->import($fixture);
}
if (null !== $postLoadFixtures) {
$postLoadFixtures();
}
}
/**
* @return iterable<\Ibexa\Contracts\Core\Test\Persistence\Fixture>
*/
public function getFixtures(): iterable
{
yield from $this->kernel->getFixtures();
}
/**
* @template T of object
*
* @phpstan-param class-string<T> $className
*
* @return T
*/
public function getServiceByClassName(string $className, ?string $id = null, bool $prefix = true): object
{
$serviceId = $this->getTestServiceId($id, $className, $prefix);
$service = $this->container->get($serviceId);
assert(is_object($service) && is_a($service, $className));
return $service;
}
private function getTestServiceId(?string $id, string $className, bool $prefix): string
{
$id = $id ?? $className;
return $prefix ? $this->kernel::getAliasServiceId($id) : $id;
}
public function getDoctrineConnection(): Connection
{
return $this->getServiceByClassName(Connection::class);
}
public function getContentTypeService(): ContentTypeService
{
return $this->getServiceByClassName(ContentTypeService::class);
}
public function getContentService(): ContentService
{
return $this->getServiceByClassName(ContentService::class);
}
public function getLocationService(): LocationService
{
return $this->getServiceByClassName(LocationService::class);
}
public function getPermissionResolver(): PermissionResolver
{
return $this->getServiceByClassName(PermissionResolver::class);
}
public function getRoleService(): RoleService
{
return $this->getServiceByClassName(RoleService::class);
}
public function getSearchService(): SearchService
{
return $this->getServiceByClassName(SearchService::class);
}
public function getTransactionHandler(): TransactionHandler
{
return $this->getServiceByClassName(TransactionHandler::class);
}
public function getUserService(): UserService
{
return $this->getServiceByClassName(UserService::class);
}
public function getObjectStateService(): ObjectStateService
{
return $this->getServiceByClassName(ObjectStateService::class);
}
public function getLanguageService(): LanguageService
{
return $this->getServiceByClassName(LanguageService::class);
}
public function getSectionService(): SectionService
{
return $this->getServiceByClassName(SectionService::class);
}
public function getUserPreferenceService(): UserPreferenceService
{
return $this->getServiceByClassName(UserPreferenceService::class);
}
public function setAnonymousUser(): void
{
$this->getPermissionResolver()->setCurrentUserReference(new UserReference(self::ANONYMOUS_USER_ID));
}
public function setAdministratorUser(): void
{
$this->getPermissionResolver()->setCurrentUserReference(new UserReference(self::ADMIN_USER_ID));
}
}