Files
karma/internal/transform/strip_test.go
Łukasz Mierzwa b71883f1ef Migrate to new repo
Forked unsee from cloudflare, so import paths needs to be updated
2018-06-07 15:30:57 +02:00

165 lines
3.3 KiB
Go

package transform_test
import (
"reflect"
"testing"
"github.com/prymitive/unsee/internal/transform"
)
type stripLabelTest struct {
strip []string
keep []string
before map[string]string
after map[string]string
}
var stripLabelTests = []stripLabelTest{
stripLabelTest{
strip: []string{"env"},
keep: []string{},
before: map[string]string{
"host": "localhost",
"env": "production",
"level": "info",
},
after: map[string]string{
"host": "localhost",
"level": "info",
},
},
stripLabelTest{
strip: []string{"server"},
keep: []string{},
before: map[string]string{
"host": "localhost",
"env": "production",
"level": "info",
},
after: map[string]string{
"host": "localhost",
"env": "production",
"level": "info",
},
},
stripLabelTest{
strip: []string{},
keep: []string{},
before: map[string]string{
"host": "localhost",
"env": "production",
"level": "info",
},
after: map[string]string{
"host": "localhost",
"env": "production",
"level": "info",
},
},
stripLabelTest{
strip: []string{"host"},
keep: []string{},
before: map[string]string{
"host": "localhost",
},
after: map[string]string{},
},
stripLabelTest{
strip: []string{},
keep: []string{"env"},
before: map[string]string{
"host": "localhost",
"env": "production",
"level": "info",
},
after: map[string]string{
"env": "production",
},
},
stripLabelTest{
strip: []string{"env"},
keep: []string{"host"},
before: map[string]string{
"host": "localhost",
"env": "production",
"level": "info",
},
after: map[string]string{
"host": "localhost",
},
},
stripLabelTest{
strip: []string{},
keep: []string{"env"},
before: map[string]string{
"host": "localhost",
"level": "info",
},
after: map[string]string{},
},
}
func TestStripLables(t *testing.T) {
for _, testCase := range stripLabelTests {
labels := transform.StripLables(testCase.keep, testCase.strip, testCase.before)
if !reflect.DeepEqual(labels, testCase.after) {
t.Errorf("StripLables failed, expected %v, got %v", testCase.after, labels)
}
}
}
type stripReceiverTest struct {
strip []string
keep []string
receiver string
stripped bool
}
var stripReceiverTests = []stripReceiverTest{
stripReceiverTest{
strip: []string{},
keep: []string{},
receiver: "default",
stripped: false,
},
stripReceiverTest{
strip: []string{"default"},
keep: []string{},
receiver: "default",
stripped: true,
},
stripReceiverTest{
strip: []string{"default"},
keep: []string{"default"},
receiver: "default",
stripped: true,
},
stripReceiverTest{
strip: []string{},
keep: []string{"default"},
receiver: "default",
stripped: false,
},
stripReceiverTest{
strip: []string{"foo", "bar"},
keep: []string{},
receiver: "default",
stripped: false,
},
stripReceiverTest{
strip: []string{"foo", "default"},
keep: []string{"foo", "bar"},
receiver: "default",
stripped: true,
},
}
func TestStripReceivers(t *testing.T) {
for _, testCase := range stripReceiverTests {
stripped := transform.StripReceivers(testCase.keep, testCase.strip, testCase.receiver)
if stripped != testCase.stripped {
t.Errorf("StripReceivers failed, expected %v, got %v", testCase.stripped, stripped)
}
}
}