alertmanager/test/acceptance/simple_test.go

180 lines
4.4 KiB
Go
Raw Normal View History

package test
import (
"fmt"
"testing"
"time"
. "github.com/prometheus/alertmanager/test"
)
func TestSomething(t *testing.T) {
t.Parallel()
conf := `
routes:
- send_to: "default"
group_wait: 1s
group_interval: 1s
notification_configs:
- name: "default"
send_resolved: true
webhook_configs:
- url: 'http://%s'
`
// Create a new acceptance test that instantiates new Alertmanagers
// with the given configuration and verifies times with the given
// tollerance.
at := NewAcceptanceTest(t, &AcceptanceOpts{
Tolerance: 150 * time.Millisecond,
})
// Create a collector to which alerts can be written and verified
// against a set of expected alert notifications.
co := at.Collector("webhook")
// Run something that satisfies the webhook interface to which the
// Alertmanager pushes as defined by its configuration.
wh := NewWebhook(co)
// Create a new Alertmanager process listening to a random port
am := at.Alertmanager(fmt.Sprintf(conf, wh.Address()))
// Declare pushes to be made to the Alertmanager at the given time.
// Times are provided in fractions of seconds.
am.Push(At(1), Alert("alertname", "test").Active(1))
2015-10-07 14:18:55 +00:00
at.Do(At(1.2), func() {
am.Terminate()
am.Start()
})
am.Push(At(3.5), Alert("alertname", "test").Active(1, 3))
// Declare which alerts are expected to arrive at the collector within
// the defined time intervals.
co.Want(Between(2, 2.5), Alert("alertname", "test").Active(1))
co.Want(Between(3, 3.5), Alert("alertname", "test").Active(1))
2015-09-30 15:35:33 +00:00
co.Want(Between(4, 4.5), Alert("alertname", "test").Active(1, 3))
// Start the flow as defined above and run the checks afterwards.
at.Run()
}
func TestSilencing(t *testing.T) {
t.Parallel()
conf := `
2015-10-01 19:28:18 +00:00
routes:
- send_to: "default"
group_wait: 1s
group_interval: 1s
notification_configs:
- name: "default"
send_resolved: true
webhook_configs:
- url: 'http://%s'
2015-10-01 19:28:18 +00:00
`
at := NewAcceptanceTest(t, &AcceptanceOpts{
Tolerance: 150 * time.Millisecond,
})
co := at.Collector("webhook")
wh := NewWebhook(co)
2015-10-01 19:28:18 +00:00
am := at.Alertmanager(fmt.Sprintf(conf, wh.Address()))
2015-10-01 19:28:18 +00:00
// No repeat interval is configured. Thus, we receive an alert
// notification every second.
2015-10-01 20:15:27 +00:00
am.Push(At(1), Alert("alertname", "test1").Active(1))
2015-10-01 19:28:18 +00:00
am.Push(At(1), Alert("alertname", "test2").Active(1))
co.Want(Between(2, 2.5),
Alert("alertname", "test1").Active(1),
Alert("alertname", "test2").Active(1),
)
// Add a silence that affects the first alert.
2015-10-01 20:22:51 +00:00
am.SetSilence(At(2.5), Silence(2, 4.5).Match("alertname", "test1"))
2015-10-01 19:28:18 +00:00
co.Want(Between(3, 3.5), Alert("alertname", "test2").Active(1))
co.Want(Between(4, 4.5), Alert("alertname", "test2").Active(1))
2015-10-01 20:22:51 +00:00
// Silence should be over now and we receive both alerts again.
2015-10-01 19:28:18 +00:00
co.Want(Between(5, 5.5),
Alert("alertname", "test1").Active(1),
Alert("alertname", "test2").Active(1),
)
// Start the flow as defined above and run the checks afterwards.
2015-10-01 20:15:27 +00:00
at.Run()
2015-10-01 19:28:18 +00:00
}
func TestBatching(t *testing.T) {
t.Parallel()
conf := `
routes:
- send_to: "default"
group_wait: 1s
group_interval: 1s
notification_configs:
- name: "default"
send_resolved: true
repeat_interval: 5s
webhook_configs:
- url: 'http://%s'
`
at := NewAcceptanceTest(t, &AcceptanceOpts{
Tolerance: 150 * time.Millisecond,
})
co := at.Collector("webhook")
wh := NewWebhook(co)
am := at.Alertmanager(fmt.Sprintf(conf, wh.Address()))
am.Push(At(1.1), Alert("alertname", "test1").Active(1))
am.Push(At(1.9), Alert("alertname", "test5").Active(1))
am.Push(At(2.3),
Alert("alertname", "test2").Active(1.5),
Alert("alertname", "test3").Active(1.5),
Alert("alertname", "test4").Active(1.6),
)
co.Want(Between(2.0, 2.5),
Alert("alertname", "test1").Active(1),
Alert("alertname", "test5").Active(1),
)
// Only expect the new ones with the next group interval.
co.Want(Between(3, 3.5),
Alert("alertname", "test2").Active(1.5),
Alert("alertname", "test3").Active(1.5),
Alert("alertname", "test4").Active(1.6),
)
// While no changes happen expect no additional notifications
// until the 5s repeat interval has ended.
2015-10-01 07:43:51 +00:00
// The last three notifications should sent with the first two even
// though their repeat interval has not yet passed. This way fragmented
2015-09-30 17:03:19 +00:00
// batches are unified and notification noise reduced.
co.Want(Between(7, 7.5),
Alert("alertname", "test1").Active(1),
Alert("alertname", "test5").Active(1),
Alert("alertname", "test2").Active(1.5),
Alert("alertname", "test3").Active(1.5),
Alert("alertname", "test4").Active(1.6),
)
at.Run()
}