forked from actatum/stormrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions_test.go
42 lines (40 loc) · 852 Bytes
/
options_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
// Package stormrpc provides the functionality for creating RPC servers/clients that communicate via NATS.
package stormrpc
import (
"reflect"
"testing"
)
func TestWithHeaders(t *testing.T) {
type args struct {
h map[string]string
}
tests := []struct {
name string
args args
want CallOption
}{
// TODO: Add test cases.
{
name: "add some headers",
args: args{
h: map[string]string{
"Authorization": "Bearer ey.xyz",
"X-Request-Id": "abc",
},
},
want: &HeaderCallOption{
Headers: map[string]string{
"Authorization": "Bearer ey.xyz",
"X-Request-Id": "abc",
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := WithHeaders(tt.args.h); !reflect.DeepEqual(got, tt.want) {
t.Errorf("WithHeaders() = %v, want %v", got, tt.want)
}
})
}
}