コード例 #1
0
 public function setUp()
 {
     // run only once to save execution time
     if (null == self::$database) {
         $xmlToAppData = new XmlToAppData(new DefaultPlatform());
         $appData = $xmlToAppData->parseFile(realpath(__DIR__ . '/../../../../../Fixtures/bookstore/schema.xml'));
         self::$database = $appData->getDatabase("bookstore");
     }
 }
コード例 #2
0
    public function testGetModifyColumnDDLWithVarcharWithoutSizeAndPlatform()
    {
        $t1 = new Table('foo');
        $c1 = new Column('bar');
        $c1->setTable($t1);
        $c1->getDomain()->copy($this->getPlatform()->getDomainForType('VARCHAR'));
        $c1->getDomain()->replaceSize(null);
        $c1->getDomain()->replaceScale(null);
        $t1->addColumn($c1);
        $schema = <<<EOF
<database name="test">
    <table name="foo">
        <column name="id" primaryKey="true" type="INTEGER" autoIncrement="true" />
        <column name="bar"/>
    </table>
</database>
EOF;
        $xtad = new XmlToAppData(null);
        $appData = $xtad->parseString($schema);
        $db = $appData->getDatabase();
        $table = $db->getTable('foo');
        $c2 = $table->getColumn('bar');
        $columnDiff = ColumnComparator::computeDiff($c1, $c2);
        $expected = false;
        $this->assertSame($expected, $columnDiff);
    }
コード例 #3
0
ファイル: QuickBuilder.php プロジェクト: norfil/Propel2
 public function getDatabase()
 {
     if (null === $this->database) {
         $xtad = new XmlToAppData($this->getPlatform());
         $xtad->setGeneratorConfig($this->getConfig());
         $appData = $xtad->parseString($this->schema);
         $this->database = $appData->getDatabase();
         // does final initialization
     }
     return $this->database;
 }
コード例 #4
0
ファイル: BehaviorTest.php プロジェクト: RafalFilipek/Propel2
    public function testGetColumnForParameter()
    {
        $xmlToAppData = new XmlToAppData();
        $schema = <<<EOF
<database name="test1">
  <table name="table1">
    <column name="id" type="INTEGER" primaryKey="true" />
    <column name="title" type="VARCHAR" size="100" primaryString="true" />
    <column name="created_on" type="TIMESTAMP" />
    <column name="updated_on" type="TIMESTAMP" />
    <behavior name="timestampable">
      <parameter name="create_column" value="created_on" />
      <parameter name="update_column" value="updated_on" />
    </behavior>
  </table>
</database>
EOF;
        $appData = $xmlToAppData->parseString($schema);
        $table = $appData->getDatabase('test1')->getTable('table1');
        $behavior = $table->getBehavior('timestampable');
        $this->assertEquals($table->getColumn('created_on'), $behavior->getColumnForParameter('create_column'), 'getColumnForParameter() returns the configured column for behavior based on a parameter name');
    }
コード例 #5
0
ファイル: TableTest.php プロジェクト: rouffj/Propel2
    public function testIsCrossRefAttribute()
    {
        $xmlToAppData = new XmlToAppData();
        $schema = <<<EOF
<database name="iddb" defaultIdMethod="native">
    <table name="table_native">
        <column name="table_a_id" required="true" primaryKey="true" type="INTEGER" />
        <column name="col_a" type="CHAR" size="5" />
    </table>
    <table name="table_is_cross_ref_true" isCrossRef="true">
        <column name="table_a_id" required="true" primaryKey="true" type="INTEGER" />
        <column name="col_a" type="CHAR" size="5" />
    </table>
    <table name="table_is_cross_ref_false" isCrossRef="false">
        <column name="table_a_id" required="true" primaryKey="true" type="INTEGER" />
        <column name="col_a" type="CHAR" size="5" />
    </table>
</database>
EOF;
        $appData = $xmlToAppData->parseString($schema);
        $db = $appData->getDatabase("iddb");
        $table1 = $db->getTable("table_native");
        $this->assertFalse($table1->getIsCrossRef());
        $table2 = $db->getTable("table_is_cross_ref_true");
        $this->assertTrue($table2->getIsCrossRef());
        $table3 = $db->getTable("table_is_cross_ref_false");
        $this->assertFalse($table3->getIsCrossRef());
    }
