1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests_old/MigrationTestCase.php

54 lines
2.1 KiB
PHP
Raw Normal View History

2007-09-19 20:28:23 +04:00
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.org>.
2007-09-19 20:28:23 +04:00
*/
/**
* Doctrine_Migration_TestCase
*
* @package Doctrine
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.org
2007-09-19 20:28:23 +04:00
* @since 1.0
* @version $Revision$
*/
class Doctrine_Migration_TestCase extends Doctrine_UnitTestCase
{
2007-09-19 23:33:00 +04:00
public function testMigration()
2007-10-16 00:39:44 +04:00
{
// New migration for the 'migration_classes' directory
2007-09-21 00:24:38 +04:00
$migration = new Doctrine_Migration('migration_classes');
2007-11-08 20:12:11 +03:00
// Make sure the current version is 0
$this->assertEqual($migration->getCurrentVersion(), 0);
// migrate to version latest version
$migration->migrate($migration->getLatestVersion());
// Make sure the current version is latest version
$this->assertEqual($migration->getCurrentVersion(), $migration->getLatestVersion());
2007-10-16 03:39:20 +04:00
2007-10-16 00:39:44 +04:00
// now migrate back to original version
$migration->migrate(0);
2007-11-08 20:12:11 +03:00
2007-10-16 00:39:44 +04:00
// Make sure the current version is 0
2007-09-21 00:24:38 +04:00
$this->assertEqual($migration->getCurrentVersion(), 0);
2007-09-19 23:33:00 +04:00
}
}