| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | 
							- <?php
 - 
 - namespace Doctrine\Tests\ORM\Tools;
 - 
 - use Doctrine\ORM\Tools\Setup;
 - 
 - require_once __DIR__ . '/../../TestInit.php';
 - 
 - class SetupTest extends \Doctrine\Tests\OrmTestCase
 - {
 -     private $originalAutoloaderCount;
 -     private $originalIncludePath;
 -     
 -     public function setUp()
 -     {
 -         if (strpos(\Doctrine\ORM\Version::VERSION, "DEV") === false) {
 -             $this->markTestSkipped("Test only runs in a dev-installation from Github");
 -         }
 -         
 -         $this->originalAutoloaderCount = count(spl_autoload_functions());
 -         $this->originalIncludePath = get_include_path();
 -     }
 -     
 -     public function testGitAutoload()
 -     {        
 -         Setup::registerAutoloadGit(__DIR__ . "/../../../../../");
 -         
 -         $this->assertEquals($this->originalAutoloaderCount + 4, count(spl_autoload_functions()));
 -     }
 -     
 -     public function testPEARAutoload()
 -     {
 -         set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__ . "/../../../../../lib/vendor/doctrine-common/lib");
 -         
 -         Setup::registerAutoloadPEAR();
 -         
 -         $this->assertEquals($this->originalAutoloaderCount + 2, count(spl_autoload_functions()));
 -     }
 -     
 -     public function testDirectoryAutoload()
 -     {
 -         Setup::registerAutoloadDirectory(__DIR__ . "/../../../../../lib/vendor/doctrine-common/lib");
 -         
 -         $this->assertEquals($this->originalAutoloaderCount + 2, count(spl_autoload_functions()));
 -     }
 -     
 -     public function testAnnotationConfiguration()
 -     {
 -         $config = Setup::createAnnotationMetadataConfiguration(array(), true);
 -         
 -         $this->assertInstanceOf('Doctrine\ORM\Configuration', $config);
 -         $this->assertEquals(sys_get_temp_dir(), $config->getProxyDir());
 -         $this->assertEquals('DoctrineProxies', $config->getProxyNamespace());
 -         $this->assertInstanceOf('Doctrine\ORM\Mapping\Driver\AnnotationDriver', $config->getMetadataDriverImpl());
 -     }
 -     
 -     public function testXMLConfiguration()
 -     {
 -         $config = Setup::createXMLMetadataConfiguration(array(), true);
 -         
 -         $this->assertInstanceOf('Doctrine\ORM\Configuration', $config);
 -         $this->assertInstanceOf('Doctrine\ORM\Mapping\Driver\XmlDriver', $config->getMetadataDriverImpl());
 -     }
 -     
 -     public function testYAMLConfiguration()
 -     {
 -         $config = Setup::createYAMLMetadataConfiguration(array(), true);
 -         
 -         $this->assertInstanceOf('Doctrine\ORM\Configuration', $config);
 -         $this->assertInstanceOf('Doctrine\ORM\Mapping\Driver\YamlDriver', $config->getMetadataDriverImpl());
 -     }
 -     
 -     public function tearDown()
 -     {
 -         set_include_path($this->originalIncludePath);
 -         $loaders = spl_autoload_functions();
 -         for ($i = 0; $i < count($loaders); $i++) {
 -             if ($i > $this->originalAutoloaderCount+1) {
 -                 spl_autoload_unregister($loaders[$i]);
 -             }
 -         }
 -     }
 - }
 
 
  |