home *** CD-ROM | disk | FTP | other *** search
- <?php
-
- /**
- * API Unit tests for PEAR_PackageFileManager package.
- *
- * @version $Id: PEAR_PackageFileManager_File_TestCase_setDir.php,v 1.3 2004/02/07 05:37:35 cellog Exp $
- * @author Laurent Laville <pear@laurent-laville.org> portions from HTML_CSS
- * @author Greg Beaver
- * @package PEAR_PackageFileManager
- */
-
- /**
- * @package PEAR_PackageFileManager
- */
-
- class PEAR_PackageFileManager_File_TestCase_setDir extends PHPUnit_TestCase
- {
- /**
- * A PEAR_PackageFileManager object
- * @var object
- */
- var $packagexml;
-
- function PEAR_PackageFileManager_File_TestCase_setDir($name)
- {
- $this->PHPUnit_TestCase($name);
- }
-
- function setUp()
- {
- error_reporting(E_ALL);
- $this->errorOccured = false;
- set_error_handler(array(&$this, 'errorHandler'));
-
- $a = false;
- $this->packagexml = new PEAR_PackageFileManager_File($a, array('lang' => 'en'));
- PEAR::pushErrorHandling(PEAR_ERROR_CALLBACK, array(&$this, 'PEARerrorHandler'));
- $this->errorThrown = false;
- $this->_expectedMessage = 'NO ERROR TRIGGERED';
- $this->_expectedCode = -1;
- $this->_testMethod = 'unknown';
- }
-
- function tearDown()
- {
- unset($this->packagexml);
- PEAR::popErrorHandling();
- }
-
- function errorCodeToString($code)
- {
- $codes = array_flip(array(
- 'OOPS' => -1,
- 'PEAR_PACKAGEFILEMANAGER_NOSTATE' => PEAR_PACKAGEFILEMANAGER_NOSTATE,
- 'PEAR_PACKAGEFILEMANAGER_NOVERSION' => PEAR_PACKAGEFILEMANAGER_NOVERSION,
- 'PEAR_PACKAGEFILEMANAGER_NOPKGDIR' => PEAR_PACKAGEFILEMANAGER_NOPKGDIR,
- 'PEAR_PACKAGEFILEMANAGER_NOBASEDIR' => PEAR_PACKAGEFILEMANAGER_NOBASEDIR,
- 'PEAR_PACKAGEFILEMANAGER_GENERATOR_NOTFOUND' => PEAR_PACKAGEFILEMANAGER_GENERATOR_NOTFOUND,
- 'PEAR_PACKAGEFILEMANAGER_GENERATOR_NOTFOUND_ANYWHERE' => PEAR_PACKAGEFILEMANAGER_GENERATOR_NOTFOUND_ANYWHERE,
- 'PEAR_PACKAGEFILEMANAGER_CANTWRITE_PKGFILE' => PEAR_PACKAGEFILEMANAGER_CANTWRITE_PKGFILE,
- 'PEAR_PACKAGEFILEMANAGER_DEST_UNWRITABLE' => PEAR_PACKAGEFILEMANAGER_DEST_UNWRITABLE,
- 'PEAR_PACKAGEFILEMANAGER_CANTCOPY_PKGFILE' => PEAR_PACKAGEFILEMANAGER_CANTCOPY_PKGFILE,
- 'PEAR_PACKAGEFILEMANAGER_CANTOPEN_TMPPKGFILE' => PEAR_PACKAGEFILEMANAGER_CANTOPEN_TMPPKGFILE,
- 'PEAR_PACKAGEFILEMANAGER_PATH_DOESNT_EXIST' => PEAR_PACKAGEFILEMANAGER_PATH_DOESNT_EXIST,
- 'PEAR_PACKAGEFILEMANAGER_NOCVSENTRIES' => PEAR_PACKAGEFILEMANAGER_NOCVSENTRIES,
- 'PEAR_PACKAGEFILEMANAGER_DIR_DOESNT_EXIST' => PEAR_PACKAGEFILEMANAGER_DIR_DOESNT_EXIST,
- 'PEAR_PACKAGEFILEMANAGER_RUN_SETOPTIONS' => PEAR_PACKAGEFILEMANAGER_RUN_SETOPTIONS,
- 'PEAR_PACKAGEFILEMANAGER_NOPACKAGE' => PEAR_PACKAGEFILEMANAGER_NOPACKAGE,
- 'PEAR_PACKAGEFILEMANAGER_WRONG_MROLE' => PEAR_PACKAGEFILEMANAGER_WRONG_MROLE,
- 'PEAR_PACKAGEFILEMANAGER_NOSUMMARY' => PEAR_PACKAGEFILEMANAGER_NOSUMMARY,
- 'PEAR_PACKAGEFILEMANAGER_NODESC' => PEAR_PACKAGEFILEMANAGER_NODESC,
- 'PEAR_PACKAGEFILEMANAGER_ADD_MAINTAINERS' => PEAR_PACKAGEFILEMANAGER_ADD_MAINTAINERS,
- 'PEAR_PACKAGEFILEMANAGER_NO_FILES' => PEAR_PACKAGEFILEMANAGER_NO_FILES,
- 'PEAR_PACKAGEFILEMANAGER_IGNORED_EVERYTHING' => PEAR_PACKAGEFILEMANAGER_IGNORED_EVERYTHING,
- 'PEAR_PACKAGEFILEMANAGER_INVALID_PACKAGE' => PEAR_PACKAGEFILEMANAGER_INVALID_PACKAGE,
- 'PEAR_PACKAGEFILEMANAGER_INVALID_REPLACETYPE' => PEAR_PACKAGEFILEMANAGER_INVALID_REPLACETYPE,
- 'PEAR_PACKAGEFILEMANAGER_INVALID_ROLE' => PEAR_PACKAGEFILEMANAGER_INVALID_ROLE,
- 'PEAR_PACKAGEFILEMANAGER_PHP_NOT_PACKAGE' => PEAR_PACKAGEFILEMANAGER_PHP_NOT_PACKAGE
- ));
- return $codes[$code];
- }
-
- function _stripWhitespace($str)
- {
- return preg_replace('/\\s+/', '', $str);
- }
-
- function _methodExists($name)
- {
- if (in_array(strtolower($name), get_class_methods($this->packagexml))) {
- return true;
- }
- $this->assertTrue(false, 'method '. $name . ' not implemented in ' . get_class($this->packagexml));
- return false;
- }
-
- function errorHandler($errno, $errstr, $errfile, $errline) {
- //die("$errstr in $errfile at line $errline: $errstr");
- $this->errorOccured = true;
- $this->assertTrue(false, "$errstr at line $errline, $errfile");
- }
-
- function PEARerrorHandler($error) {
- $this->assertEquals($this->_expectedCode, $error->getCode(),
- $this->_testMethod . ' ' . $this->errorCodeToString($this->_expectedCode)
- . ' actual: ' . $this->errorCodeToString($error->getCode()));
- $this->assertEquals($this->_expectedMessage, $error->getMessage(), $this->_testMethod);
- $this->errorThrown = 'true';
- }
-
- function expectPEARError($method, $msg, $code = null)
- {
- $this->_expectedMessage = $msg;
- $this->_expectedCode = $code;
- $this->_testMethod = $method;
- }
-
- function test_concept()
- {
- if (!$this->_methodExists('_setDir')) {
- return;
- }
- $test = array('my' => array('butt' => array('first')));
- $arr = array('my' => array('other' => array('test')));
- $assert = $this->packagexml->_setDir($arr, $test);
- $this->assertEquals(array('my' => array('other' => array('test'), 'butt' => array('first'))),
- $assert,
- 'Wrong contents');
- }
- }
-
- ?>
-