* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ require_once(dirname(__FILE__).'/../../bootstrap/unit.php'); $t = new lime_test(1); class Foo { public function getid() { return 1; } } // simulate Propel/Doctrine route class ObjectRoute extends sfObjectRoute { protected function doConvertObjectToArray($object) { $parameters = array(); foreach ($this->getRealVariables() as $variable) { if (method_exists($object, $method = 'get'.$variable)) { $parameters[$variable] = $object->$method(); } } return $parameters; } } // ->generate() $t->diag('->generate()'); $route = new ObjectRoute('/:id', array(), array(), array('model' => 'Foo', 'type' => 'object')); $t->is($route->generate(array('sf_subject' => new Foo())), '/1', '->generate() generates a URL with the given parameters');