Browse Source

updated codeception docs. fixes #1558

tags/2.0.0-beta
Carsten Brandt 11 years ago
parent
commit
0a7def2055
  1. 7
      apps/basic/tests/README.md
  2. 116
      extensions/yii/codeception/README.md

7
apps/basic/tests/README.md

@ -11,6 +11,13 @@ To run the tests, follow these steps:
- `functional.suite.yml` for [functional testing](http://codeception.com/docs/05-FunctionalTests) and - `functional.suite.yml` for [functional testing](http://codeception.com/docs/05-FunctionalTests) and
`unit.suite.yml` for [unit testing](http://codeception.com/docs/06-UnitTests) should already work out of the box `unit.suite.yml` for [unit testing](http://codeception.com/docs/06-UnitTests) should already work out of the box
and should not need to be adjusted. and should not need to be adjusted.
- If you want to run acceptance tests, you need to download [selenium standalone](http://www.seleniumhq.org/download/)
and start it with command `java -jar {selenium-standalone-name}.jar`.
After that you can use `WebDriver` codeception module that will connect to selenium and launch browser.
This also allows you to use [Xvfb](https://en.wikipedia.org/wiki/Xvfb) in your tests which allows you to run tests
without showing the running browser on the screen. There is codeception [blog post](http://codeception.com/05-24-2013/jenkins-ci-practice.html)
that explains how it works.
3. Go to the application base directory and build the test suites: 3. Go to the application base directory and build the test suites:
``` ```
php codecept.phar build // rebuild test scripts, only need to be run once php codecept.phar build // rebuild test scripts, only need to be run once

116
extensions/yii/codeception/README.md

@ -1,33 +1,78 @@
Codeception Extension for Yii 2 Codeception Extension for Yii 2
=============================== ===============================
This extension provides a `Codeception` mail solution for Yii 2. It includes some classes that are useful This extension provides [Codeception](http://codeception.com/) integration for the Yii Framework 2.0.
for unit-testing (```TestCase```) or for codeception page-objects (```BasePage```).
When using codeception page-objects they have some similar code, this code was extracted and put into the ```BasePage``` It provides classes that help with testing with codeception:
class to reduce code duplication. Simply extend your page object from this class, like it is done in ```yii2-basic``` and
```yii2-advanced``` boilerplates.
For unit testing there is a ```TestCase``` class which holds some common features like application creation before each test - a base class for unit-tests: `yii\codeception\TestCase
and application destroy after each test. You can configure your application by this class. ```TestCase``` is extended from ```PHPUnit_Framework_TestCase``` so all - a base class for codeception page-objects: `yii\codeception\BasePage`.
methods and assertions are available. - a solution for testing emails
Installation
------------
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require yiisoft/yii2-codeception "*"
```
or add
```json
"yiisoft/yii2-codeception": "*"
```
to the require section of your composer.json.
Usage
-----
When using codeception page-objects they have some similar code, this code was extracted and put into the `BasePage`
class to reduce code duplication. Simply extend your page object from this class, like it is done in `yii2-app-basic` and
`yii2-app-advanced` boilerplates.
For unit testing there is a `TestCase` class which holds some common features like application creation before each test
and application destroy after each test. You can configure a mock application using this class.
`TestCase` is extended from `PHPUnit_Framework_TestCase` so all methods and assertions are available.
```php ```php
SomeConsoleTest extends yii\codeception\TestCase <?php
SomeConsoleTest extends \yii\codeception\TestCase
{ {
# by default it is @tests/unit/_bootstrap.php which holds some basic things like: // this is the config file to load as application config
# including composer autoload, include BaseYii class. public static $applicationConfig = '@app/config/web.php';
public $baseConfig = '@app/config/console.php';
public $applicationClass = 'yii\console\Application'; // this defines the application class to use for mock applications
protected $applicationClass = 'yii\web\Application';
} }
``` ```
Dont forget that you still need to include autoload and BaseYii class, like in the _bootstrap.php file (comments above).
You also can reconfigure some components for tests, for this purpose there is a ```$config``` property in the testcase. The `$applicationConfig` property may be set for all tests in a `_bootstrap.php` file like this:
```php
<?php
yii\codeception\TestCase::$applicationConfig = yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/../../config/web.php'),
require(__DIR__ . '/../../config/codeception/unit.php')
);
```
Don't forget that you have to include autoload and Yii class in the `_bootstrap.php` file.
You also can reconfigure some components for tests, for this purpose there is a `$config` property in the `TestCase` class.
```php ```php
SomeOtherTest extends yii\codeception\TestCase <?php
SomeOtherTest extends \yii\codeception\TestCase
{ {
public $config = [ public $config = [
'components' => [ 'components' => [
@ -39,19 +84,19 @@ SomeOtherTest extends yii\codeception\TestCase
} }
``` ```
Because of Codeception buffers all output you cant make simple ```var_dump()``` in the TestCase, instead you need to use Because of Codeception buffers all output you can't make simple `var_dump()` in the TestCase, instead you need to use
```Codeception\Util\Debug::debug()``` function and then run test with ```--debug``` key, for example: `Codeception\Util\Debug::debug()` function and then run test with `--debug` key, for example:
```php ```php
<?php
use \Codeception\Util\Debug; use Codeception\Util\Debug;
SomeDebugTest extends yii\codeception\TestCase SomeDebugTest extends \yii\codeception\TestCase
{ {
public function testSmth() public function testSmth()
{ {
Debug::debug('some my string'); Debug::debug('some string');
Debug::debug($someArray); Debug::debug($someArray);
Debug::debug($someObject); Debug::debug($someObject);
} }
@ -59,10 +104,10 @@ SomeDebugTest extends yii\codeception\TestCase
} }
``` ```
Then run command ```php codecept.phar run --debug unit/SomeDebugTest``` (Codeception also available through composer) and you will see in output: Then run command `php codecept.phar run --debug unit/SomeDebugTest` and you will see in output:
```html ```html
some my string some string
Array Array
( (
@ -104,25 +149,4 @@ Then run command ```php codecept.phar run --debug unit/SomeDebugTest``` (Codecep
``` ```
For further instructions refer to the testing section in the [Yii Definitive Guide](https://github.com/yiisoft/yii2/blob/master/docs/guide/testing.md).
For further instructions refer to the related section in the Yii Definitive Guide (https://github.com/yiisoft/yii2/blob/master/docs/guide/testing.md).
Installation
------------
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require yiisoft/yii2-codeception "*"
```
or add
```json
"yiisoft/yii2-codeception": "*"
```
to the require section of your composer.json.

Loading…
Cancel
Save