-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathSeederTest.php
More file actions
80 lines (60 loc) · 2.27 KB
/
Copy pathSeederTest.php
File metadata and controls
80 lines (60 loc) · 2.27 KB
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
<?php
/*
* This file is part of the WouterJEloquentBundle package.
*
* (c) 2014 Wouter de Jong
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace WouterJ\EloquentBundle;
use Symfony\Component\DependencyInjection\ContainerInterface;
use WouterJ\EloquentBundle\MockeryTrait;
use PHPUnit\Framework\TestCase;
require_once __DIR__.'/Fixtures/ConsoleCommandFixture.php';
/**
* @author Wouter J <wouter@wouterj.nl>
*/
class SeederTest extends TestCase
{
use MockeryTrait;
protected $subject;
protected $container;
protected function setUp(): void
{
$this->container = \Mockery::mock(ContainerInterface::class);
$this->subject = new SeederTest_DummySeeder();
$this->subject->setSfContainer($this->container);
}
/** @test */
public function it_resolves_the_seeder_using_the_container()
{
$seeder = \Mockery::mock(Seeder::class);
$seeder->allows()->setSfContainer()->with($this->container);
Promise::containerHasService($this->container, 'foo_service', $seeder);
$this->assertEquals($seeder, $this->subject->resolve('foo_service'));
}
/** @test */
public function it_instantiates_the_seeder_without_container()
{
$class = __CLASS__.'_DummySeeder';
Promise::containerDoesNotHaveService($this->container, $class);
$this->assertInstanceOf($class, $this->subject->resolve($class));
}
/** @test */
public function it_fails_if_seeder_does_not_extend_base_seeder()
{
Promise::containerHasService($this->container, 'foo_service', new SeederTest_WrongSeeder());
$this->expectException(\LogicException::class);
$this->subject->resolve('foo_service');
}
public function it_fails_if_seeder_extends_illuminate_seeder()
{
Promise::containerHasService($this->container, 'foo_service', new SeerderTest_LaravelSeeder());
$this->setExpectedException('LogicException');
$this->subject->resolve('foo_service');
}
}
class SeederTest_DummySeeder extends Seeder { public function run() { } }
class SeederTest_WrongSeeder { }
class SeerderTest_LaravelSeeder extends \Illuminate\Database\Seeder { public function run() { } }