Testing the CheckMonitor

This commit is contained in:
Armon Dadgar 2014-01-20 16:58:05 -10:00
parent 870ed8fed6
commit 714df8f9b3
1 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,63 @@
package agent
import (
"github.com/hashicorp/consul/consul/structs"
"log"
"os"
"testing"
"time"
)
type MockNotify struct {
state map[string]string
updates map[string]int
}
func (m *MockNotify) UpdateCheck(id, status string) {
m.state[id] = status
old := m.updates[id]
m.updates[id] = old + 1
}
func expectStatus(t *testing.T, script, status string) {
mock := &MockNotify{
state: make(map[string]string),
updates: make(map[string]int),
}
check := &CheckMonitor{
Notify: mock,
CheckID: "foo",
Script: script,
Interval: 25 * time.Millisecond,
Logger: log.New(os.Stderr, "", log.LstdFlags),
}
check.Start()
defer check.Stop()
time.Sleep(50 * time.Millisecond)
// Should have at least 2 updates
if mock.updates["foo"] < 2 {
t.Fatalf("should have 2 updates %v", mock.updates)
}
if mock.state["foo"] != status {
t.Fatalf("should be %v %v", status, mock.state)
}
}
func TestCheckMonitor_Passing(t *testing.T) {
expectStatus(t, "exit 0", structs.HealthPassing)
}
func TestCheckMonitor_Warning(t *testing.T) {
expectStatus(t, "exit 1", structs.HealthWarning)
}
func TestCheckMonitor_Critical(t *testing.T) {
expectStatus(t, "exit 2", structs.HealthCritical)
}
func TestCheckMonitor_BadCmd(t *testing.T) {
expectStatus(t, "foobarbaz", structs.HealthCritical)
}