Thanks for getting here. If you have a good will to improve CodeceptJS we are always glad to help. Ask questions, raise issues, ping in Twitter.
To start you need:
- Fork the repo.
- Run
npm installto install all required libraries - Do the changes.
- Add/Update Test (if possible)
- Update documentation
- Commit and Push to your fork
- Make Pull Request
To run codeceptjs from this repo use:
node bin/codecept.js
Depending on a type of a change you should do the following.
Please keep in mind that CodeceptJS have unified API for WebDriverIO, Appium, Protractor, SeleniumWebdriver, Nightmare. Tests written using those helpers should be compatible at syntax level. However, some of helpers may contain unique methods. That happen. If, for instance, WebDriverIO have method XXX and SeleniumWebDriver doesn't, you can implement XXX inside SeleniumWebDriver using the same method signature.
*Whenever a new method or new behavior is added it should be documented in a docblock. Valid JS-example is required! Do not edit docs/helpers/, those files are generated from docblocks in corresponding helpers! *
Working test is highly appreciated. To run the test suite you need:
- selenium server + chromedriver
- PHP installed
To launch PHP demo application run:
php -S 127.0.0.1:8000 -t test/data/appExecute test suite:
mocha test/helper/WebDriverIO_test.js
mocha test/helper/Puppeteer_test.js
mocha test/helper/Nightmare_test.jsUse --grep to execute tests only for changed parts.
If you need to add new HTML page for a test, please create new .php file in to tests/data/app/view/form:
Adding myexample page:
tests/data/app/view/form/myexample.phpThen is should be accessible at:
http://localhost:8000/form/myexample*Whenever a new method or new behavior is added it should be documented in a docblock. Valid JS-example is required! Do not edit docs/helpers/, those files are generated from docblocks in corresponding helpers! *
Protractor Helper extends SeleniumWebdriver. For non-protractor specific changes you will need to update SeleniumWebdriver helper instead. See section above.
In case you do Protractor-specific change, please add a test:To run the test suite you need:
- selenium server + chromedriver
Demo application is located at: http://davertmik.github.io/angular-demo-app
Whenever a new method or new behavior is added it should be documented in a docblock. Valid JS-example is required!
Adding a test is highly appreciated.
Start JSON server to run tests:
npm run json-serverEdit a test at test/rest/REST_test.js or test/rest/ApiDataFactory_test.js
*Whenever a new method or new behavior is added it should be documented in a docblock. Valid JS-example is required! Do not edit docs/helpers/, those files are generated from docblocks in corresponding helpers! *
It is recommended to run mobile tests on CI. So do the changes, make pull request, see the CI status. Appium tests are executed at Semaphore CI.
Before applying any Core changes please raise an issue to discuss that change with core team. Please try to add corresponding testcase to runner or unit.
Documentation is stored in /docs directory in markdown format.
Documentation for helpers is a part of a source code. Whenever you need to update docs for a helper do it inside a .js file. Then run
npm run docs
To update markdown documentation. Shared documentation for helpers are located in docs/webapi/*.mustache. Inside a docblock those files can be included like this:
/**
* {{> ../webapi/click }}
*/
click() {
// ...
}Whenever you implemented a feature/bugfix
Run unit tests:
mocha test/unitRun general tests:
mocha test/runnerInstead of manually running php, json_server and selenium for before tests you
can use docker-compose to run those automatically.
You can find docker-compose.yml file in test directory and run all commands
from this directory. Currently we provide following commands to run tests with
respective dependencies:
docker-compose run --rm test-unitdocker-compose run --rm test-helpers
# or pass path to helper test to run specific helper,
# for example to run only WebDriverIO tests:
docker-compose run --rm test-helpers test/helper/WebDriverIO_test.js
# Or to run only rest and ApiDataFactory tests
docker-compose run --rm test-helpers test/restTo that we provide three separate services respectively for WebDriverIO, Nightmare, Puppeteer and Protractor tests:
docker-compose run --rm test-acceptance.webdriverio
docker-compose run --rm test-acceptance.nightmare
docker-compose run --rm test-acceptance.puppeteer
docker-compose run --rm test-acceptance.protractorBy default dockerized tests are run against node 8.9.1, you can run it against
specific version as long as there is Docker container available for such
version. To do that you need to build codecept's Docker image prior to running
tests and pass NODE_VERSION as build argument.
For example to prepare test-helpers containers based on node 9.4.0:
docker-compose build --build-arg NODE_VERSION=9.4.0 test-helpersAnd now every command based on test-helpers service will use node 9.4.0. The
same argument can be passed when building unit and acceptance tests services.
We're currently using bunch of CI services to build and test codecept in different environments. Here's short summary of what are differences between separate services
Travis CI uses runs tests against Node 8 and Node 9. In total it uses 8 jobs to
build each helper against both Node versions. For every job it runs unit tests
first, then ApiDataFactory and REST tests present in test/rest directory.
Finally if those pass we run specific helper tests found in test/helper
directory. It doesn't run acceptance tests.
Config is present in .travis.yml file.
Here we use CodeceptJS docker image to build and execute tests inside it. We
start with building Docker container based on Dockerfile present in main project
directory. Then we run (in this order) unit tests, all helpers present in
test/helpers, then we go with test/rest directory and finally if everything
passed so far it executes acceptance tests. For easier maintenance and local
debugging CircleCI uses docker-compose.yml file from test directory.
You can find Circle config in .circleci directory.
Currently Semaphore runs only Appium helper tests.