You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.6 KiB
97 lines
2.6 KiB
6 years ago
|
package metadata
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestPairsMD(t *testing.T) {
|
||
|
for _, test := range []struct {
|
||
|
// input
|
||
|
kv []interface{}
|
||
|
// output
|
||
|
md MD
|
||
|
}{
|
||
|
{[]interface{}{}, MD{}},
|
||
|
{[]interface{}{"k1", "v1", "k1", "v2"}, MD{"k1": "v2"}},
|
||
|
} {
|
||
|
md := Pairs(test.kv...)
|
||
|
if !reflect.DeepEqual(md, test.md) {
|
||
|
t.Fatalf("Pairs(%v) = %v, want %v", test.kv, md, test.md)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
func TestCopy(t *testing.T) {
|
||
|
const key, val = "key", "val"
|
||
|
orig := Pairs(key, val)
|
||
|
copy := orig.Copy()
|
||
|
if !reflect.DeepEqual(orig, copy) {
|
||
|
t.Errorf("copied value not equal to the original, got %v, want %v", copy, orig)
|
||
|
}
|
||
|
orig[key] = "foo"
|
||
|
if v := copy[key]; v != val {
|
||
|
t.Errorf("change in original should not affect copy, got %q, want %q", v, val)
|
||
|
}
|
||
|
}
|
||
|
func TestJoin(t *testing.T) {
|
||
|
for _, test := range []struct {
|
||
|
mds []MD
|
||
|
want MD
|
||
|
}{
|
||
|
{[]MD{}, MD{}},
|
||
|
{[]MD{Pairs("foo", "bar")}, Pairs("foo", "bar")},
|
||
|
{[]MD{Pairs("foo", "bar"), Pairs("foo", "baz")}, Pairs("foo", "bar", "foo", "baz")},
|
||
|
{[]MD{Pairs("foo", "bar"), Pairs("foo", "baz"), Pairs("zip", "zap")}, Pairs("foo", "bar", "foo", "baz", "zip", "zap")},
|
||
|
} {
|
||
|
md := Join(test.mds...)
|
||
|
if !reflect.DeepEqual(md, test.want) {
|
||
|
t.Errorf("context's metadata is %v, want %v", md, test.want)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestWithContext(t *testing.T) {
|
||
|
md := MD(map[string]interface{}{RemoteIP: "127.0.0.1", Color: "red", Mirror: true})
|
||
|
c := NewContext(context.Background(), md)
|
||
|
ctx := WithContext(c)
|
||
|
md1, ok := FromContext(ctx)
|
||
|
if !ok {
|
||
|
t.Errorf("expect ok be true")
|
||
|
t.FailNow()
|
||
|
}
|
||
|
if !reflect.DeepEqual(md1, md) {
|
||
|
t.Errorf("expect md1 equal to md")
|
||
|
t.FailNow()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestBool(t *testing.T) {
|
||
|
md := MD{RemoteIP: "127.0.0.1", Color: "red"}
|
||
|
mdcontext := NewContext(context.Background(), md)
|
||
|
assert.Equal(t, false, Bool(mdcontext, Mirror))
|
||
|
|
||
|
mdcontext = NewContext(context.Background(), MD{Mirror: true})
|
||
|
assert.Equal(t, true, Bool(mdcontext, Mirror))
|
||
|
|
||
|
mdcontext = NewContext(context.Background(), MD{Mirror: "true"})
|
||
|
assert.Equal(t, true, Bool(mdcontext, Mirror))
|
||
|
|
||
|
mdcontext = NewContext(context.Background(), MD{Mirror: "1"})
|
||
|
assert.Equal(t, true, Bool(mdcontext, Mirror))
|
||
|
|
||
|
mdcontext = NewContext(context.Background(), MD{Mirror: "0"})
|
||
|
assert.Equal(t, false, Bool(mdcontext, Mirror))
|
||
|
|
||
|
}
|
||
|
func TestInt64(t *testing.T) {
|
||
|
mdcontext := NewContext(context.Background(), MD{Mid: int64(1)})
|
||
|
assert.Equal(t, int64(1), Int64(mdcontext, Mid))
|
||
|
mdcontext = NewContext(context.Background(), MD{Mid: int64(2)})
|
||
|
assert.NotEqual(t, int64(1), Int64(mdcontext, Mid))
|
||
|
mdcontext = NewContext(context.Background(), MD{Mid: 10})
|
||
|
assert.NotEqual(t, int64(10), Int64(mdcontext, Mid))
|
||
|
}
|