-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_test.go
46 lines (37 loc) · 1.04 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
package orchestrator
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestContext_SetVariableWithVersion(t *testing.T) {
key := "KEY"
v1 := "v1"
v2 := "v2"
value1 := "VALUE_1"
value2 := "VALUE_2"
ctx, _ := NewContext()
if err := ctx.SetVariableWithVersion(key, v1, v1, value1); err != nil {
t.Fail()
}
if err := ctx.SetVariableWithVersion(key, v1, v2, value2); err != nil {
t.Fail()
}
if err := ctx.SetVariableWithVersion(key, v1, v1, value2); err == nil {
t.Fail()
}
assert.NotNil(t, ctx.GetGid())
assert.Equal(t, ctx.GetVariable(key), value2)
}
func TestContext_SetVariable(t *testing.T) {
headerKey := "HEADER_KEY"
headerValue := "HEADER_VALUE"
headerKey2 := "HEADER_KEY_2"
headerValue2 := "HEADER_VALUE_2"
ctx, _ := NewContext()
ctx.SetVariable(headerKey, headerValue)
ctx.SetVariable(headerKey2, headerValue2)
ctx.SetVariable(headerKey2, headerValue)
assert.NotNil(t, ctx.GetGid())
assert.Equal(t, headerValue, ctx.GetVariable(headerKey))
assert.Equal(t, headerValue, ctx.GetVariable(headerKey2))
}