| layout | doc |
|---|---|
| title | 08-Customization - Codeception - Documentation |
In this chapter we will explain how you can extend and customize the file structure and test execution routines.
If your project consists of several applications (frontend, admin, api) or you are using the Symfony framework with its bundles, you may be interested in having all tests for all applications (bundles) executed in one runner. In this case you will get one report that covers the whole project.
Place the codeception.yml file into the root folder of your project
and specify the paths to the other codeception.yml configurations that you want to include:
{% highlight yaml %}
include:
- frontend/src/*Bundle
- admin
- api/rest paths: log: log settings: colors: false
{% endhighlight %}
You should also specify the path to the log directory, where the reports and logs will be saved.
To avoid naming conflicts between Actor classes and Helper classes, they should be separated into namespaces.
To create test suites with namespaces you can add --namespace option to the bootstrap command:
{% highlight bash %}
php codecept bootstrap --namespace frontend
{% endhighlight %}
This will bootstrap a new project with the namespace: frontend parameter in the codeception.yml file.
Helpers will be in the frontend\Codeception\Module namespace and Actor classes will be in the frontend namespace.
The newly generated tests will look like this:
{% highlight php %}
'afterSuite', 'test.before' => 'beforeTest', 'step.before' => 'beforeStep', 'test.fail' => 'testFailed', 'result.print.after' => 'print', ); // methods that handle events public function afterSuite(\Codeception\Event\SuiteEvent $e) {} public function beforeTest(\Codeception\Event\TestEvent $e) {} public function beforeStep(\Codeception\Event\StepEvent $e) {} public function testFailed(\Codeception\Event\FailEvent $e) {} public function print(\Codeception\Event\PrintResultEvent $e) {} } {% endhighlight %} By implementing event handling methods you can listen for events and even update passed objects. Extensions have some basic methods you can use: * `write` - prints to the screen * `writeln` - prints to the screen with a new-line character at the end * `getModule` - allows you to access a module * `hasModule` - checks if a module is enabled * `getModuleNames` - list all enabled modules * `_reconfigure` - can be implemented instead of overriding the constructor ### Enabling Extension Once you've implemented a simple extension class, you can require it in `tests/_bootstrap.php`, load it with Composer's autoloader defined in `composer.json`, or store the class inside `tests/_support`dir. You can then enable it in `codeception.yml` {% highlight yaml %} extensions: enabled: [MyCustomExtension] {% endhighlight %} Extensions can also be enabled per suite inside suite configs (like `acceptance.suite.yml`) and for a specific environment. ### Configuring Extension In the extension, you can access the currently passed options via the `options` property. You also can access the global configuration via the `\Codeception\Configuration::config()` method. If you want to have custom options for your extension, you can pass them in the `codeception.yml` file: {% highlight yaml %} extensions: enabled: [MyCustomExtension] config: MyCustomExtension: param: value {% endhighlight %} The passed in configuration is accessible via the `config` property: `$this->config['param']`. Check out a very basic extension [Notifier](https://github.com/Codeception/Notifier). ### Custom Commands You can add your own commands to Codeception. Your custom commands have to implement the interface Codeception\CustomCommandInterface, because there has to be a function to get the name of the command. You have to register your command in the file `codeception.yml`: {% highlight yaml %} extensions: commands: [Project\Command\MyCustomCommand] {% endhighlight %} If you want to activate the Command globally, because you are using more then one `codeception.yml` file, you have to register your command in the `codeception.dist.yml` in the root folder of your project. Please see a [complete example](https://gist.github.com/sd-tm/37d5f9bca871c72648cb) ## Group Objects Group Objects are extensions listening for the events of tests belonging to a specific group. When a test is added to a group: {% highlight php %} group('admin'); $I = new AcceptanceTester($scenario); {% endhighlight %} This test will trigger the following events: * `test.before.admin` * `step.before.admin` * `step.after.admin` * `test.success.admin` * `test.fail.admin` * `test.after.admin` A group object is built to listen for these events. It is useful when an additional setup is required for some of your tests. Let's say you want to load fixtures for tests that belong to the `admin` group: {% highlight php %} writeln('inserting additional admin users...'); $db = $this->getModule('Db'); $db->haveInDatabase('users', array('name' => 'bill', 'role' => 'admin')); $db->haveInDatabase('users', array('name' => 'john', 'role' => 'admin')); $db->haveInDatabase('users', array('name' => 'mark', 'role' => 'banned')); } public function _after(\Codeception\Event\TestEvent $e) { $this->writeln('cleaning up admin users...'); // ... } } {% endhighlight %} A group class can be created with `php codecept generate:group groupname` command. Group classes will be stored in the `tests/_support/Group` directory. A group class can be enabled just like you enable an extension class. In the file `codeception.yml`: {% highlight yaml %} extensions: enabled: [Group\Admin] {% endhighlight %} Now the Admin group class will listen for all events of tests that belong to the `admin` group. ## Custom Reporters In order to customize the output, you can use Extensions, the way it is done in [SimpleOutput Extension](https://github.com/Codeception/Codeception/blob/master/ext%2FSimpleOutput.php). But what if you need to change the output format of the XML or JSON results triggered with the `--xml` or `--json` options? Codeception uses printers from PHPUnit and overrides some of them. If you need to customize one of the standard reporters you can override them too. If you are thinking on implementing your own reporter you should add a `reporters` section to `codeception.yml` and override one of the standard printer classes with one of your own: {% highlight yaml %} reporters: xml: Codeception\PHPUnit\Log\JUnit html: Codeception\PHPUnit\ResultPrinter\HTML tap: PHPUnit_Util_Log_TAP json: PHPUnit_Util_Log_JSON report: Codeception\PHPUnit\ResultPrinter\Report {% endhighlight %} All reporters implement the [PHPUnit_Framework_TestListener](https://phpunit.de/manual/current/en/extending-phpunit.html#extending-phpunit.PHPUnit_Framework_TestListener) interface. It is recommended to read the code of the original reporter before overriding it. ## Conclusion Each feature mentioned above may help dramatically when using Codeception to automate the testing of large projects, although some features may require advanced knowledge of PHP. There is no "best practice" or "use cases" when we talk about groups, extensions, or other powerful features of Codeception. If you see you have a problem that can be solved using these extensions, then give them a try. * **Next Chapter: [Data >](/docs/09-Data)** * **Previous Chapter: [< BDD](/docs/07-BDD)**