-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathIntegrationTest.php
164 lines (139 loc) · 6.41 KB
/
IntegrationTest.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
<?php
declare(strict_types=1);
namespace TheCodingMachine\GraphQLite\Validator;
use GraphQL\Error\DebugFlag;
use GraphQL\GraphQL;
use GraphQL\Type\Schema;
use Mouf\Picotainer\Picotainer;
use PHPUnit\Framework\TestCase;
use Psr\Container\ContainerInterface;
use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Symfony\Component\Cache\Psr16Cache;
use Symfony\Component\Translation\Translator;
use Symfony\Component\Validator\ContainerConstraintValidatorFactory;
use Symfony\Component\Validator\Validator\ValidatorInterface;
use Symfony\Component\Validator\ValidatorBuilder;
use Symfony\Contracts\Translation\TranslatorInterface;
use TheCodingMachine\GraphQLite\Containers\BasicAutoWiringContainer;
use TheCodingMachine\GraphQLite\Exceptions\WebonyxErrorHandler;
use TheCodingMachine\GraphQLite\SchemaFactory;
use TheCodingMachine\GraphQLite\Validator\Fixtures\Controllers\UserController;
use TheCodingMachine\GraphQLite\Validator\Mappers\Parameters\AssertParameterMiddleware;
use TheCodingMachine\GraphQLite\Validator\Mappers\Parameters\InvalidAssertionAnnotationException;
class IntegrationTest extends TestCase
{
private function getSchemaFactory(): SchemaFactory
{
$container = new Picotainer([
TranslatorInterface::class => static function (ContainerInterface $container) {
return new Translator('fr_FR');
},
ValidatorInterface::class => static function (ContainerInterface $container) {
$build = new ValidatorBuilder();
$build->enableAttributeMapping();
$build->setTranslator($container->get(TranslatorInterface::class));
return $build->getValidator();
},
UserController::class => static function (ContainerInterface $container) {
return new UserController($container->get(ValidatorInterface::class));
},
]);
$schemaFactory = new SchemaFactory(new Psr16Cache(new ArrayAdapter()), new BasicAutoWiringContainer($container));
$schemaFactory->addControllerNamespace('TheCodingMachine\GraphQLite\Validator\Fixtures\Controllers');
$schemaFactory->addTypeNamespace('TheCodingMachine\GraphQLite\Validator\Fixtures\Types');
$schemaFactory->addParameterMiddleware(new AssertParameterMiddleware(new ContainerConstraintValidatorFactory($container), $container->get(ValidatorInterface::class), $container->get(TranslatorInterface::class)));
return $schemaFactory;
}
private function getSchema(): Schema
{
return $this->getSchemaFactory()->createSchema();
}
public function testEndToEndThrowException(): void
{
$schema = $this->getSchema();
$schema->assertValid();
$queryString = '
mutation {
createUser(email: "foofgdjkerbrtehrthjker.com", password: "short") {
email
}
}
';
$result = GraphQL::executeQuery(
$schema,
$queryString,
);
$result->setErrorsHandler([WebonyxErrorHandler::class, 'errorHandler']);
$result->setErrorFormatter([WebonyxErrorHandler::class, 'errorFormatter']);
$errors = $result->toArray(DebugFlag::RETHROW_UNSAFE_EXCEPTIONS)['errors'];
$this->assertSame('The email \'"foofgdjkerbrtehrthjker.com"\' is not a valid email.', $errors[0]['message']);
$this->assertSame('email', $errors[0]['extensions']['field']);
$this->assertSame('Validate', $errors[0]['extensions']['category']);
$this->assertSame('This value is too short. It should have 8 characters or more.', $errors[1]['message']);
$this->assertSame('password', $errors[1]['extensions']['field']);
$this->assertSame('Validate', $errors[1]['extensions']['category']);
}
public function testEndToEndAssert(): void
{
$schema = $this->getSchema();
$schema->assertValid();
$queryString = '
{
findByMail(email: "notvalid") {
email
}
}
';
$result = GraphQL::executeQuery(
$schema,
$queryString,
);
$result->setErrorsHandler([WebonyxErrorHandler::class, 'errorHandler']);
$result->setErrorFormatter([WebonyxErrorHandler::class, 'errorFormatter']);
$errors = $result->toArray(DebugFlag::RETHROW_UNSAFE_EXCEPTIONS)['errors'];
// TODO: find why message is not in French...
$this->assertSame('This value is not a valid email address.', $errors[0]['message']);
$this->assertSame('email', $errors[0]['extensions']['field']);
$this->assertSame('Validate', $errors[0]['extensions']['category']);
$queryString = '
{
findByMail(email: "[email protected]") {
email
}
}
';
$result = GraphQL::executeQuery(
$schema,
$queryString,
);
$result->setErrorsHandler([WebonyxErrorHandler::class, 'errorHandler']);
$result->setErrorFormatter([WebonyxErrorHandler::class, 'errorFormatter']);
$data = $result->toArray(DebugFlag::RETHROW_UNSAFE_EXCEPTIONS)['data'];
$this->assertSame('[email protected]', $data['findByMail']['email']);
// Test default parameter
$queryString = '
{
findByMail {
email
}
}
';
$result = GraphQL::executeQuery(
$schema,
$queryString,
);
$result->setErrorsHandler([WebonyxErrorHandler::class, 'errorHandler']);
$result->setErrorFormatter([WebonyxErrorHandler::class, 'errorFormatter']);
$data = $result->toArray(DebugFlag::RETHROW_UNSAFE_EXCEPTIONS)['data'];
$this->assertSame('[email protected]', $data['findByMail']['email']);
}
public function testException(): void
{
$schemaFactory = $this->getSchemaFactory();
$schemaFactory->addControllerNamespace('TheCodingMachine\GraphQLite\Validator\Fixtures\InvalidControllers');
$schema = $schemaFactory->createSchema();
$this->expectException(InvalidAssertionAnnotationException::class);
$this->expectExceptionMessage('In method TheCodingMachine\GraphQLite\Validator\Fixtures\InvalidControllers\InvalidController::invalid(), the @Assert annotation is targeting parameter "$resolveInfo". You cannot target this parameter because it is not part of the GraphQL Input type. You can only assert parameters coming from the end user.');
$schema->validate();
}
}