2014-08-15 03:30:47 +04:00
|
|
|
This directory contains various tests for the basic application.
|
|
|
|
|
|
|
|
Tests in `codeception` directory are developed with [Codeception PHP Testing Framework](http://codeception.com/).
|
2013-11-14 11:05:09 -05:00
|
|
|
|
2013-12-28 15:04:08 -05:00
|
|
|
After creating the basic application, follow these steps to prepare for the tests:
|
2013-11-14 11:05:09 -05:00
|
|
|
|
2014-08-15 03:30:47 +04:00
|
|
|
1. Install Codeception if it's not yet installed:
|
|
|
|
|
|
|
|
```
|
|
|
|
composer global require "codeception/codeception=2.0.*"
|
|
|
|
composer global require "codeception/specify=*"
|
|
|
|
composer global require "codeception/verify=*"
|
|
|
|
```
|
|
|
|
|
|
|
|
If you've never used Composer for global packages run `composer global status`. It should output:
|
|
|
|
|
|
|
|
```
|
|
|
|
Changed current directory to <directory>
|
|
|
|
```
|
2014-02-07 19:36:20 +04:00
|
|
|
|
2014-08-15 03:30:47 +04:00
|
|
|
Then add `<directory>/vendor/bin` to you `PATH` environment variable. Now we're able to use `codecept` from command
|
|
|
|
line globally.
|
2013-12-17 17:24:23 +01:00
|
|
|
|
2014-08-24 15:26:57 +04:00
|
|
|
2. Install faker extension by running the following from template root directory where `composer.json` is:
|
|
|
|
|
|
|
|
```
|
|
|
|
composer require --dev yiisoft/yii2-faker:*
|
|
|
|
```
|
|
|
|
|
2014-08-25 02:00:49 +04:00
|
|
|
3. Create `yii2_basic_tests` database and update it by applying migrations:
|
2014-08-24 15:26:57 +04:00
|
|
|
|
|
|
|
```
|
2014-08-25 02:00:49 +04:00
|
|
|
codeception/bin/yii migrate
|
2014-08-24 15:26:57 +04:00
|
|
|
```
|
|
|
|
|
|
|
|
4. Build the test suites:
|
2014-08-15 03:30:47 +04:00
|
|
|
|
|
|
|
```
|
|
|
|
codecept build
|
|
|
|
```
|
|
|
|
|
2014-08-24 15:26:57 +04:00
|
|
|
5. In order to be able to run acceptance tests you need to start a webserver. The simplest way is to use PHP built in
|
2014-08-15 03:30:47 +04:00
|
|
|
webserver. In the `web` directory execute the following:
|
|
|
|
|
|
|
|
```
|
|
|
|
php -S localhost:8080
|
|
|
|
```
|
2013-11-14 11:11:51 -05:00
|
|
|
|
2014-08-24 15:26:57 +04:00
|
|
|
6. Now you can run the tests with the following commands:
|
2013-12-28 15:04:08 -05:00
|
|
|
|
|
|
|
```
|
|
|
|
# run all available tests
|
2014-08-15 03:30:47 +04:00
|
|
|
codecept run
|
2013-12-28 15:04:08 -05:00
|
|
|
# run acceptance tests
|
2014-08-15 03:30:47 +04:00
|
|
|
codecept run acceptance
|
2013-12-28 15:04:08 -05:00
|
|
|
# run functional tests
|
2014-08-15 03:30:47 +04:00
|
|
|
codecept run functional
|
2013-12-28 15:04:08 -05:00
|
|
|
# run unit tests
|
2014-08-15 03:30:47 +04:00
|
|
|
codecept run unit
|
2013-12-28 15:04:08 -05:00
|
|
|
```
|
|
|
|
|
2013-11-14 11:11:51 -05:00
|
|
|
Please refer to [Codeception tutorial](http://codeception.com/docs/01-Introduction) for
|
2013-12-28 15:04:08 -05:00
|
|
|
more details about writing and running acceptance, functional and unit tests.
|