We recommend to intall ChefDK to your development environment. It provides all tools used in the process of testig this cookbook.
Before starting, make sure you have installed all dependencies:
git clone https://github.com/Icinga/chef-icinga2.git
cd chef-icinga2
chef exec bundle install
- Vagrant
- VirtualBox (other Vagrant provider may work but are not tested)
To run all test suits on all platforms:
kitchen test
Instead of running all integration tests, you can specify each suite and platform to create the instances. All steps can be run separately.
kitchen create server-ubuntu-1404
kitchen converge server-ubuntu-1404
kitchen setup server-ubuntu-1404
kitchen verify server-ubuntu-1404
kitchen destroy server-ubuntu-1404
List existing instances
kitchen list
Unit tests are implemented in ChefSpec/RSpec:
chef exec rake spec
Linting is done with Foodcritic:
chef exec rake foodcritic
Ruby code is analyzed with Rubocop:
chef exec rake rubocop