forked from quickfixgo/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfield_map_test.go
More file actions
86 lines (69 loc) · 1.8 KB
/
field_map_test.go
File metadata and controls
86 lines (69 loc) · 1.8 KB
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
package quickfix
import (
"testing"
)
func TestFieldMap_Clear(t *testing.T) {
fMap := FieldMap{}
fMap.init(normalFieldOrder)
fMap.SetField(1, FIXString("hello"))
fMap.SetField(2, FIXString("world"))
fMap.Clear()
if fMap.Has(1) || fMap.Has(2) {
t.Error("All fields should be cleared")
}
}
func TestFieldMap_SetAndGet(t *testing.T) {
fMap := FieldMap{}
fMap.init(normalFieldOrder)
fMap.SetField(1, FIXString("hello"))
fMap.SetField(2, FIXString("world"))
var testCases = []struct {
tag Tag
expectErr bool
expectValue string
}{
{tag: 1, expectValue: "hello"},
{tag: 2, expectValue: "world"},
{tag: 44, expectErr: true},
}
for _, tc := range testCases {
var testField FIXString
err := fMap.GetField(tc.tag, &testField)
if tc.expectErr {
if err == nil {
t.Error("Expected Error")
}
continue
}
if err != nil {
t.Error("Unexpected Error", err)
}
if string(testField) != tc.expectValue {
t.Errorf("Expected %v got %v", tc.expectValue, testField)
}
}
}
func TestFieldMap_Length(t *testing.T) {
fMap := FieldMap{}
fMap.init(normalFieldOrder)
fMap.SetField(1, FIXString("hello"))
fMap.SetField(2, FIXString("world"))
fMap.SetField(8, FIXString("FIX.4.4"))
fMap.SetField(9, FIXInt(100))
fMap.SetField(10, FIXString("100"))
if fMap.length() != 16 {
t.Error("Length should include all fields but beginString, bodyLength, and checkSum- got ", fMap.length())
}
}
func TestFieldMap_Total(t *testing.T) {
fMap := FieldMap{}
fMap.init(normalFieldOrder)
fMap.SetField(1, FIXString("hello"))
fMap.SetField(2, FIXString("world"))
fMap.SetField(8, FIXString("FIX.4.4"))
fMap.SetField(Tag(9), FIXInt(100))
fMap.SetField(10, FIXString("100"))
if fMap.total() != 2116 {
t.Error("Total should includes all fields but checkSum- got ", fMap.total())
}
}