Friday, March 30, 2012

Unit Testing with PHPUnit

Hi All. Here I am going to discuss how to write unit tests using PHPUnit. In this post I am listing down the necessary steps  to configure your testing environment. PHPUnit is unit testing software frame work for php programming language developed by Sebastian Bergmann. It is one of the xUnit family of framework.

Set up the environment

PHPUnit should be installed using the PEAR Installer.

Upgrading PEAR

$ pear version
PEAR Version: 1.9.1
PHP Version: 5.3.3-1ubuntu9.5
Zend Engine Version: 2.3.0
view raw phpunitenv1 hosted with ❤ by GitHub

If you have version less than 1.9 it is recommended to update the PEAR channel and upgrade the PEAR.
$ sudo pear channel-update pear.php.net
$ sudo pear upgrade-all
view raw phpunitenv2 hosted with ❤ by GitHub

Installing PHP Extensions

PHPUnit depends on package pear/XML_RPC2 that requires curl.
$ sudo apt-get install php5-curl
view raw phpunitenv3 hosted with ❤ by GitHub


Need to install Xdebug to run the tests and generate code coverage.
$ sudo apt-get install php5-xdebug
view raw phpunitenv4 hosted with ❤ by GitHub

Installing PHPUnit

Installing PHPUnit with all dependencies.
$ sudo pear install -a phpunit/PHPUnit
view raw phpunitenv5 hosted with ❤ by GitHub

Installing Selenium

Selenium RC integration for PHPUnit.
$ sudo pear install phpunit/PHPUnit_Selenium
view raw phpunitenv6 hosted with ❤ by GitHub

You need to download Selenium Server from the http://seleniumhq.org/download/
You can download the SeleniumIDE which is Firefox plugin that does record-and-playback of interactions with the browser.

In the next post we will discuss how to write your first test case using PHPUnit. Keep your testing environment configured. :)