To develop Salus, you will need to install Ruby and the relevant dependencies. Both Ruby gems and system dependencies are required depending on the scanners that are being executed.
### install Ruby per https://www.ruby-lang.org/en/documentation/installation/
### Install gems
gem install bundler
bundle install
### Install other system dependencies
# for NPM, install per https://www.npmjs.com/get-npm
# for Go reporting, install Go per https://golang.org/doc/install#install
# for PatternSearch, install sift per https://sift-tool.org/download
# for end-to-end tests and running Salus, install Docker per https://docs.docker.com/install
If all installation was successful, you can run the test with rspec.
bundle exec rspec spec
There are also integration tests that check that the Salus container has all necessary dependencies installed in its container.
docker build -t salus-local .
docker build -f Dockerfile.tests -t salus-integration-tests .
docker run salus-integration-tests