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
- Host: GitHub
- URL: https://github.com/springerpe/graphite-smoke-tests
- Owner: SpringerPE
- Created: 2017-03-20T12:22:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-16T11:56:35.000Z (almost 9 years ago)
- Last Synced: 2025-01-14T04:44:36.184Z (over 1 year ago)
- Language: Go
- Size: 994 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```