SchemaTestCase.php 4.12 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?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
19
 * <http://www.phpdoctrine.org>.
20 21 22
 */

/**
23
 * Doctrine_Import_Schema_TestCase
24 25 26 27 28
 *
 * @package     Doctrine
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @category    Object Relational Mapping
29
 * @link        www.phpdoctrine.org
30 31 32
 * @since       1.0
 * @version     $Revision$
 */
33
class Doctrine_Import_Schema_TestCase extends Doctrine_UnitTestCase 
34
{
35 36 37
    public $buildSchema;
    public $schema;
    
38 39
    public function testYmlImport()
    {
40 41
        $import = new Doctrine_Import_Schema();
        $import->importSchema('schema.yml', 'yml', 'classes');
42
        
Jonathan.Wage's avatar
Jonathan.Wage committed
43
        if ( ! file_exists('classes/User.php')) {
44 45 46
            $this->fail();
        }
        
47
        if ( ! file_exists('classes/Profile.php')) {
48
            $this->fail();
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
        }
    }
    
    public function testBuildSchema()
    {
        $schema = new Doctrine_Import_Schema();
        $array = $schema->buildSchema('schema.yml', 'yml');
        
        $model = $array['User'];

        $this->assertTrue(array_key_exists('connection', $model));
        $this->assertTrue(array_key_exists('className', $model));
        $this->assertTrue(array_key_exists('tableName', $model));
        $this->assertTrue(array_key_exists('columns', $model) && is_array($model['columns']));
        $this->assertTrue(array_key_exists('relations', $model) && is_array($model['relations']));
        $this->assertTrue(array_key_exists('indexes', $model) && is_array($model['indexes']));
        $this->assertTrue(array_key_exists('attributes', $model) && is_array($model['attributes']));
        $this->assertTrue(array_key_exists('templates', $model) && is_array($model['columns']));
        $this->assertTrue(array_key_exists('actAs', $model) && is_array($model['actAs']));
        $this->assertTrue(array_key_exists('options', $model) && is_array($model['options']));
        $this->assertTrue(array_key_exists('package', $model));
    }
    
    public function testSchemaRelationshipCompletion()
    {
        $this->buildSchema = new Doctrine_Import_Schema();
        $this->schema = $this->buildSchema->buildSchema('schema.yml', 'yml');
        
        foreach ($this->schema as $name => $properties) {
78 79
            foreach ($properties['relations'] as $alias => $relation) {
                if ( ! $this->_verifyMultiDirectionalRelationship($name, $alias, $relation)) {
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
                    $this->fail();
                    
                    return false;
                }
            }
        }
        
        $this->pass();
    }
    
    protected function _verifyMultiDirectionalRelationship($class, $relationAlias, $relation)
    {
        $foreignClass = $relation['class'];
        $foreignAlias = isset($relation['foreignAlias']) ? $relation['foreignAlias']:$class;
        
95
        $foreignClassRelations = $this->schema[$foreignClass]['relations'];
96 97 98 99
        
        // Check to see if the foreign class has the opposite end defined for the class/foreignAlias
        if (isset($foreignClassRelations[$foreignAlias])) {
            return true;
100
        } else {
101
            return false;
102 103
        }
    }
Jonathan.Wage's avatar
Jonathan.Wage committed
104
}