banks / kohana-phpunit forked from kohana/unittest
- Source
- Commits
- Network (1)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Nov 21 19:27:47 -0800 2009 | |
| |
README.markdown | ||
| |
classes/ | ||
| |
config/ | ||
| |
init.php | ||
| |
phpunit_tests/ | ||
| |
tests.php | Sat Nov 21 07:35:48 -0800 2009 | |
| |
views/ |
Kohana-PHPUnit integration
This module integrates PHPUnit with Kohana.
If you look through any of the tests provided in this module you'll probably notice all theHorribleCamelCase. I've chosen to do this because it's part of the PHPUnit coding conventions and is required for certain features such as auto documentation.
Installation
Step 0: Download this module!
To get it from git execute the following command in the root of your project:
$ git submodule add git://github.com/kohana/unittest.git modules/phpunit
And watch the gitorious magic...
Of course you can always download the code from the github project as an archive.
The following instructions will assume you've moved it to modules/phpunit, if you haven't then you should update all paths accordingly.
Step 1: Enable this module in your bootstrap file
/**
* Enable modules. Modules are referenced by a relative or absolute path.
*/
Kohana::modules(array(
'phpunit' => MODPATH.'phpunit' // PHPUnit integration
// 'database' => MODPATH.'database', // Database access
// 'image' => MODPATH.'image', // Image manipulation
// 'kodoc' => MODPATH.'kodoc', // Kohana documentation
// 'orm' => MODPATH.'orm', // Object Relationship Mapping (not complete)
// 'pagination' => MODPATH.'pagination', // Paging of results
// 'paypal' => MODPATH.'paypal', // PayPal integration (not complete)
// 'todoist' => MODPATH.'todoist', // Todoist integration
// 'unittest' => MODPATH.'unittest', // Unit testing
// 'codebench' => MODPATH.'codebench', // Benchmarking tool
));
Step 2: in your app's bootstrap file modify the lines where the request is handled, which by default looks like:
/**
* Execute the main request using PATH_INFO. If no URI source is specified,
* the URI will be automatically detected.
*/
echo Request::instance($_SERVER['PATH_INFO'])
->execute()
->send_headers()
->response;
to read:
if( ! defined('SUPPRESS_REQUEST'))
{
/**
* Execute the main request using PATH_INFO. If no URI source is specified,
* the URI will be automatically detected.
*/
echo Request::instance($_SERVER['PATH_INFO'])
->execute()
->send_headers()
->response;
}
Step 3: Start testing!
From the command line
$ phpunit --bootstrap=index.php modules/phpunit/tests.php
Of course, you'll need to make sure the path to the tests.php file is correct. If you want you can copy it to a more accessible location
If you want to run tests from within an IDE then you need to include the kohana files within the test itself:
<?php
require_once 'path/to/kohanas/index.php';
Class HalfEmptyTestCase extends PHPUnit_Framework_TestCase
{
// ...
}
From the web
Just navigate to http://yoursite.com/phpunit. You may need to use yoursite.com/index.php/phpunit if you have not removed this by using .htaccess.
Writing tests
If you're writing a test for your application, place it in "application/phpunit_tests". Similarly, if you're writing a test for a module place it in modules/[modulefolder]/phpunit_tests
Rather than tell you how to write tests I'll point you in the direction of the PHPUnit Manual and tell you about a few of the awesome features in PHPUnit.
Data Providers
Sometimes you want to be able to run a specific test with different sets of data to try and test every eventuality
Ordinarily you could use a foreach loop to iterate over an array of test data, however PHPUnit already can take care of this for us rather easily using "Data Providers". A data provider is a function that returns an array of arguments that can be passed to a test.
<?php
Class ReallyCoolTest extends PHPUnit_Framework_TestCase
{
function providerStrLen()
{
return array(
array('One set of testcase data', 24),
array('This is a different one', 23),
);
}
/**
* @dataProvider providerStrLen
*/
function testStrLen($string, $length)
{
$this->assertSame(
$length,
strlen($string)
);
}
}
The key thing to notice is the @dataProvider tag in the doccomment, this is what tells PHPUnit to use a data provider. The provider prefix is totally optional but it's a nice standard to identify providers.
For more info see:
Grouping tests
To allow users to selectively run tests you need to organise your tests into groups. Here's an example test showing how to do this:
<?php
/**
* This is a description for my testcase
*
* @group somegroup
* @group somegroup.morespecific
*/
Class AnotherReallyCoolTest extends PHPUnit_Framework_TestCase
{
/**
* Tests can also be grouped too!
*
* @group somegroup.morespecific.annoyingstuff
*/
function testSomeAnnoyingCase()
{
// CODE!!
}
}
Our convention is to use lowercase group names, with more specific levels in a group seperated by periods. i.e. The Validate helper tests are part of the following groups:
kohana
kohana.validation
kohana.validation.helpers
To actually limit your testing to the "somegroup" group, use:
$ phpunit --boostrap=index.php --group=somegroup modules/phpunit/tests.php
This functionality can be used to record which bug reports a test is for:
/**
*
* @group bugs.1477
*/
function testAccountCannotGoBelowZero()
{
// Some arbitary code
}
To see all groups that are available in your code run:
$ phpunit --boostrap=index.php --list-groups modules/phpunit/tests.php
Note: the --list-groups switch should appear before the path to the test suite loader
You can also exclude groups while testing using the --exclude-group switch. This can be useful if you want to ignore all kohana tests:
$ phpunit --bootstrap=index.php --exclude-group=kohana modules/phpunit/tests.php
For more info see:

