open-vault/vendor/github.com/michaelklishin/rabbit-hole/CONTRIBUTING.md
Chris Hoffman a1c8c8459b
Bump Deps (#4868)
* bump deps

* revert script changes

* adding govendor miss
2018-07-06 12:09:34 -04:00

38 lines
1.2 KiB
Markdown

## Contributing
The workflow is pretty standard:
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Run integration tests (see below)
4. Commit your changes (`git commit -am 'Add some feature'`)
5. Push to the branch (`git push -u origin my-new-feature`)
6. Submit a pull request
## Running Tests
### Required Plugins
The test suite assumes you have a RabbitMQ node running on localhost with `rabbitmq_management` and
`rabbitmq_shovel_management` plugins enabled and that
`rabbitmqctl` is available in `PATH` (or `RABBITHOLE_RABBITMQCTL` points to it).
To enable the plugins:
rabbitmq-plugins enable rabbitmq_management rabbitmq_shovel_management
That will enable `rabbitmq_shovel` as a dependency.
### Setting Up Virtual Hosts and Permissions
Before running the tests, make sure to run `bin/ci/before_build.sh` that will create a vhost and user(s) needed
by the test suite.
### Running Tests
The project uses [Ginkgo](http://onsi.github.io/ginkgo/) and [Gomega](https://github.com/onsi/gomega).
To clone dependencies and run tests, use `make`. It is also possible
to use the brilliant [Ginkgo CLI runner](http://onsi.github.io/ginkgo/#the-ginkgo-cli) e.g.
to only run a subset of tests.