* @link http://netmonsters.ru * @package Majestic * @subpackage UnitTests * @since 2011-10-.. * * Unit tests for Load class */ require_once dirname(__FILE__) . '/../Load.php'; require_once 'vfsStream/vfsStream.php'; class LoadTest extends PHPUnit_Framework_TestCase { private static $inc_dirs = array(); private static $file; private $root; public static $file_contents; public static $autoload_array; public function run(PHPUnit_Framework_TestResult $result = NULL) { $this->setPreserveGlobalState(false); return parent::run($result); } /** * @TODO: Load->buildAutoload() should recieve AutoloadBuilder as a parameter * @TODO: Load->buildAutoload() - uses two paths - PATH . '/' . APP . '/src' and PATH . '/lib' those are not checked. Can cause error. */ public function setUp() { self::$file_contents = ' "/lib/core/model/Db.php", "DbDriver" => "/lib/core/model/DbDriver.php"); ?>'; self::$autoload_array = array('Db' => '/lib/core/model/Db.php', 'DbDriver' => '/lib/core/model/DbDriver.php'); vfsStreamWrapper::register(); $this->root = vfsStream::create( array( 'lib' => array( 'core' => array( 'util' => array( 'AutoloadBuilder.php' => '' ), 'model' => array( 'Db.php' => '', 'DbDriver.php' => '' ), 'Registry.php' => '', 'Load.php' => '', 'devel.config' => ' development config file' ) ), 'autoload.php' => self::$file_contents ) ); if (!class_exists('AutoloadBuilder')) { $this->getMock('AutoloadBuilder'); } vfsStreamWrapper::setRoot($this->root); self::$file = vfsStream::url('root/autoload.php'); set_new_overload(array($this, 'newCallback')); } /** * @runInSeparateProcess */ public function testSetAutoLoadFromExistingFile() { $this->setConstants(); $this->assertFileExists(self::$file); Load::setAutoloadFrom(self::$file); $autoload = require(self::$file); $this->assertSame(self::$autoload_array, $autoload); Load::autoload('Db'); } /** * @runInSeparateProcess */ public function testAutoloadFromNonExistingFile() { $this->setConstants(); $this->assertTrue($this->root->removeChild('autoload.php')); $this->assertFileNotExists(self::$file); Load::setAutoloadFrom(self::$file); $autoload = require(self::$file); $this->assertSame(self::$autoload_array, $autoload); } public function testAutoloadArrayExists() { $this->assertFileExists(self::$file); } /** * @runInSeparateProcess * @TODO: Load - check if input file returns array */ public function testFileForArray() { $autoload = require(self::$file); $this->assertInternalType('array', $autoload); } /** * @runInSeparateProcess */ public function testAutoloadArrayNotEmpty() { $autoload = require(self::$file); $this->assertNotEmpty($autoload); $this->assertArrayHasKey('Db', $autoload); } /** * @runInSeparateProcess */ public function testAutoloadGetFilePath() { $this->setConstants(); Load::setAutoloadFrom(self::$file); $this->assertNotEmpty(Load::getFilePath('DbDriver')); } /** * @TODO: Load::getFilePath - check for wrong index * @runInSeparateProcess */ public function testAutoloadGetFilePathNullIndex() { $this->setConstants(); Load::setAutoloadFrom(self::$file); $autoload = require(self::$file); $this->setExpectedException('PHPUnit_Framework_Error'); $this->assertNotEmpty(Load::getFilePath('anton')); } /** * @TODO: Load::autoload() needs self::$autoload = require(self::$file); after self::buildAutoload(); * @runInSeparateProcess */ public function testDebugAutoload() { $this->setConstants(); Load::setAutoloadFrom(self::$file); $autoload = require(self::$file); $this->assertNotEmpty($autoload); if (!defined('DEBUG')) { define('DEBUG', true); } Load::autoload('Some'); Load::autoload('DbDriver'); } protected function newCallback($className) { switch ($className) { case 'AutoloadBuilder': return 'AutoloadBuilderMock'; default: return $className; } } private function setConstants() { if (!defined('PATH')) { define('PATH', vfsStream::url('root')); } if (!defined('APP')) { define('APP', 'lib/core/tests/face'); } } public function tearDown() { // if (defined('PATH')) { // echo PHP_EOL . __CLASS__ . ' ' . PATH . PHP_EOL; // } else { // echo PHP_EOL . __CLASS__ . ' ' . 'PATH NOT DEFINED' . PHP_EOL; // } unset_new_overload(); } } class AutoloadBuilderMock { public function build() { $file = new vfsStreamFile('autoload.php'); $file->setContent(LoadTest::$file_contents); vfsStreamWrapper::getRoot()->addChild($file); } }