A framework for automating resiliency testcases of cloud deployments. It is implemented in ruby, inspired by various other testing frameworks like testng, junit, ruby-testunit etc. The design goal of Goblin is to provide more features specific to resiliency testing. It is built on top of our decades of experience with various test automation frameworks and resiliency test tooling. Goblin also comes with some out of the box libraries which helps you get started easily.
In any Ubuntu based cloud application
Provides a framework for running resiliency tests reliably, comes packed with a set of defined tests, and allows extension based on new needs. Ability to integrate tests via Jenkins and post execution steps on a HipChat room.
Current out of the box libraries - Zookeeper, Couchbase, RabbitMQ, MongoDB, Cassandra
- ssh-pass
- For Jenkins setup: sudo gem install ci_reporter sudo gem install ci_reporter_test_unit
- cd src/tests/examples
- Create a new test .rb file for your component or use the provided TestSample.rb example as a reference.
- Make sure to override the validate, simulate_failure, and recover methods from TestBase in the inner Test classes.
- To induce failures, see the src/utils/core/Actions.rb class and use the methods provided as test steps.
- Create a directory under resources/environments/ or use the provided example
- Create a configuration file or update the example provided in resources/environments/example/config.yml
- Update the HipChat token/room if you have one.
- Create a test bed configuration file or update the example provided in resources/environments/example/nodes.yml and add your own server details. Update the encoded server password using utils/Encode_password.rb
- Run the script using: cd src/runner; ruby launcher.rb --files='../../src/tests/examples/TestSample.rb' --env='example'
Provides an interface to force kill (kill -9) a process using its PID or process name, whichever available.
For example:
actions.kill(node, name)
Provides an interface to stop/start/restart a well know service available on the system, given its name.
For example:
zookeeper.exhibitor_stop(node)
Provides an interface to introduce network latency using Linux utility (tc) between any two given hosts.
For example:
actions.network_latency(node, dest_ip, latency, interface)
Provides an interface to introduce packet loss (in percentage of sent packets) using Linux utility (tc) between any two given hosts.
For example:
actions.packet_loss(node, dest_ip, loss_cent, interface)
Provides an interface to block incoming and outgoing traffic on a given port for a given host. Usually used for creating a break in connectivity between two applications on different hosts communicating via a well known port. Uses Linux utility ‘iptables’.
For example:
actions.block_input_port(node, port)
- getoptlong
- yaml
- net/ssh
- net/http
- fileutils
- csv
- json
- nokogiri
- Installation via a gem
- Integration of any chat application