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
|
<?php
namespace Illuminate\Tests\Database;
use Illuminate\Console\Command;
use Illuminate\Container\Container;
use Illuminate\Database\Seeder;
use Mockery as m;
use Mockery\Mock;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Output\OutputInterface;
class TestSeeder extends Seeder
{
public function run()
{
//
}
}
class TestDepsSeeder extends Seeder
{
public function run(Mock $someDependency, $someParam = '')
{
//
}
}
class DatabaseSeederTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testCallResolveTheClassAndCallsRun()
{
$seeder = new TestSeeder;
$seeder->setContainer($container = m::mock(Container::class));
$output = m::mock(OutputInterface::class);
$output->shouldReceive('writeln')->times(3);
$command = m::mock(Command::class);
$command->shouldReceive('getOutput')->times(3)->andReturn($output);
$seeder->setCommand($command);
$container->shouldReceive('make')->once()->with('ClassName')->andReturn($child = m::mock(Seeder::class));
$child->shouldReceive('setContainer')->once()->with($container)->andReturn($child);
$child->shouldReceive('setCommand')->once()->with($command)->andReturn($child);
$child->shouldReceive('__invoke')->once();
$seeder->call('ClassName');
}
public function testSetContainer()
{
$seeder = new TestSeeder;
$container = m::mock(Container::class);
$this->assertEquals($seeder->setContainer($container), $seeder);
}
public function testSetCommand()
{
$seeder = new TestSeeder;
$command = m::mock(Command::class);
$this->assertEquals($seeder->setCommand($command), $seeder);
}
public function testInjectDependenciesOnRunMethod()
{
$container = m::mock(Container::class);
$container->shouldReceive('call');
$seeder = new TestDepsSeeder;
$seeder->setContainer($container);
$seeder->__invoke();
$container->shouldHaveReceived('call')->once()->with([$seeder, 'run'], []);
}
public function testSendParamsOnCallMethodWithDeps()
{
$container = m::mock(Container::class);
$container->shouldReceive('call');
$seeder = new TestDepsSeeder;
$seeder->setContainer($container);
$seeder->__invoke(['test1', 'test2']);
$container->shouldHaveReceived('call')->once()->with([$seeder, 'run'], ['test1', 'test2']);
}
}
|