Skip to content

Commit 28d17f4

Browse files
authored
Merge pull request #660 from 77web/fix/3.1.x-tests
fixed failing tests for 3.1.x branch
2 parents 39253e8 + 429a406 commit 28d17f4

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

tests/Feature/IlluminateRegistryTest.php

+20-20
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace LaravelDoctrineTest\ORM\Feature;
66

7+
use Doctrine\DBAL\Driver\Connection;
78
use Doctrine\ORM\Configuration;
89
use Doctrine\ORM\EntityManagerInterface;
910
use Doctrine\ORM\EntityRepository;
@@ -17,7 +18,6 @@
1718
use LaravelDoctrineTest\ORM\TestCase;
1819
use Mockery as m;
1920
use RuntimeException;
20-
use stdClass;
2121
use Throwable;
2222

2323
class IlluminateRegistryTest extends TestCase
@@ -111,9 +111,9 @@ public function testCanGetDefaultConnection(): void
111111

112112
$this->container->shouldReceive('make')
113113
->with('doctrine.connections.default')
114-
->andReturn('connection');
114+
->andReturn($conn = m::mock(Connection::class));
115115

116-
$this->assertEquals('connection', $this->registry->getConnection());
116+
$this->assertEquals($conn, $this->registry->getConnection());
117117
$this->assertEquals($this->registry->getConnection('default'), $this->registry->getConnection());
118118
}
119119

@@ -124,9 +124,9 @@ public function testCanGetCustomConnection(): void
124124

125125
$this->container->shouldReceive('make')
126126
->with('doctrine.connections.custom')
127-
->andReturn('connection');
127+
->andReturn($conn = m::mock(Connection::class));
128128

129-
$this->assertEquals('connection', $this->registry->getConnection('custom'));
129+
$this->assertEquals($conn, $this->registry->getConnection('custom'));
130130
}
131131

132132
public function testCannotNonExistingConnection(): void
@@ -145,7 +145,7 @@ public function testConnectionGetsOnlyResolvedOnce(): void
145145
$this->container->shouldReceive('make')
146146
->once()// container@make will only be called once
147147
->with('doctrine.connections.default')
148-
->andReturn('connection');
148+
->andReturn(m::mock(Connection::class));
149149

150150
$this->registry->getConnection();
151151
$this->registry->getConnection();
@@ -182,20 +182,20 @@ public function testCanGetAllConnections(): void
182182

183183
$this->container->shouldReceive('make')
184184
->with('doctrine.connections.default')
185-
->andReturn('connection1');
185+
->andReturn($conn1 = m::mock(Connection::class));
186186

187187
$this->container->shouldReceive('make')
188188
->with('doctrine.connections.custom')
189-
->andReturn('connection2');
189+
->andReturn($conn2 = m::mock(Connection::class));
190190

191191
$this->registry->addConnection('default');
192192
$this->registry->addConnection('custom');
193193

194194
$connections = $this->registry->getConnections();
195195

196196
$this->assertCount(2, $connections);
197-
$this->assertContains('connection1', $connections);
198-
$this->assertContains('connection2', $connections);
197+
$this->assertContains($conn1, $connections);
198+
$this->assertContains($conn2, $connections);
199199
}
200200

201201
public function testCanGetDefaultManager(): void
@@ -205,9 +205,9 @@ public function testCanGetDefaultManager(): void
205205

206206
$this->container->shouldReceive('make')
207207
->with('doctrine.managers.default')
208-
->andReturn('manager');
208+
->andReturn($em = m::mock(ObjectManager::class));
209209

210-
$this->assertEquals('manager', $this->registry->getManager());
210+
$this->assertEquals($em, $this->registry->getManager());
211211
$this->assertEquals($this->registry->getManager('default'), $this->registry->getManager());
212212
}
213213

@@ -218,9 +218,9 @@ public function testCanGetCustomManager(): void
218218

219219
$this->container->shouldReceive('make')
220220
->with('doctrine.managers.custom')
221-
->andReturn('connection');
221+
->andReturn($em = m::mock(ObjectManager::class));
222222

223-
$this->assertEquals('connection', $this->registry->getManager('custom'));
223+
$this->assertEquals($em, $this->registry->getManager('custom'));
224224
}
225225

226226
public function testCannotNonExistingManager(): void
@@ -239,7 +239,7 @@ public function testManagerGetsOnlyResolvedOnce(): void
239239
$this->container->shouldReceive('make')
240240
->once()// container@make will only be called once
241241
->with('doctrine.managers.default')
242-
->andReturn('manager');
242+
->andReturn($em = m::mock(ObjectManager::class));
243243

244244
$this->registry->getManager();
245245
$this->registry->getManager();
@@ -276,20 +276,20 @@ public function testCanGetAllManagers(): void
276276

277277
$this->container->shouldReceive('make')
278278
->with('doctrine.managers.default')
279-
->andReturn('manager1');
279+
->andReturn($em1 = m::mock(ObjectManager::class));
280280

281281
$this->container->shouldReceive('make')
282282
->with('doctrine.managers.custom')
283-
->andReturn('manager2');
283+
->andReturn($em2 = m::mock(ObjectManager::class));
284284

285285
$this->registry->addManager('default');
286286
$this->registry->addManager('custom');
287287

288288
$managers = $this->registry->getManagers();
289289

290290
$this->assertCount(2, $managers);
291-
$this->assertContains('manager1', $managers);
292-
$this->assertContains('manager2', $managers);
291+
$this->assertContains($em1, $managers);
292+
$this->assertContains($em2, $managers);
293293
}
294294

295295
public function testCanPurgeDefaultManager(): void
@@ -574,7 +574,7 @@ public function testGetManagerAfterResetShouldReturnNewManager(): void
574574

575575
$this->container->shouldReceive('make')
576576
->with('doctrine.managers.default')
577-
->andReturn(new stdClass(), new stdClass());
577+
->andReturn(m::mock(ObjectManager::class), m::mock(ObjectManager::class));
578578

579579
$first = $this->registry->getManager();
580580

0 commit comments

Comments
 (0)