コード例 #6
0
ファイル: AbstractManager.php プロジェクト: rozwell/Propel2
    /**
     * Gets all matching XML schema files and loads them into data models for class.
     * @return     void
     */
    protected function loadDataModels()
    {
        $ads = array();
        $totalNbTables = 0;
        $dataModelFiles = $this->getSchemas();
        $defaultPlatform = $this->getGeneratorConfig()->getConfiguredPlatform();
        // Make a transaction for each file
        foreach ($dataModelFiles as $schema) {
            $dmFilename = $schema->getPathName();
            $this->log('Processing: ' . $schema->getFileName());
            $dom = new DomDocument('1.0', 'UTF-8');
            $dom->load($dmFilename);
            $this->includeExternalSchemas($dom, $schema->getPath());
            // normalize (or transform) the XML document using XSLT
            if ($this->getGeneratorConfig()->getBuildProperty('schemaTransform') && $this->xsl) {
                $this->log('Transforming ' . $dmFilename . ' using stylesheet ' . $this->xsl->getPath());
                if (!class_exists('\\XSLTProcessor')) {
                    $this->log('Could not perform XLST transformation. Make sure PHP has been compiled/configured to support XSLT.');
                } else {
                    // normalize the document using normalizer stylesheet
                    $xslDom = new DomDocument('1.0', 'UTF-8');
                    $xslDom->load($this->xsl->getAbsolutePath());
                    $xsl = new \XsltProcessor();
                    $xsl->importStyleSheet($xslDom);
                    $dom = $xsl->transformToDoc($dom);
                }
            }
            // validate the XML document using XSD schema
            if ($this->validate && $this->xsd) {
                $this->log('  Validating XML using schema ' . $this->xsd->getPath());
                if (!$dom->schemaValidate($this->xsd->getAbsolutePath())) {
                    throw new EngineException(<<<EOT
XML schema file ({$xmlFile->getPath}()) does not validate.
See warnings above for reasons validation failed (make sure error_reporting
is set to show E_WARNING if you don't see any)
EOT
, $this->getLocation());
                }
            }
            $xmlParser = new XmlToAppData($defaultPlatform, $this->dbEncoding);
            $xmlParser->setGeneratorConfig($this->getGeneratorConfig());
            $ad = $xmlParser->parseString($dom->saveXML(), $dmFilename);
            $nbTables = $ad->getDatabase(null, false)->countTables();
            $totalNbTables += $nbTables;
            $this->log(sprintf('  %d tables processed successfully', $nbTables));
            $ad->setName($dmFilename);
            $ads[] = $ad;
        }
        $this->log(sprintf('%d tables found in %d schema files.', $totalNbTables, count($dataModelFiles)));
        if (empty($ads)) {
            throw new BuildException('No schema files were found (matching your schema fileset definition).');
        }
        foreach ($ads as $ad) {
            // map schema filename with database name
            $this->dataModelDbMap[$ad->getName()] = $ad->getDatabase(null, false)->getName();
        }
        if (count($ads) > 1 && $this->getGeneratorConfig()->getBuildProperty('packageObjectModel')) {
            $ad = $this->joinDataModels($ads);
            $this->dataModels = array($ad);
        } else {
            $this->dataModels = $ads;
        }
        foreach ($this->dataModels as &$ad) {
            $ad->doFinalInitialization();
        }
        $this->dataModelsLoaded = true;
    }
コード例 #7
0
ファイル: TableTest.php プロジェクト: RafalFilipek/Propel2
    public function testSetPackageOverridesNamespaceAutoPackage()
    {
        $schema = <<<EOF
<database name="DB" namespace="NS1">
  <table name="table" namespace="NS2" package="foo">
    <column name="id" primaryKey="true" />
    <column name="title1" type="VARCHAR" />
  </table>
</database>
EOF;
        $config = new GeneratorConfig();
        $config->setBuildProperties(array('propel.namespace.autoPackage' => 'true'));
        $xmlToAppData = new XmlToAppData(new DefaultPlatform());
        $xmlToAppData->setGeneratorConfig($config);
        $table = $xmlToAppData->parseString($schema)->getDatabase('DB')->getTable('table');
        $this->assertEquals('foo', $table->getPackage());
    }
コード例 #8
0
 /**
  * Gets all matching XML schema files and loads them into data models for class.
  * @return     void
  */
 protected function loadDataModels()
 {
     $ads = array();
     $totalNbTables = 0;
     $this->log('Loading XML schema files...');
     // Get all matched files from schemaFilesets
     foreach ($this->schemaFilesets as $fs) {
         $ds = $fs->getDirectoryScanner($this->project);
         $srcDir = $fs->getDir($this->project);
         $dataModelFiles = $ds->getIncludedFiles();
         sort($dataModelFiles);
         $defaultPlatform = $this->getGeneratorConfig()->getConfiguredPlatform();
         // Make a transaction for each file
         foreach ($dataModelFiles as $dmFilename) {
             $this->log("Processing: " . $dmFilename, Project::MSG_VERBOSE);
             $xmlFile = new PhingFile($srcDir, $dmFilename);
             $dom = new DomDocument('1.0', 'UTF-8');
             $dom->load($xmlFile->getAbsolutePath());
             // modify schema to include any external schemas (and remove the external-schema nodes)
             $this->includeExternalSchemas($dom, $srcDir);
             // normalize (or transform) the XML document using XSLT
             if ($this->getGeneratorConfig()->getBuildProperty('schemaTransform') && $this->xslFile) {
                 $this->log("Transforming " . $dmFilename . " using stylesheet " . $this->xslFile->getPath(), Project::MSG_VERBOSE);
                 if (!class_exists('XSLTProcessor')) {
                     $this->log("Could not perform XLST transformation. Make sure PHP has been compiled/configured to support XSLT.", Project::MSG_ERR);
                 } else {
                     // normalize the document using normalizer stylesheet
                     $xslDom = new DomDocument('1.0', 'UTF-8');
                     $xslDom->load($this->xslFile->getAbsolutePath());
                     $xsl = new XsltProcessor();
                     $xsl->importStyleSheet($xslDom);
                     $dom = $xsl->transformToDoc($dom);
                 }
             }
             // validate the XML document using XSD schema
             if ($this->validate && $this->xsdFile) {
                 $this->log("  Validating XML using schema " . $this->xsdFile->getPath(), Project::MSG_VERBOSE);
                 if (!$dom->schemaValidate($this->xsdFile->getAbsolutePath())) {
                     throw new EngineException("XML schema file (" . $xmlFile->getPath() . ") does not validate. See warnings above for reasons validation failed (make sure error_reporting is set to show E_WARNING if you don't see any).", $this->getLocation());
                 }
             }
             $xmlParser = new XmlToAppData($defaultPlatform, $this->getTargetPackage(), $this->dbEncoding);
             $xmlParser->setGeneratorConfig($this->getGeneratorConfig());
             $ad = $xmlParser->parseString($dom->saveXML(), $xmlFile->getAbsolutePath());
             $nbTables = $ad->getDatabase(null, false)->countTables();
             $totalNbTables += $nbTables;
             $this->log(sprintf('  %d tables processed successfully', $nbTables), Project::MSG_VERBOSE);
             $ad->setName($dmFilename);
             $ads[] = $ad;
         }
         $this->log(sprintf('%d tables found in %d schema files.', $totalNbTables, count($dataModelFiles)));
     }
     if (empty($ads)) {
         throw new BuildException("No schema files were found (matching your schema fileset definition).");
     }
     foreach ($ads as $ad) {
         // map schema filename with database name
         $this->dataModelDbMap[$ad->getName()] = $ad->getDatabase(null, false)->getName();
     }
     if (count($ads) > 1 && $this->packageObjectModel) {
         $ad = $this->joinDataModels($ads);
         $this->dataModels = array($ad);
     } else {
         $this->dataModels = $ads;
     }
     foreach ($this->dataModels as &$ad) {
         $ad->doFinalInitialization();
     }
     $this->dataModelsLoaded = true;
 }
コード例 #9
0
ファイル: XmlToAppDataTest.php プロジェクト: rouffj/Propel2
    public function testParseFileExternalSchema()
    {
        $path = realpath(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'outerSchema.xml');
        $xtad = new XmlToAppData();
        $appData = $xtad->parseFile($path);
        $expectedAppData = <<<EOF
<app-data>
<database name="foo" defaultIdMethod="native" defaultPhpNamingMethod="underscore" defaultTranslateMethod="none">
  <table name="bar1" phpName="Bar1" idMethod="false" readOnly="false" reloadOnInsert="false" reloadOnUpdate="false" abstract="false">
    <column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
  </table>
  <table name="bar2" phpName="Bar2" idMethod="false" readOnly="false" reloadOnInsert="false" reloadOnUpdate="false" forReferenceOnly="true" abstract="false">
    <column name="id" phpName="Id" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
  </table>
</database>
</app-data>
EOF;
        $this->assertEquals($expectedAppData, $appData->toString());
    }
コード例 #10
0
ファイル: ColumnTest.php プロジェクト: rouffj/Propel2
    public function testGetValidator()
    {
        $xmlToAppData = new XmlToAppData(new DefaultPlatform());
        $schema = <<<EOF
<database name="test">
  <table name="table1">
    <column name="id" primaryKey="true" />
    <column name="title1" type="VARCHAR" />
    <validator column="title1">
      <rule name="minLength" value="4" message="Username must be at least 4 characters !" />
    </validator>
    <column name="title2" type="VARCHAR" />
    <validator column="title2">
      <rule name="minLength" value="4" message="Username must be at least 4 characters !" />
      <rule name="maxLength" value="10" message="Username must be at most 10 characters !" />
    </validator>
  </table>
</database>
EOF;
        $appData = $xmlToAppData->parseString($schema);
        $table1 = $appData->getDatabase('test')->getTable('table1');
        $this->assertNull($table1->getColumn('id')->getValidator());
        $title1Column = $table1->getColumn('title1');
        $title1Validator = $title1Column->getValidator();
        $this->assertInstanceOf('\\Propel\\Generator\\Model\\Validator', $title1Validator);
        $this->assertEquals(1, count($title1Validator->getRules()));
        $title2Column = $table1->getColumn('title2');
        $title2Validator = $title2Column->getValidator();
        $this->assertInstanceOf('\\Propel\\Generator\\Model\\Validator', $title2Validator);
        $this->assertEquals(2, count($title2Validator->getRules()));
    }
コード例 #11
0
    public function testGetAddTableDDLEngine()
    {
        $schema = <<<EOF
<database name="test">
\t<table name="foo">
\t\t<column name="id" primaryKey="true" type="INTEGER" autoIncrement="true" />
\t</table>
</database>
EOF;
        $platform = new MysqlPlatform();
        $platform->setTableEngineKeyword('TYPE');
        $platform->setDefaultTableEngine('MEMORY');
        $xtad = new XmlToAppData($platform);
        $appData = $xtad->parseString($schema);
        $table = $appData->getDatabase()->getTable('foo');
        $expected = "\nCREATE TABLE `foo`\n(\n\t`id` INTEGER NOT NULL AUTO_INCREMENT,\n\tPRIMARY KEY (`id`)\n) TYPE=MEMORY;\n";
        $this->assertEquals($expected, $platform->getAddTableDDL($table));
    }
コード例 #12
0
ファイル: PlatformTestBase.php プロジェクト: norfil/Propel2
 protected function getDatabaseFromSchema($schema)
 {
     $xtad = new XmlToAppData($this->getPlatform());
     $appData = $xtad->parseString($schema);
     return $appData->getDatabase();
 }