예제 #1
0
 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $name = $this->input->getOption('database');
     $total = $this->seeder->seed($this->resolver->connection($name), $this->path);
     if ($total == 0) {
         $this->info('Nothing to seed.');
     }
 }
예제 #2
0
 public function testTablesAreSeededFromSeedFiles()
 {
     $seeder = new Seeder($files = m::mock('Illuminate\\Filesystem'), $events = m::mock('Illuminate\\Events\\Dispatcher'));
     $files->shouldReceive('glob')->once()->with('path/*.php')->andReturn(array('path/b.php', 'path/a.php'));
     $files->shouldReceive('getRequire')->once()->with('path/a.php')->andReturn(array('table' => 'a_table', array('name' => 'Taylor')));
     $files->shouldReceive('getRequire')->once()->with('path/b.php')->andReturn(array(array('name' => 'Dayle')));
     $connection = m::mock('Illuminate\\Database\\Connection');
     $table = m::mock('Illuminate\\Database\\Query\\Builder');
     $connection->shouldReceive('table')->with('a_table')->andReturn($table);
     $table->shouldReceive('delete')->twice();
     $table->shouldReceive('insert')->once()->with(array(array('name' => 'Taylor')));
     $connection->shouldReceive('table')->with('b')->andReturn($table);
     $table->shouldReceive('insert')->once()->with(array(array('name' => 'Dayle')));
     $events->shouldReceive('fire')->once()->with('illuminate.seeding', array('a_table', 1));
     $events->shouldReceive('fire')->once()->with('illuminate.seeding', array('b', 1));
     $this->assertEquals(2, $seeder->seed($connection, 'path'));
 }