gatus/config/config_test.go

110 lines
3.1 KiB
Go
Raw Normal View History

2019-09-06 06:02:00 +02:00
package config
import (
"fmt"
"testing"
"time"
)
2019-09-06 06:02:00 +02:00
2019-10-20 04:03:55 +02:00
func TestParseAndValidateConfigBytes(t *testing.T) {
config, err := parseAndValidateConfigBytes([]byte(`
2019-09-06 06:02:00 +02:00
services:
- name: twinnation
url: https://twinnation.org/actuator/health
interval: 15s
2019-09-06 06:02:00 +02:00
conditions:
- "$STATUS == 200"
- name: github
url: https://api.github.com/healthz
2019-09-06 06:02:00 +02:00
conditions:
2019-09-07 02:25:31 +02:00
- "$STATUS != 400"
2019-09-06 06:02:00 +02:00
- "$STATUS != 500"
`))
2019-10-20 04:03:55 +02:00
if err != nil {
t.Error("No error should've been returned")
}
2019-09-06 06:02:00 +02:00
if len(config.Services) != 2 {
t.Error("Should have returned two services")
}
if config.Services[0].Url != "https://twinnation.org/actuator/health" {
t.Errorf("URL should have been %s", "https://twinnation.org/actuator/health")
}
if config.Services[1].Url != "https://api.github.com/healthz" {
t.Errorf("URL should have been %s", "https://api.github.com/healthz")
2019-09-06 06:02:00 +02:00
}
fmt.Println(config.Services[0].Interval)
if config.Services[0].Interval != 15*time.Second {
t.Errorf("Interval should have been %s", 15*time.Second)
2019-09-06 06:02:00 +02:00
}
if config.Services[1].Interval != 10*time.Second {
t.Errorf("Interval should have been %s, because it is the default value", 10*time.Second)
2019-09-06 06:02:00 +02:00
}
if len(config.Services[0].Conditions) != 1 {
t.Errorf("There should have been %d conditions", 1)
}
if len(config.Services[1].Conditions) != 2 {
t.Errorf("There should have been %d conditions", 2)
}
}
2019-09-10 04:21:18 +02:00
2019-10-20 04:03:55 +02:00
func TestParseAndValidateConfigBytesDefault(t *testing.T) {
config, err := parseAndValidateConfigBytes([]byte(`
2019-09-10 04:21:18 +02:00
services:
- name: twinnation
url: https://twinnation.org/actuator/health
conditions:
- "$STATUS == 200"
`))
2019-10-20 04:03:55 +02:00
if err != nil {
t.Error("No error should've been returned")
}
if config.Metrics {
t.Error("Metrics should've been false by default")
}
if config.Services[0].Url != "https://twinnation.org/actuator/health" {
t.Errorf("URL should have been %s", "https://twinnation.org/actuator/health")
}
if config.Services[0].Interval != 10*time.Second {
t.Errorf("Interval should have been %s, because it is the default value", 10*time.Second)
}
}
func TestParseAndValidateConfigBytesWithMetrics(t *testing.T) {
config, err := parseAndValidateConfigBytes([]byte(`
metrics: true
services:
- name: twinnation
url: https://twinnation.org/actuator/health
conditions:
- "$STATUS == 200"
`))
if err != nil {
t.Error("No error should've been returned")
}
if !config.Metrics {
t.Error("Metrics should have been true")
}
2019-09-10 04:21:18 +02:00
if config.Services[0].Url != "https://twinnation.org/actuator/health" {
t.Errorf("URL should have been %s", "https://twinnation.org/actuator/health")
}
if config.Services[0].Interval != 10*time.Second {
t.Errorf("Interval should have been %s, because it is the default value", 10*time.Second)
}
}
2019-10-20 04:03:55 +02:00
func TestParseAndValidateBadConfigBytes(t *testing.T) {
_, err := parseAndValidateConfigBytes([]byte(`
badconfig:
- asdsa: w0w
usadasdrl: asdxzczxc
asdas:
- soup
`))
if err == nil {
t.Error("An error should've been returned")
}
if err != ErrNoServiceInConfig {
t.Error("The error returned should have been of type ErrNoServiceInConfig")
}
}