-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhasher_test.go
116 lines (106 loc) · 2.62 KB
/
hasher_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package grpclb
import (
"reflect"
"testing"
"golang.org/x/net/context"
)
func Test_strOrNum_Hash32(t *testing.T) {
type fields struct {
hash32 uint32
}
tests := []struct {
name string
fields fields
want uint32
}{
{"hash32", fields{123}, 123},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := &strOrNum{
hash32: tt.fields.hash32,
}
if got := s.Hash32(); got != tt.want {
t.Errorf("strOrNum.Hash32() = %v, want %v", got, tt.want)
}
})
}
}
func Test_newStrOrNum(t *testing.T) {
type args struct {
value interface{}
}
var nilT *strOrNum
tests := []struct {
name string
args args
want Hasher
want1 bool
}{
{"string key", args{"key"}, &strOrNum{1746258028}, true},
{"uint32 key", args{uint32(123)}, &strOrNum{1916298011}, true},
{"unsupport type", args{123}, nilT, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := newStrOrNum(tt.args.value)
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("newStrOrNum() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("newStrOrNum() got1 = %v, want %v", got1, tt.want1)
}
})
}
}
func Test_strOrNumFromContext(t *testing.T) {
type args struct {
ctx context.Context
}
tests := []struct {
name string
args args
want Hasher
want1 bool
}{
// TODO: Add test cases.
{"string key in context", args{context.WithValue(context.Background(), strOrNumKey, "key")}, &strOrNum{1746258028}, true},
{"uint32 key in context", args{context.WithValue(context.Background(), strOrNumKey, uint32(123))}, &strOrNum{1916298011}, true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := strOrNumFromContext(tt.args.ctx)
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("strOrNumFromContext() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("strOrNumFromContext() got1 = %v, want %v", got1, tt.want1)
}
})
}
}
func TestStrOrNumToContext(t *testing.T) {
type args struct {
ctx context.Context
val interface{}
}
c1 := context.Background()
w1 := context.WithValue(c1, strOrNumKey, "key")
c2 := context.Background()
w2 := context.WithValue(c1, strOrNumKey, uint32(123))
tests := []struct {
name string
args args
want context.Context
}{
{"registry string key", args{c1, "key"}, w1},
{"registry uint32 key", args{c2, uint32(123)}, w2},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := StrOrNumToContext(tt.args.ctx, tt.args.val); !reflect.DeepEqual(got, tt.want) {
t.Errorf("StrOrNumToContext() = %v, want %v", got, tt.want)
}
})
}
}