vote up 2 vote down star

I'm currently working with PHPUnit to try and develop tests alongside what I'm writing, however, I'm currently working on writing the Session Manager, and am having issues doing so...

The constructor for the Session handling class is

private function __construct()
{
	if (!headers_sent())
	{
		session_start();
		self::$session_id = session_id();
	}
}

However, as PHPUnit sends out text before it starts the testing, any testing on this Object returns a failed test, as the HTTP "Headers" have been sent...

flag

5 Answers

vote up 5 vote down check

Well, your session manager is basically broken by design. To be able to test something, it must be possible to isolate it from side effects. Unfortunately, PHP is designed in such a way, that it encourages liberal use of global state (echo, header, exit, session_start etc. etc.).

The best thing you can do, is to isolate the side-effects in a component, that can be swapped at runtime. That way, your tests can use mocked objects, while the live code uses adapters, that have real side-effects. You'll find that this doesn't play well with singletons, which I presume you're using. So you'll have to use some other mechanism for getting shared objects distributed to your code. You can start with a static registry, but there are even better solutions if you don't mind a bit of learning.

If you can't do that, you always have the option of writing integration-tests. Eg. use the PHPUnit's equivalent of WebTestCase.

link|flag
vote up 1 vote down

Heyho,

I know this question is a bit old, but as I recently came across this, I found an easy solution, that can be used, if refactoring the whole design isn't an option.

Create a bootstrap file for phpunit, which calls:

session_start();

Then start phpunit like this:

phpunit --bootstrap pathToBootstrap.php --anotherSwitch /your/test/path/

The bootstrap file gets called before everything else, so the header hasn't been sent and everything should work fine.

link|flag
vote up 0 vote down

Can't you use output buffering before starting the test? If you buffer everything that is output, you shouldn't have problems setting any headers as no output would have yet been sent to client at that point.

Even if OB is used somewhere inside your classes, it is stackable and OB shouldn't affect what's going on inside.

link|flag
it seems that ob_start() doesn't actually reset whether PHP thinks the headers are sent. – Mez Oct 10 '08 at 6:19
Yeah, ob_start doesnt work with the headers, so that even if you use it, it'll still complain if headers cannot be sent anymore. I could edit up PHPUnit for this though... – Mez Oct 10 '08 at 6:25
vote up 0 vote down

As far as I know Zend Framework uses the same output buffering for their Zend_Session package tests. You can take a look at their test cases to get you started.

link|flag
vote up 0 vote down

I think the "right" solution is to create a very simple class (so simple it doesn't need to be tested) that's a wrapper for PHP's session-related functions, and use it instead of calling session_start(), etc. directly.

In the test pass mock object instead of a real stateful, untestable session class.

private function __construct(SessionWrapper $wrapper)
{
   if (!$wrapper->headers_sent())
   {
      $wrapper->session_start();
      $this->session_id = $wrapper->session_id();
   }
}
link|flag

Your Answer

Get an OpenID
or

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