Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

$app = 'frontend';
include dirname(__FILE__).'/../../bootstrap/functional.php';

$t = new lime_test(9);

// ->__construct()
$t->diag('->__construct()');

function is_symfony_i18n_filter($filter)
{
  return $filter instanceof sfDoctrineRecordI18nFilter;
}

$table = Doctrine_Core::getTable('Article');
new Article();
$t->is(count(array_filter($table->getFilters(), 'is_symfony_i18n_filter')), 1, '->__construct() adds i18n filter');
new Article();
$t->is(count(array_filter($table->getFilters(), 'is_symfony_i18n_filter')), 1, '->__construct() adds i18n filter once');

// ->serialize() ->unserialize()
$t->diag('->serialize() ->unserialize()');

$before = new Author();
$before->name = 'test';
$serialized = serialize($before);
$after = unserialize($serialized);
$t->is($after->name, 'test', '->unserialize() maintains field values');

$conn = Doctrine_Manager::getInstance()->getConnectionForComponent('Author');
$before = new Author();
$before->name = 'test';
$serialized = serialize($before);
$conn->clear();
$conn->evictTables();
$after = unserialize($serialized);
$t->is($after->name, 'test', '->unserialize() maintains field values upon reset');

$before = new Article();
$before->title = 'test';
$serialized = serialize($before);
$after = unserialize($serialized);
$t->is($after->title, 'test', '->unserialize() maintains field values on I18n records');

$conn = Doctrine_Manager::getInstance()->getConnectionForComponent('Article');
$before = new Article();
$before->title = 'test';
$serialized = serialize($before);
$conn->clear();
$conn->evictTables();
$after = unserialize($serialized);
$t->is($after->title, 'test', '->unserialize() maintains field values on I18n records upon reset');

$article = new Article();
try {
$article->setAuthor(new stdClass());
} catch (Exception $e) {
  $t->is($e->getMessage(), 'Couldn\'t call Doctrine_Core::set(), second argument should be an instance of Doctrine_Record or Doctrine_Null when setting one-to-one references.', 'Making sure proper exception message is thrown');
}

$article = new Article();
$article->title = 'testing this out';
$serialized = serialize($article);
$article = unserialize($serialized);

$t->is($article->getTitle(), 'testing this out', 'Making sure getTitle() is still accessible after unserializing');

try {
  $test = new ModelWithNumberInColumn();
  $test->getColumn_1();
  $test->getColumn_2();
  $test->getColumn__3();
  $t->pass('Make sure __call() handles fields with *_(n) in the field name');
} catch (Exception $e) {
  $t->fail('__call() failed in sfDoctrineRecord');
}