package internal_models import ( "testing" "github.com/influxdata/telegraf/testutil" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestFilter_Empty(t *testing.T) { f := Filter{} measurements := []string{ "foo", "bar", "barfoo", "foo_bar", "foo.bar", "foo-bar", "supercalifradjulisticexpialidocious", } for _, measurement := range measurements { if !f.ShouldFieldsPass(measurement) { t.Errorf("Expected measurement %s to pass", measurement) } } } func TestFilter_NamePass(t *testing.T) { f := Filter{ NamePass: []string{"foo*", "cpu_usage_idle"}, } require.NoError(t, f.CompileFilter()) passes := []string{ "foo", "foo_bar", "foo.bar", "foo-bar", "cpu_usage_idle", } drops := []string{ "bar", "barfoo", "bar_foo", "cpu_usage_busy", } for _, measurement := range passes { if !f.ShouldNamePass(measurement) { t.Errorf("Expected measurement %s to pass", measurement) } } for _, measurement := range drops { if f.ShouldNamePass(measurement) { t.Errorf("Expected measurement %s to drop", measurement) } } } func TestFilter_NameDrop(t *testing.T) { f := Filter{ NameDrop: []string{"foo*", "cpu_usage_idle"}, } require.NoError(t, f.CompileFilter()) drops := []string{ "foo", "foo_bar", "foo.bar", "foo-bar", "cpu_usage_idle", } passes := []string{ "bar", "barfoo", "bar_foo", "cpu_usage_busy", } for _, measurement := range passes { if !f.ShouldNamePass(measurement) { t.Errorf("Expected measurement %s to pass", measurement) } } for _, measurement := range drops { if f.ShouldNamePass(measurement) { t.Errorf("Expected measurement %s to drop", measurement) } } } func TestFilter_FieldPass(t *testing.T) { f := Filter{ FieldPass: []string{"foo*", "cpu_usage_idle"}, } require.NoError(t, f.CompileFilter()) passes := []string{ "foo", "foo_bar", "foo.bar", "foo-bar", "cpu_usage_idle", } drops := []string{ "bar", "barfoo", "bar_foo", "cpu_usage_busy", } for _, measurement := range passes { if !f.ShouldFieldsPass(measurement) { t.Errorf("Expected measurement %s to pass", measurement) } } for _, measurement := range drops { if f.ShouldFieldsPass(measurement) { t.Errorf("Expected measurement %s to drop", measurement) } } } func TestFilter_FieldDrop(t *testing.T) { f := Filter{ FieldDrop: []string{"foo*", "cpu_usage_idle"}, } require.NoError(t, f.CompileFilter()) drops := []string{ "foo", "foo_bar", "foo.bar", "foo-bar", "cpu_usage_idle", } passes := []string{ "bar", "barfoo", "bar_foo", "cpu_usage_busy", } for _, measurement := range passes { if !f.ShouldFieldsPass(measurement) { t.Errorf("Expected measurement %s to pass", measurement) } } for _, measurement := range drops { if f.ShouldFieldsPass(measurement) { t.Errorf("Expected measurement %s to drop", measurement) } } } func TestFilter_TagPass(t *testing.T) { filters := []TagFilter{ TagFilter{ Name: "cpu", Filter: []string{"cpu-*"}, }, TagFilter{ Name: "mem", Filter: []string{"mem_free"}, }} f := Filter{ TagPass: filters, } require.NoError(t, f.CompileFilter()) passes := []map[string]string{ {"cpu": "cpu-total"}, {"cpu": "cpu-0"}, {"cpu": "cpu-1"}, {"cpu": "cpu-2"}, {"mem": "mem_free"}, } drops := []map[string]string{ {"cpu": "cputotal"}, {"cpu": "cpu0"}, {"cpu": "cpu1"}, {"cpu": "cpu2"}, {"mem": "mem_used"}, } for _, tags := range passes { if !f.ShouldTagsPass(tags) { t.Errorf("Expected tags %v to pass", tags) } } for _, tags := range drops { if f.ShouldTagsPass(tags) { t.Errorf("Expected tags %v to drop", tags) } } } func TestFilter_TagDrop(t *testing.T) { filters := []TagFilter{ TagFilter{ Name: "cpu", Filter: []string{"cpu-*"}, }, TagFilter{ Name: "mem", Filter: []string{"mem_free"}, }} f := Filter{ TagDrop: filters, } require.NoError(t, f.CompileFilter()) drops := []map[string]string{ {"cpu": "cpu-total"}, {"cpu": "cpu-0"}, {"cpu": "cpu-1"}, {"cpu": "cpu-2"}, {"mem": "mem_free"}, } passes := []map[string]string{ {"cpu": "cputotal"}, {"cpu": "cpu0"}, {"cpu": "cpu1"}, {"cpu": "cpu2"}, {"mem": "mem_used"}, } for _, tags := range passes { if !f.ShouldTagsPass(tags) { t.Errorf("Expected tags %v to pass", tags) } } for _, tags := range drops { if f.ShouldTagsPass(tags) { t.Errorf("Expected tags %v to drop", tags) } } } func TestFilter_ShouldMetricsPass(t *testing.T) { m := testutil.TestMetric(1, "testmetric") f := Filter{ NameDrop: []string{"foobar"}, } require.NoError(t, f.CompileFilter()) require.True(t, f.ShouldMetricPass(m)) m = testutil.TestMetric(1, "foobar") require.False(t, f.ShouldMetricPass(m)) } func TestFilter_FilterTagsNoMatches(t *testing.T) { pretags := map[string]string{ "host": "localhost", "mytag": "foobar", } f := Filter{ TagExclude: []string{"nomatch"}, } require.NoError(t, f.CompileFilter()) f.FilterTags(pretags) assert.Equal(t, map[string]string{ "host": "localhost", "mytag": "foobar", }, pretags) f = Filter{ TagInclude: []string{"nomatch"}, } require.NoError(t, f.CompileFilter()) f.FilterTags(pretags) assert.Equal(t, map[string]string{}, pretags) } func TestFilter_FilterTagsMatches(t *testing.T) { pretags := map[string]string{ "host": "localhost", "mytag": "foobar", } f := Filter{ TagExclude: []string{"ho*"}, } require.NoError(t, f.CompileFilter()) f.FilterTags(pretags) assert.Equal(t, map[string]string{ "mytag": "foobar", }, pretags) pretags = map[string]string{ "host": "localhost", "mytag": "foobar", } f = Filter{ TagInclude: []string{"my*"}, } require.NoError(t, f.CompileFilter()) f.FilterTags(pretags) assert.Equal(t, map[string]string{ "mytag": "foobar", }, pretags) }