5
5
use GraphQL \Error \Debug ;
6
6
use GraphQL \GraphQL ;
7
7
use GraphQL \Type \SchemaConfig ;
8
+ use Mouf \Composer \ClassNameMapper ;
8
9
use PHPUnit \Framework \TestCase ;
10
+ use Symfony \Component \Cache \Simple \ArrayCache ;
9
11
use Symfony \Component \Cache \Simple \PhpFilesCache ;
10
12
use TheCodingMachine \GraphQLite \Containers \BasicAutoWiringContainer ;
11
13
use TheCodingMachine \GraphQLite \Containers \EmptyContainer ;
12
14
use TheCodingMachine \GraphQLite \Hydrators \FactoryHydrator ;
15
+ use TheCodingMachine \GraphQLite \Mappers \CannotMapTypeException ;
13
16
use TheCodingMachine \GraphQLite \Mappers \CompositeTypeMapper ;
14
17
use TheCodingMachine \GraphQLite \Security \VoidAuthenticationService ;
15
18
use TheCodingMachine \GraphQLite \Security \VoidAuthorizationService ;
@@ -57,10 +60,47 @@ public function testSetters(): void
57
60
$ this ->doTestSchema ($ schema );
58
61
}
59
62
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
+
60
100
public function testException (): void
61
101
{
62
102
$ container = new BasicAutoWiringContainer (new EmptyContainer ());
63
- $ cache = new PhpFilesCache ();
103
+ $ cache = new ArrayCache ();
64
104
65
105
$ factory = new SchemaFactory ($ cache , $ container );
66
106
@@ -71,7 +111,7 @@ public function testException(): void
71
111
public function testException2 (): void
72
112
{
73
113
$ container = new BasicAutoWiringContainer (new EmptyContainer ());
74
- $ cache = new PhpFilesCache ();
114
+ $ cache = new ArrayCache ();
75
115
76
116
$ factory = new SchemaFactory ($ cache , $ container );
77
117
$ factory ->addTypeNamespace ('TheCodingMachine \\GraphQLite \\Fixtures \\Integration ' );
0 commit comments