forked from looplab/eventhorizon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context_test.go
161 lines (137 loc) · 4.52 KB
/
context_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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// Copyright (c) 2016 - The Event Horizon authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eventhorizon
import (
"context"
"encoding/json"
"testing"
)
func TestContextNamespace(t *testing.T) {
ctx := context.Background()
if ns := NamespaceFromContext(ctx); ns != DefaultNamespace {
t.Error("the namespace should be the default:", ns)
}
ctx = NewContextWithNamespace(ctx, "ns")
if ns := NamespaceFromContext(ctx); ns != "ns" {
t.Error("the namespace should be correct:", ns)
}
vals := MarshalContext(ctx)
if ns, ok := vals[namespaceKeyStr].(string); !ok || ns != "ns" {
t.Error("the marshaled namespace shoud be correct:", ns)
}
b, err := json.Marshal(vals)
if err != nil {
t.Error("could not marshal JSON:", err)
}
// Marshal via JSON to get more realistic testing.
vals = map[string]interface{}{}
if err := json.Unmarshal(b, &vals); err != nil {
t.Error("could not unmarshal JSON:", err)
}
ctx = UnmarshalContext(vals)
if ns := NamespaceFromContext(ctx); ns != "ns" {
t.Error("the namespace should be correct:", ns)
}
}
func TestContextMinVersion(t *testing.T) {
ctx := context.Background()
if v, ok := MinVersionFromContext(ctx); ok {
t.Error("there should be no min version:", v)
}
ctx = NewContextWithMinVersion(ctx, 8)
if v, ok := MinVersionFromContext(ctx); !ok && v != 8 {
t.Error("the min version should be correct:", v)
}
vals := MarshalContext(ctx)
if v, ok := vals[minVersionKeyStr].(int); !ok || v != 8 {
t.Error("the marshaled min version shoud be correct:", v)
}
b, err := json.Marshal(vals)
if err != nil {
t.Error("could not marshal JSON:", err)
}
// Marshal via JSON to get more realistic testing.
vals = map[string]interface{}{}
if err := json.Unmarshal(b, &vals); err != nil {
t.Error("could not unmarshal JSON:", err)
}
ctx = UnmarshalContext(vals)
if v, ok := MinVersionFromContext(ctx); !ok || v != 8 {
t.Error("the min version should be correct:", v)
}
}
func TestContextMarshaler(t *testing.T) {
if len(contextMarshalFuncs) != 2 {
t.Error("there should be two context marshalers")
}
RegisterContextMarshaler(func(ctx context.Context, vals map[string]interface{}) {
if val, ok := ContextTestOne(ctx); ok {
vals[contextTestKeyOneStr] = val
}
})
if len(contextMarshalFuncs) != 3 {
t.Error("there should be three context marshaler")
}
ctx := context.Background()
vals := MarshalContext(ctx)
if _, ok := vals[contextTestKeyOneStr]; ok {
t.Error("the marshaled values should be empty:", vals)
}
ctx = WithContextTestOne(ctx, "testval")
vals = MarshalContext(ctx)
if val, ok := vals[contextTestKeyOneStr]; !ok || val != "testval" {
t.Error("the marshaled value should be correct:", val)
}
}
func TestContextUnmarshaler(t *testing.T) {
if len(contextUnmarshalFuncs) != 2 {
t.Error("there should be two context marshalers")
}
RegisterContextUnmarshaler(func(ctx context.Context, vals map[string]interface{}) context.Context {
if val, ok := vals[contextTestKeyOneStr].(string); ok {
return WithContextTestOne(ctx, val)
}
return ctx
})
if len(contextUnmarshalFuncs) != 3 {
t.Error("there should be three context unmarshalers")
}
vals := map[string]interface{}{}
ctx := UnmarshalContext(vals)
if _, ok := ContextTestOne(ctx); ok {
t.Error("the unmarshaled context should be empty:", ctx)
}
vals[contextTestKeyOneStr] = "testval"
ctx = UnmarshalContext(vals)
if val, ok := ContextTestOne(ctx); !ok || val != "testval" {
t.Error("the unmarshaled context should be correct:", val)
}
}
type contextTestKey int
const (
contextTestKeyOne contextTestKey = iota
)
const (
// The string key used to marshal contextTestKeyOne.
contextTestKeyOneStr = "test_context_one"
)
// WithContextTestOne sets a value for One one the context.
func WithContextTestOne(ctx context.Context, val string) context.Context {
return context.WithValue(ctx, contextTestKeyOne, val)
}
// ContextTestOne returns a value for One from the context.
func ContextTestOne(ctx context.Context) (string, bool) {
val, ok := ctx.Value(contextTestKeyOne).(string)
return val, ok
}