4
4
5
5
namespace LaravelDoctrineTest \ORM \Feature ;
6
6
7
+ use Doctrine \DBAL \Driver \Connection ;
7
8
use Doctrine \ORM \Configuration ;
8
9
use Doctrine \ORM \EntityManagerInterface ;
9
10
use Doctrine \ORM \EntityRepository ;
17
18
use LaravelDoctrineTest \ORM \TestCase ;
18
19
use Mockery as m ;
19
20
use RuntimeException ;
20
- use stdClass ;
21
21
use Throwable ;
22
22
23
23
class IlluminateRegistryTest extends TestCase
@@ -111,9 +111,9 @@ public function testCanGetDefaultConnection(): void
111
111
112
112
$ this ->container ->shouldReceive ('make ' )
113
113
->with ('doctrine.connections.default ' )
114
- ->andReturn (' connection ' );
114
+ ->andReturn ($ conn = m:: mock (Connection::class) );
115
115
116
- $ this ->assertEquals (' connection ' , $ this ->registry ->getConnection ());
116
+ $ this ->assertEquals ($ conn , $ this ->registry ->getConnection ());
117
117
$ this ->assertEquals ($ this ->registry ->getConnection ('default ' ), $ this ->registry ->getConnection ());
118
118
}
119
119
@@ -124,9 +124,9 @@ public function testCanGetCustomConnection(): void
124
124
125
125
$ this ->container ->shouldReceive ('make ' )
126
126
->with ('doctrine.connections.custom ' )
127
- ->andReturn (' connection ' );
127
+ ->andReturn ($ conn = m:: mock (Connection::class) );
128
128
129
- $ this ->assertEquals (' connection ' , $ this ->registry ->getConnection ('custom ' ));
129
+ $ this ->assertEquals ($ conn , $ this ->registry ->getConnection ('custom ' ));
130
130
}
131
131
132
132
public function testCannotNonExistingConnection (): void
@@ -145,7 +145,7 @@ public function testConnectionGetsOnlyResolvedOnce(): void
145
145
$ this ->container ->shouldReceive ('make ' )
146
146
->once ()// container@make will only be called once
147
147
->with ('doctrine.connections.default ' )
148
- ->andReturn (' connection ' );
148
+ ->andReturn (m:: mock (Connection::class) );
149
149
150
150
$ this ->registry ->getConnection ();
151
151
$ this ->registry ->getConnection ();
@@ -182,20 +182,20 @@ public function testCanGetAllConnections(): void
182
182
183
183
$ this ->container ->shouldReceive ('make ' )
184
184
->with ('doctrine.connections.default ' )
185
- ->andReturn (' connection1 ' );
185
+ ->andReturn ($ conn1 = m:: mock (Connection::class) );
186
186
187
187
$ this ->container ->shouldReceive ('make ' )
188
188
->with ('doctrine.connections.custom ' )
189
- ->andReturn (' connection2 ' );
189
+ ->andReturn ($ conn2 = m:: mock (Connection::class) );
190
190
191
191
$ this ->registry ->addConnection ('default ' );
192
192
$ this ->registry ->addConnection ('custom ' );
193
193
194
194
$ connections = $ this ->registry ->getConnections ();
195
195
196
196
$ this ->assertCount (2 , $ connections );
197
- $ this ->assertContains (' connection1 ' , $ connections );
198
- $ this ->assertContains (' connection2 ' , $ connections );
197
+ $ this ->assertContains ($ conn1 , $ connections );
198
+ $ this ->assertContains ($ conn2 , $ connections );
199
199
}
200
200
201
201
public function testCanGetDefaultManager (): void
@@ -205,9 +205,9 @@ public function testCanGetDefaultManager(): void
205
205
206
206
$ this ->container ->shouldReceive ('make ' )
207
207
->with ('doctrine.managers.default ' )
208
- ->andReturn (' manager ' );
208
+ ->andReturn ($ em = m:: mock (ObjectManager::class) );
209
209
210
- $ this ->assertEquals (' manager ' , $ this ->registry ->getManager ());
210
+ $ this ->assertEquals ($ em , $ this ->registry ->getManager ());
211
211
$ this ->assertEquals ($ this ->registry ->getManager ('default ' ), $ this ->registry ->getManager ());
212
212
}
213
213
@@ -218,9 +218,9 @@ public function testCanGetCustomManager(): void
218
218
219
219
$ this ->container ->shouldReceive ('make ' )
220
220
->with ('doctrine.managers.custom ' )
221
- ->andReturn (' connection ' );
221
+ ->andReturn ($ em = m:: mock (ObjectManager::class) );
222
222
223
- $ this ->assertEquals (' connection ' , $ this ->registry ->getManager ('custom ' ));
223
+ $ this ->assertEquals ($ em , $ this ->registry ->getManager ('custom ' ));
224
224
}
225
225
226
226
public function testCannotNonExistingManager (): void
@@ -239,7 +239,7 @@ public function testManagerGetsOnlyResolvedOnce(): void
239
239
$ this ->container ->shouldReceive ('make ' )
240
240
->once ()// container@make will only be called once
241
241
->with ('doctrine.managers.default ' )
242
- ->andReturn (' manager ' );
242
+ ->andReturn ($ em = m:: mock (ObjectManager::class) );
243
243
244
244
$ this ->registry ->getManager ();
245
245
$ this ->registry ->getManager ();
@@ -276,20 +276,20 @@ public function testCanGetAllManagers(): void
276
276
277
277
$ this ->container ->shouldReceive ('make ' )
278
278
->with ('doctrine.managers.default ' )
279
- ->andReturn (' manager1 ' );
279
+ ->andReturn ($ em1 = m:: mock (ObjectManager::class) );
280
280
281
281
$ this ->container ->shouldReceive ('make ' )
282
282
->with ('doctrine.managers.custom ' )
283
- ->andReturn (' manager2 ' );
283
+ ->andReturn ($ em2 = m:: mock (ObjectManager::class) );
284
284
285
285
$ this ->registry ->addManager ('default ' );
286
286
$ this ->registry ->addManager ('custom ' );
287
287
288
288
$ managers = $ this ->registry ->getManagers ();
289
289
290
290
$ this ->assertCount (2 , $ managers );
291
- $ this ->assertContains (' manager1 ' , $ managers );
292
- $ this ->assertContains (' manager2 ' , $ managers );
291
+ $ this ->assertContains ($ em1 , $ managers );
292
+ $ this ->assertContains ($ em2 , $ managers );
293
293
}
294
294
295
295
public function testCanPurgeDefaultManager (): void
@@ -574,7 +574,7 @@ public function testGetManagerAfterResetShouldReturnNewManager(): void
574
574
575
575
$ this ->container ->shouldReceive ('make ' )
576
576
->with ('doctrine.managers.default ' )
577
- ->andReturn (new stdClass ( ), new stdClass ( ));
577
+ ->andReturn (m:: mock (ObjectManager::class ), m:: mock (ObjectManager::class ));
578
578
579
579
$ first = $ this ->registry ->getManager ();
580
580
0 commit comments