Skip to content

Commit 7d8292b

Browse files
authored
Merge pull request #149 from flow-control/make-classNameMapper-injectable-in-3.0
Backport classNameMapper injectability from #144 to graphqlite v3
2 parents 8711488 + 6105db9 commit 7d8292b

4 files changed

+69
-8
lines changed

src/GlobControllerQueryProvider.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ final class GlobControllerQueryProvider implements QueryProviderInterface
3939
* @var ContainerInterface
4040
*/
4141
private $container;
42+
/**
43+
* @var ClassNameMapper
44+
*/
45+
private $classNameMapper;
4246
/**
4347
* @var AggregateControllerQueryProvider
4448
*/
@@ -69,10 +73,11 @@ final class GlobControllerQueryProvider implements QueryProviderInterface
6973
* @param int|null $cacheTtl
7074
* @param bool $recursive Whether subnamespaces of $namespace must be analyzed.
7175
*/
72-
public function __construct(string $namespace, FieldsBuilderFactory $fieldsBuilderFactory, RecursiveTypeMapperInterface $recursiveTypeMapper, ContainerInterface $container, LockFactory $lockFactory, CacheInterface $cache, ?int $cacheTtl = null, bool $recursive = true)
76+
public function __construct(string $namespace, FieldsBuilderFactory $fieldsBuilderFactory, RecursiveTypeMapperInterface $recursiveTypeMapper, ContainerInterface $container, LockFactory $lockFactory, CacheInterface $cache, ?ClassNameMapper $classNameMapper = null, ?int $cacheTtl = null, bool $recursive = true)
7377
{
7478
$this->namespace = $namespace;
7579
$this->container = $container;
80+
$this->classNameMapper = $classNameMapper ?? ClassNameMapper::createFromComposerFile(null, null, true);
7681
$this->cache = $cache;
7782
$this->cacheTtl = $cacheTtl;
7883
$this->fieldsBuilderFactory = $fieldsBuilderFactory;
@@ -126,7 +131,7 @@ private function getInstancesList(): array
126131
*/
127132
private function buildInstancesList(): array
128133
{
129-
$explorer = new GlobClassExplorer($this->namespace, $this->cache, $this->cacheTtl, ClassNameMapper::createFromComposerFile(null, null, true), $this->recursive);
134+
$explorer = new GlobClassExplorer($this->namespace, $this->cache, $this->cacheTtl, $this->classNameMapper, $this->recursive);
130135
$classes = $explorer->getClasses();
131136
$instances = [];
132137
foreach ($classes as $className) {

src/Mappers/GlobTypeMapper.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,20 @@ final class GlobTypeMapper implements TypeMapperInterface
126126
* @var LockFactory
127127
*/
128128
private $lockFactory;
129+
/**
130+
* @var ClassNameMapper
131+
*/
132+
private $classNameMapper;
129133

130134
/**
131135
* @param string $namespace The namespace that contains the GraphQL types (they must have a `@Type` annotation)
132136
*/
133-
public function __construct(string $namespace, TypeGenerator $typeGenerator, InputTypeGenerator $inputTypeGenerator, InputTypeUtils $inputTypeUtils, ContainerInterface $container, AnnotationReader $annotationReader, NamingStrategyInterface $namingStrategy, LockFactory $lockFactory, CacheInterface $cache, ?int $globTtl = 2, ?int $mapTtl = null, bool $recursive = true)
137+
public function __construct(string $namespace, TypeGenerator $typeGenerator, InputTypeGenerator $inputTypeGenerator, InputTypeUtils $inputTypeUtils, ContainerInterface $container, AnnotationReader $annotationReader, NamingStrategyInterface $namingStrategy, LockFactory $lockFactory, CacheInterface $cache, ClassNameMapper $classNameMapper = null, ?int $globTtl = 2, ?int $mapTtl = null, bool $recursive = true)
134138
{
135139
$this->namespace = $namespace;
136140
$this->typeGenerator = $typeGenerator;
137141
$this->container = $container;
142+
$this->classNameMapper = $classNameMapper ?? ClassNameMapper::createFromComposerFile(null, null, true);
138143
$this->annotationReader = $annotationReader;
139144
$this->namingStrategy = $namingStrategy;
140145
$this->cache = $cache;
@@ -288,7 +293,7 @@ private function getClassList(): array
288293
{
289294
if ($this->classes === null) {
290295
$this->classes = [];
291-
$explorer = new GlobClassExplorer($this->namespace, $this->cache, $this->globTtl, ClassNameMapper::createFromComposerFile(null, null, true), $this->recursive);
296+
$explorer = new GlobClassExplorer($this->namespace, $this->cache, $this->globTtl, $this->classNameMapper, $this->recursive);
292297
$classes = $explorer->getClasses();
293298
foreach ($classes as $className) {
294299
if (!\class_exists($className)) {

src/SchemaFactory.php

+13-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use Doctrine\Common\Cache\ApcuCache;
1111
use function extension_loaded;
1212
use GraphQL\Type\SchemaConfig;
13+
use Mouf\Composer\ClassNameMapper;
1314
use Psr\Container\ContainerInterface;
1415
use Psr\SimpleCache\CacheInterface;
1516
use Symfony\Component\Lock\Factory as LockFactory;
@@ -74,6 +75,10 @@ class SchemaFactory
7475
* @var ContainerInterface
7576
*/
7677
private $container;
78+
/**
79+
* @var ClassNameMapper
80+
*/
81+
private $classNameMapper;
7782
/**
7883
* @var SchemaConfig
7984
*/
@@ -180,6 +185,12 @@ public function setSchemaConfig(SchemaConfig $schemaConfig): self
180185
return $this;
181186
}
182187

188+
public function setClassNameMapper(ClassNameMapper $classNameMapper): self
189+
{
190+
$this->classNameMapper = $classNameMapper;
191+
return $this;
192+
}
193+
183194
public function createSchema(): Schema
184195
{
185196
$annotationReader = new AnnotationReader($this->getDoctrineAnnotationReader(), AnnotationReader::LAX_MODE);
@@ -210,7 +221,7 @@ public function createSchema(): Schema
210221

211222
foreach ($this->typeNamespaces as $typeNamespace) {
212223
$typeMappers[] = new GlobTypeMapper($typeNamespace, $typeGenerator, $inputTypeGenerator, $inputTypeUtils,
213-
$this->container, $annotationReader, $namingStrategy, $lockFactory, $this->cache);
224+
$this->container, $annotationReader, $namingStrategy, $lockFactory, $this->cache, $this->classNameMapper);
214225
}
215226

216227
foreach ($this->typeMappers as $typeMapper) {
@@ -229,7 +240,7 @@ public function createSchema(): Schema
229240
$queryProviders = [];
230241
foreach ($this->controllerNamespaces as $controllerNamespace) {
231242
$queryProviders[] = new GlobControllerQueryProvider($controllerNamespace, $fieldsBuilderFactory, $recursiveTypeMapper,
232-
$this->container, $lockFactory, $this->cache);
243+
$this->container, $lockFactory, $this->cache, $this->classNameMapper);
233244
}
234245

235246
foreach ($this->queryProviders as $queryProvider) {

tests/SchemaFactoryTest.php

+42-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@
55
use GraphQL\Error\Debug;
66
use GraphQL\GraphQL;
77
use GraphQL\Type\SchemaConfig;
8+
use Mouf\Composer\ClassNameMapper;
89
use PHPUnit\Framework\TestCase;
10+
use Symfony\Component\Cache\Simple\ArrayCache;
911
use Symfony\Component\Cache\Simple\PhpFilesCache;
1012
use TheCodingMachine\GraphQLite\Containers\BasicAutoWiringContainer;
1113
use TheCodingMachine\GraphQLite\Containers\EmptyContainer;
1214
use TheCodingMachine\GraphQLite\Hydrators\FactoryHydrator;
15+
use TheCodingMachine\GraphQLite\Mappers\CannotMapTypeException;
1316
use TheCodingMachine\GraphQLite\Mappers\CompositeTypeMapper;
1417
use TheCodingMachine\GraphQLite\Security\VoidAuthenticationService;
1518
use TheCodingMachine\GraphQLite\Security\VoidAuthorizationService;
@@ -57,10 +60,47 @@ public function testSetters(): void
5760
$this->doTestSchema($schema);
5861
}
5962

63+
public function testClassNameMapperInjectionWithValidMapper(): void
64+
{
65+
$factory = new SchemaFactory(
66+
new ArrayCache(),
67+
new BasicAutoWiringContainer(
68+
new EmptyContainer()
69+
)
70+
);
71+
$factory->setAuthenticationService(new VoidAuthenticationService())
72+
->setAuthorizationService(new VoidAuthorizationService())
73+
->setClassNameMapper(ClassNameMapper::createFromComposerFile(null, null, true))
74+
->addControllerNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration\\Controllers')
75+
->addTypeNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');
76+
77+
$schema = $factory->createSchema();
78+
79+
$this->doTestSchema($schema);
80+
}
81+
82+
public function testClassNameMapperInjectionWithInvalidMapper(): void
83+
{
84+
$factory = new SchemaFactory(
85+
new ArrayCache(),
86+
new BasicAutoWiringContainer(
87+
new EmptyContainer()
88+
)
89+
);
90+
$factory->setAuthenticationService(new VoidAuthenticationService())
91+
->setAuthorizationService(new VoidAuthorizationService())
92+
->setClassNameMapper(new ClassNameMapper())
93+
->addControllerNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration\\Controllers')
94+
->addTypeNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');
95+
96+
$this->expectException(\TypeError::class);
97+
$this->doTestSchema($factory->createSchema());
98+
}
99+
60100
public function testException(): void
61101
{
62102
$container = new BasicAutoWiringContainer(new EmptyContainer());
63-
$cache = new PhpFilesCache();
103+
$cache = new ArrayCache();
64104

65105
$factory = new SchemaFactory($cache, $container);
66106

@@ -71,7 +111,7 @@ public function testException(): void
71111
public function testException2(): void
72112
{
73113
$container = new BasicAutoWiringContainer(new EmptyContainer());
74-
$cache = new PhpFilesCache();
114+
$cache = new ArrayCache();
75115

76116
$factory = new SchemaFactory($cache, $container);
77117
$factory->addTypeNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');

0 commit comments

Comments
 (0)