An open API service indexing awesome lists of open source software.

https://github.com/springerpe/graphite-smoke-tests

A suite of smoke tests for graphite
https://github.com/springerpe/graphite-smoke-tests

Last synced: 5 months ago
JSON representation

A suite of smoke tests for graphite

Awesome Lists containing this project

README

          

# Smoke tests for graphite

## How to install this project
```
go get github.com/SpringerPE/graphite-smoke-tests
go get github.com/onsi/ginkgo/ginkgo
```

## How to run these tests

Copy and modify the example configuration file under `./examples/test.config.json` or
create a new one with the following contents:

```
{
"api": "", #api.graphite.example
"apiPort": 80 # (optional, default: 80)
"host": "", #graphite.host.example
"port": 2003 # (optional, default: 80)
"tcpEnabled": true,
"udpEnabled": true
}
```

export the `SMOKE_TEST_CONFIG` variable with the location of the smoke tests:

```
export SMOKE_TEST_CONFIG=./smoke_tests_config.json
```

run the tests:

```
ginkgo -r
```