mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-27 02:46:47 +01:00
31 lines
474 B
Go
31 lines
474 B
Go
package promql
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestIsAggrFuncModifierSuccess(t *testing.T) {
|
|
f := func(s string) {
|
|
t.Helper()
|
|
if !isAggrFuncModifier(s) {
|
|
t.Fatalf("expecting valid funcModifier: %q", s)
|
|
}
|
|
}
|
|
f("by")
|
|
f("BY")
|
|
f("without")
|
|
f("Without")
|
|
}
|
|
|
|
func TestIsAggrFuncModifierError(t *testing.T) {
|
|
f := func(s string) {
|
|
t.Helper()
|
|
if isAggrFuncModifier(s) {
|
|
t.Fatalf("unexpected valid funcModifier: %q", s)
|
|
}
|
|
}
|
|
f("byfix")
|
|
f("on")
|
|
f("ignoring")
|
|
}
|