1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-06-30 21:55:05 +03:00
kohana-migrations/tests/minion/migration/model.php
Matt Button e0fe87f443 Starting to refactor stuff.
Renaming locations -> groups
Cut down the size of fetch_required_migrations()
2011-02-17 20:43:04 +00:00

225 lines
5.1 KiB
PHP

<?php
/**
* Test for the migration model
*
* @group minion
* @group minion.tasks
* @group minion.tasks.migrations
*/
class Minion_Migration_ModelTest extends Kohana_Unittest_Database_TestCase
{
/**
* Runs before the test class as a whole is ran
* Creates the test table
*/
public static function setUpBeforeClass()
{
$sql = file_get_contents(Kohana::find_file('', 'minion_schema', 'sql'));
$sql = str_replace('`minion_migrations`', '`test_minion_migrations`', $sql);
Database::instance()->query(NULL, 'DROP TABLE IF EXISTS `test_minion_migrations`');
Database::instance()->query(NULL, $sql);
}
/**
* Removes the test tables after the tests have finished
*/
public static function tearDownAfterClass()
{
Database::instance()->query(NULL, 'DROP TABLE `test_minion_migrations`');
}
/**
* Gets the dataset that should be used to populate db
*
* @return PHPUnit_Extensions_Database_DataSet_IDataSet
*/
public function getDataSet()
{
return $this->createFlatXMLDataSet(
Kohana::find_file('tests/datasets', 'minion/migration/model', 'xml')
);
}
/**
* Get an instance of the migration model, pre-loaded with a connection to
* the test database
*
* @return Model_Minion_Migration
*/
public function getModel()
{
$model = new Model_Minion_Migration($this->getKohanaConnection());
return $model->table('test_minion_migrations');
}
/**
* Tests that the model can fetch all rows from the database
*
* @test
* @covers Model_Minion_Migration::fetch_all
*/
public function test_fetch_all()
{
$migrations = $this->getModel()->fetch_all();
$this->assertSame(7, count($migrations));
}
/**
* Test that the model accurately fetches the latest versions from the database
*
* @test
* @covers Model_Minion_Migration::fetch_current_versions
*/
public function test_fetch_current_versions()
{
$versions = $this->getModel()
->fetch_current_versions('group', 'timestamp');
$this->assertSame(
array (
'app' => '20101216080000',
'dblogger' => '20101225000000',
),
$versions
);
}
/**
* Provides test data for test_get_migration
*
* @return array
*/
public function provider_get_migration()
{
return array(
array(
array(
'timestamp' => '20101215164400',
'description' => 'create-tables',
'group' => 'app',
'applied' => '1',
'id' => 'app:20101215164400'
),
'app',
'20101215164400',
)
);
}
/**
* Tests that Model_Minion_Migration::get_migration can get a migration from
* the database
*
* @test
* @covers Model_Minion_Migration::get_migration
* @dataProvider provider_get_migration
* @param array Expected migration
* @param string The migration's group
* @param string The migration's timestamp
*/
public function test_get_migration($expected, $group, $timestamp)
{
$this->assertSame(
$expected,
$this->getModel()->get_migration($group, $timestamp)
);
}
/**
* Provides test data for test_get_migration_throws_exception_on_invalid_input
*
* @return array
*/
public function provider_get_migration_throws_exception_on_invalid_input()
{
return array(
array(NULL, NULL),
array('app', NULL),
);
}
/**
* If invalid input is passed to get_migration then it should throw an
* exception
*
* @test
* @covers Model_Minion_Migration::get_migration
* @dataProvider provider_get_migration_throws_exception_on_invalid_input
* @expectedException Kohana_Exception
*/
public function test_get_migration_throws_exception_on_invalid_input($group, $timestamp)
{
$this->getModel()->get_migration($group, $timestamp);
}
/**
* Provides test data for test_mark_migration
*
* @return array
*/
public function provider_mark_migration()
{
return array(
array(
array(
'timestamp' => '20101215165000',
'description' => 'add-name-column-to-members',
'group' => 'app',
'applied' => '1',
'id' => 'app:20101215165000',
),
array(
'timestamp' => '20101215165000',
'group' => 'app',
'description' => 'add-name-column-to-members',
),
TRUE
),
array(
array(
'timestamp' => '20101215165000',
'description' => 'add-name-column-to-members',
'group' => 'app',
'applied' => '0',
'id' => 'app:20101215165000',
),
array(
'timestamp' => '20101215165000',
'group' => 'app',
'description' => 'add-name-column-to-members',
),
FALSE
),
);
}
/**
* Tests that Model_Minion_Migration::mark_migration() changes the applied
* status of a migration
*
* @test
* @covers Model_Minion_Migration::mark_migration
* @dataProvider provider_mark_migration
* @param array What the DB record should look like after migration is marked
* @param array The migration to update
* @param bool Whether the migration should be applied
*/
public function test_mark_migration($expected, $migration, $applied)
{
$model = $this->getModel();
$model->mark_migration($migration, $applied);
$this->assertSame(
$expected,
$model->get_migration($migration['group'], $migration['timestamp'])
);
}
}