mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-06 16:12:19 +01:00
12fe915b48
* [vmalert] add prometheus template function * make linter be happy Co-authored-by: Aliaksandr Valialkin <valyala@gmail.com>
37 lines
960 B
Go
37 lines
960 B
Go
package config
|
|
|
|
import (
|
|
"net/url"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/common"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
u, _ := url.Parse("https://victoriametrics.com/path")
|
|
common.InitTemplateFunc(u)
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func TestParseGood(t *testing.T) {
|
|
if _, err := Parse([]string{"testdata/*good.rules", "testdata/dir/*good.*"}, true); err != nil {
|
|
t.Errorf("error parsing files %s", err)
|
|
}
|
|
}
|
|
|
|
func TestParseBad(t *testing.T) {
|
|
if _, err := Parse([]string{"testdata/rules0-bad.rules"}, true); err == nil {
|
|
t.Errorf("expected syntaxt error")
|
|
}
|
|
if _, err := Parse([]string{"testdata/dir/rules0-bad.rules"}, true); err == nil {
|
|
t.Errorf("expected template annotation error")
|
|
}
|
|
if _, err := Parse([]string{"testdata/dir/rules1-bad.rules"}, true); err == nil {
|
|
t.Errorf("expected same group error")
|
|
}
|
|
if _, err := Parse([]string{"testdata/*.yaml"}, true); err == nil {
|
|
t.Errorf("expected empty group")
|
|
}
|
|
}
|