-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathSchemaFactoryTest.php
270 lines (234 loc) · 10.8 KB
/
SchemaFactoryTest.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<?php
declare(strict_types=1);
namespace TheCodingMachine\GraphQLite;
use GraphQL\Error\DebugFlag;
use GraphQL\Executor\ExecutionResult;
use GraphQL\GraphQL;
use GraphQL\Type\SchemaConfig;
use Kcs\ClassFinder\Finder\ComposerFinder;
use Kcs\ClassFinder\Finder\RecursiveFinder;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Symfony\Component\Cache\Adapter\Psr16Adapter;
use Symfony\Component\Cache\Psr16Cache;
use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
use TheCodingMachine\GraphQLite\Containers\BasicAutoWiringContainer;
use TheCodingMachine\GraphQLite\Containers\EmptyContainer;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Controllers\ContactController;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Models\Comment;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Models\Company;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Models\Contact;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Models\Post;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Models\User;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Types\CompanyType;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Types\ContactFactory;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Types\ContactOtherType;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Types\ContactType;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Types\ExtendedContactType;
use TheCodingMachine\GraphQLite\Fixtures\Integration\Types\PostType;
use TheCodingMachine\GraphQLite\Fixtures\TestSelfType;
use TheCodingMachine\GraphQLite\Mappers\CompositeTypeMapper;
use TheCodingMachine\GraphQLite\Mappers\DuplicateMappingException;
use TheCodingMachine\GraphQLite\Mappers\Parameters\ParameterMiddlewarePipe;
use TheCodingMachine\GraphQLite\Mappers\Root\VoidRootTypeMapperFactory;
use TheCodingMachine\GraphQLite\Mappers\StaticClassListTypeMapperFactory;
use TheCodingMachine\GraphQLite\Middlewares\FieldMiddlewarePipe;
use TheCodingMachine\GraphQLite\Middlewares\InputFieldMiddlewarePipe;
use TheCodingMachine\GraphQLite\Security\VoidAuthenticationService;
use TheCodingMachine\GraphQLite\Security\VoidAuthorizationService;
class SchemaFactoryTest extends TestCase
{
public function testCreateSchema(): void
{
$container = new BasicAutoWiringContainer(new EmptyContainer());
$cache = new Psr16Cache(new ArrayAdapter());
$factory = new SchemaFactory($cache, $container);
$factory->setAuthenticationService(new VoidAuthenticationService());
$factory->setAuthorizationService(new VoidAuthorizationService());
$factory->addNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');
$factory->addQueryProvider(new AggregateQueryProvider([]));
$factory->addFieldMiddleware(new FieldMiddlewarePipe());
$factory->addInputFieldMiddleware(new InputFieldMiddlewarePipe());
$schema = $factory->createSchema();
$this->doTestSchema($schema);
}
public function testSetters(): void
{
$container = new BasicAutoWiringContainer(new EmptyContainer());
$cache = new Psr16Cache(new ArrayAdapter());
$factory = new SchemaFactory($cache, $container);
$factory->addNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');
$factory->setAuthenticationService(new VoidAuthenticationService())
->setAuthorizationService(new VoidAuthorizationService())
->setNamingStrategy(new NamingStrategy())
->addTypeMapper(new CompositeTypeMapper())
->addTypeMapperFactory(new StaticClassListTypeMapperFactory([TestSelfType::class]))
->addRootTypeMapperFactory(new VoidRootTypeMapperFactory())
->addParameterMiddleware(new ParameterMiddlewarePipe())
->addQueryProviderFactory(new AggregateControllerQueryProviderFactory([], $container))
->setSchemaConfig(new SchemaConfig())
->setExpressionLanguage(new ExpressionLanguage(new Psr16Adapter(new Psr16Cache(new ArrayAdapter()))))
->devMode()
->prodMode();
$schema = $factory->createSchema();
$this->doTestSchema($schema);
}
public function testFinderInjectionWithValidMapper(): void
{
$factory = new SchemaFactory(
new Psr16Cache(new ArrayAdapter()),
new BasicAutoWiringContainer(
new EmptyContainer(),
),
);
$factory->setAuthenticationService(new VoidAuthenticationService())
->setAuthorizationService(new VoidAuthorizationService())
->setFinder(new ComposerFinder())
->addNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');
$schema = $factory->createSchema();
$this->doTestSchema($schema);
}
public function testCreateSchemaOnlyWithFactories(): void
{
$container = new BasicAutoWiringContainer(new EmptyContainer());
$cache = new Psr16Cache(new ArrayAdapter());
$factory = new SchemaFactory($cache, $container);
$factory->setAuthenticationService(new VoidAuthenticationService());
$factory->setAuthorizationService(new VoidAuthorizationService());
$factory->addTypeMapperFactory(new StaticClassListTypeMapperFactory([
Contact::class,
ContactFactory::class,
ContactOtherType::class,
ContactType::class,
Comment::class,
Post::class,
PostType::class,
Company::class,
CompanyType::class,
ExtendedContactType::class,
User::class,
]));
$factory->addQueryProviderFactory(new AggregateControllerQueryProviderFactory([ContactController::class], $container));
$schema = $factory->createSchema();
$this->doTestSchema($schema);
}
public function testFinderInjectionWithInvalidMapper(): void
{
$factory = new SchemaFactory(
new Psr16Cache(new ArrayAdapter()),
new BasicAutoWiringContainer(
new EmptyContainer(),
),
);
$factory->setAuthenticationService(new VoidAuthenticationService())
->setAuthorizationService(new VoidAuthorizationService())
->setFinder(new RecursiveFinder(__DIR__ . '/Annotations'))
->addNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');
$this->doTestSchemaWithError($factory->createSchema());
}
public function testException(): void
{
$container = new BasicAutoWiringContainer(new EmptyContainer());
$cache = new Psr16Cache(new ArrayAdapter());
$factory = new SchemaFactory($cache, $container);
$this->expectException(GraphQLRuntimeException::class);
$factory->createSchema();
}
private function execTestQuery(Schema $schema): ExecutionResult
{
$schema->assertValid();
$queryString = '
query {
contacts {
name
uppercaseName
... on User {
email
}
}
}
';
return GraphQL::executeQuery(
$schema,
$queryString,
);
}
private function doTestSchemaWithError(Schema $schema): void
{
$result = $this->execTestQuery($schema);
$resultArr = $result->toArray(DebugFlag::RETHROW_INTERNAL_EXCEPTIONS);
$this->assertArrayHasKey('errors', $resultArr);
$this->assertArrayNotHasKey('data', $resultArr);
$this->assertCount(1, $resultArr);
$this->assertSame('Unknown type "User"', $resultArr['errors'][0]['message']);
}
private function doTestSchema(Schema $schema): void
{
$result = $this->execTestQuery($schema);
$resultArr = $result->toArray(DebugFlag::RETHROW_INTERNAL_EXCEPTIONS);
$this->assertArrayHasKey('data', $resultArr);
$this->assertSame([
'contacts' => [
[
'name' => 'Joe',
'uppercaseName' => 'JOE',
],
[
'name' => 'Bill',
'uppercaseName' => 'BILL',
'email' => '[email protected]',
],
],
], $resultArr['data']);
}
public function testDuplicateQueryException(): void
{
$factory = new SchemaFactory(
new Psr16Cache(new ArrayAdapter()),
new BasicAutoWiringContainer(
new EmptyContainer(),
),
);
$factory->setAuthenticationService(new VoidAuthenticationService())
->setAuthorizationService(new VoidAuthorizationService())
->addNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\DuplicateQueries')
->addNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');
$this->expectException(DuplicateMappingException::class);
$this->expectExceptionMessage("The query/mutation/field 'duplicateQuery' is declared twice in class 'TheCodingMachine\GraphQLite\Fixtures\DuplicateQueries\TestControllerWithDuplicateQuery'. First in 'TheCodingMachine\GraphQLite\Fixtures\DuplicateQueries\TestControllerWithDuplicateQuery::testDuplicateQuery1()', second in 'TheCodingMachine\GraphQLite\Fixtures\DuplicateQueries\TestControllerWithDuplicateQuery::testDuplicateQuery2()'");
$schema = $factory->createSchema();
$queryString = '
query {
duplicateQuery
}
';
GraphQL::executeQuery(
$schema,
$queryString,
);
}
public function testDuplicateQueryInTwoControllersException(): void
{
$factory = new SchemaFactory(
new Psr16Cache(new ArrayAdapter()),
new BasicAutoWiringContainer(
new EmptyContainer(),
),
);
$factory->setAuthenticationService(new VoidAuthenticationService())
->setAuthorizationService(new VoidAuthorizationService())
->addNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\DuplicateQueriesInTwoControllers')
->addNamespace('TheCodingMachine\\GraphQLite\\Fixtures\\Integration');
$this->expectException(DuplicateMappingException::class);
$this->expectExceptionMessage("The query/mutation 'duplicateQuery' is declared twice: in class 'TheCodingMachine\\GraphQLite\\Fixtures\\DuplicateQueriesInTwoControllers\\TestControllerWithDuplicateQuery1' and in class 'TheCodingMachine\\GraphQLite\\Fixtures\\DuplicateQueriesInTwoControllers\\TestControllerWithDuplicateQuery2");
$schema = $factory->createSchema();
$queryString = '
query {
duplicateQuery
}
';
GraphQL::executeQuery(
$schema,
$queryString,
);
}
}