getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); $this->assertNull($migrationStub->up()); } public function testDown() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); $this->assertNull($migrationStub->down()); } public function testAdapterMethods() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); // test methods $this->assertNull($migrationStub->getAdapter()); $migrationStub->setAdapter($adapterStub); $this->assertTrue($migrationStub->getAdapter() instanceof AdapterInterface); } public function testSetOutputMethods() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub output $outputStub = $this->getMock('\Symfony\Component\Console\Output\OutputInterface', array(), array(array())); // test methods $this->assertNull($migrationStub->getOutput()); $migrationStub->setOutput($outputStub); $this->assertInstanceOf('\Symfony\Component\Console\Output\OutputInterface', $migrationStub->getOutput()); } public function testGetName() { $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); $this->assertFalse(!(strpos($migrationStub->getName(), 'AbstractMigration'))); } public function testVersionMethods() { $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(20120103080000)); $this->assertEquals(20120103080000, $migrationStub->getVersion()); $migrationStub->setVersion(20120915093312); $this->assertEquals(20120915093312, $migrationStub->getVersion()); } public function testExecute() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $adapterStub->expects($this->once()) ->method('execute') ->will($this->returnValue(2)); $migrationStub->setAdapter($adapterStub); $this->assertEquals(2, $migrationStub->execute('SELECT FOO FROM BAR')); } public function testQuery() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $adapterStub->expects($this->once()) ->method('query') ->will($this->returnValue(array(array('0' => 'bar', 'foo' => 'bar')))); $migrationStub->setAdapter($adapterStub); $this->assertEquals(array(array('0' => 'bar', 'foo' => 'bar')), $migrationStub->query('SELECT FOO FROM BAR')); } public function testFetchRow() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $adapterStub->expects($this->once()) ->method('fetchRow') ->will($this->returnValue(array('0' => 'bar', 'foo' => 'bar'))); $migrationStub->setAdapter($adapterStub); $this->assertEquals(array('0' => 'bar', 'foo' => 'bar'), $migrationStub->fetchRow('SELECT FOO FROM BAR')); } public function testFetchAll() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $adapterStub->expects($this->once()) ->method('fetchAll') ->will($this->returnValue(array(array('0' => 'bar', 'foo' => 'bar')))); $migrationStub->setAdapter($adapterStub); $this->assertEquals(array(array('0' => 'bar', 'foo' => 'bar')), $migrationStub->fetchAll('SELECT FOO FROM BAR')); } public function testCreateDatabase() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $adapterStub->expects($this->once()) ->method('createDatabase') ->will($this->returnValue(array(array('0' => 'bar', 'foo' => 'bar')))); $migrationStub->setAdapter($adapterStub); $migrationStub->createDatabase('testdb', array()); } public function testDropDatabase() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $adapterStub->expects($this->once()) ->method('dropDatabase') ->will($this->returnValue(array(array('0' => 'bar', 'foo' => 'bar')))); $migrationStub->setAdapter($adapterStub); $migrationStub->dropDatabase('testdb'); } public function testHasTable() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $adapterStub->expects($this->once()) ->method('hasTable') ->will($this->returnValue(true)); $migrationStub->setAdapter($adapterStub); $this->assertTrue($migrationStub->hasTable('test_table')); } public function testTableMethod() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $migrationStub->setAdapter($adapterStub); $this->assertTrue($migrationStub->table('test_table') instanceof Table); } public function testDropTableMethod() { // stub migration $migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', array(0)); // stub adapter $adapterStub = $this->getMock('\Phinx\Db\Adapter\PdoAdapter', array(), array(array())); $adapterStub->expects($this->once()) ->method('dropTable'); $migrationStub->setAdapter($adapterStub); $migrationStub->dropTable('test_table'); } }