vote up 0 vote down star

I've just started to use PHPUnit, but I've run into a bit of a snag.

My code uses $_SERVER['DOCUMENT_ROOT'] to compute paths for includes, which works when my apache server is the one running PHP, but DOCUMENT_ROOT is not set when I run phpunit from the command line with "phpunit Tests", so these includes don't work.

Am I missing something in the configuration of PHPUnit? Should it somehow be integrated with apache?

flag

1 Answer

vote up 0 vote down

The best way would be to decouple your code from the use of the $_SERVER or any other global array. For example do

class MyClass
{
    protected $_docroot;

    public function __construct($docroot)
    {
        $this->_docroot = $docroot;
    }

    public function getDocRoot() 
    {
        return $this->_docroot;
    }
}

instead of

class MyClass
{
    public function getDocRoot() 
    {
        return $_SERVER['DOCUMENT_ROOT'];
    }
}

This allows you to do

// in your actual code
$instance = new MyClass($_SERVER['DOCUMENT_ROOT']);
$docroot = $instance->getDocRoot();

// in your test
$instance = new MyClass($variable_holding_the_correct_path);
$docroot = $instance->getDocRoot();

Please be aware that this is just a simple example of decoupling. It might be much more complicated in your case - but generally it's worth the effort, especially if you'r running unit tests.

link|flag
The problem then becomes, how do I include the file that contains this class? – Smug Duckling Oct 31 at 10:39
Ah OK - I see the problem... I slightly misunderstood the real background of your question. You should not rely on including files using any environment variable (including $_SERVER['DOCUMENT_ROOT']). Would it be possible that you include your files using relative paths, e.g. require_once dirname(__FILE__) . '/MyClass.php'? On the other hand you could set up some sort of autoloading... – Stefan Gehrig Oct 31 at 10:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.