-
Notifications
You must be signed in to change notification settings - Fork 291
/
session_settings_test.go
234 lines (188 loc) · 5.49 KB
/
session_settings_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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// Copyright (c) quickfixengine.org All rights reserved.
//
// This file may be distributed under the terms of the quickfixengine.org
// license as defined by quickfixengine.org and appearing in the file
// LICENSE included in the packaging of this file.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
// THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
// PARTICULAR PURPOSE.
//
// See http://www.quickfixengine.org/LICENSE for licensing information.
//
// Contact [email protected] if any conditions of this licensing
// are not clear to you.
package quickfix
import (
"bytes"
"testing"
"time"
"github.com/quickfixgo/quickfix/config"
)
func TestSessionSettings_StringSettings(t *testing.T) {
s := NewSessionSettings()
if s == nil {
t.Error("NewSessionSettings returned nil")
}
s.Set(config.BeginString, "foo")
s.Set(config.BeginString, "blah")
s.Set(config.SenderCompID, "bar")
if ok := s.HasSetting("DoesNotExist"); ok {
t.Error("HasSetting returned true for setting that doesn't exist")
}
if ok := s.HasSetting(config.BeginString); !ok {
t.Error("HasSetting returned false for setting that does exist")
}
if val, err := s.Setting(config.BeginString); err != nil {
t.Error("Got error requesing setting", err)
} else {
if val != "blah" {
t.Errorf("Expected %v got %v", "blah", val)
}
}
}
func TestSessionSettings_IntSettings(t *testing.T) {
s := NewSessionSettings()
if _, err := s.IntSetting(config.SocketAcceptPort); err == nil {
t.Error("Expected error for unknown setting")
}
s.Set(config.SocketAcceptPort, "notanint")
_, err := s.IntSetting(config.SocketAcceptPort)
if err == nil {
t.Error("Expected error for unparsable value")
}
if err.Error() != `"notanint" is invalid for SocketAcceptPort` {
t.Errorf("Expected %s, got %s", `"notanint" is invalid for SocketAcceptPort`, err)
}
s.Set(config.SocketAcceptPort, "1005")
val, err := s.IntSetting(config.SocketAcceptPort)
if err != nil {
t.Error("Unexpected err", err)
}
if val != 1005 {
t.Errorf("Expected %v, got %v", 1005, val)
}
}
func TestSessionSettings_BoolSettings(t *testing.T) {
s := NewSessionSettings()
if _, err := s.BoolSetting(config.ResetOnLogon); err == nil {
t.Error("Expected error for unknown setting")
}
s.Set(config.ResetOnLogon, "notabool")
_, err := s.BoolSetting(config.ResetOnLogon)
if err == nil {
t.Error("Expected error for unparsable value")
}
if err.Error() != `"notabool" is invalid for ResetOnLogon` {
t.Errorf("Expected %s, got %s", `"notabool" is invalid for ResetOnLogon`, err)
}
var boolTests = []struct {
input string
expected bool
}{
{"Y", true},
{"y", true},
{"N", false},
{"n", false},
}
for _, bt := range boolTests {
s.Set(config.ResetOnLogon, bt.input)
actual, err := s.BoolSetting(config.ResetOnLogon)
if err != nil {
t.Error("Unexpected err", err)
}
if actual != bt.expected {
t.Errorf("Expected %v, got %v", bt.expected, actual)
}
}
}
func TestSessionSettings_DurationSettings(t *testing.T) {
s := NewSessionSettings()
if _, err := s.BoolSetting(config.ReconnectInterval); err == nil {
t.Error("Expected error for unknown setting")
}
s.Set(config.ReconnectInterval, "not duration")
_, err := s.DurationSetting(config.ReconnectInterval)
if err == nil {
t.Error("Expected error for unparsable value")
}
if err.Error() != `"not duration" is invalid for ReconnectInterval` {
t.Errorf("Expected %s, got %s", `"not duration" is invalid for ReconnectInterval`, err)
}
s.Set(config.ReconnectInterval, "10s")
got, err := s.DurationSetting(config.ReconnectInterval)
if err != nil {
t.Error("Unexpected err", err)
}
expected, _ := time.ParseDuration("10s")
if got != expected {
t.Errorf("Expected %v, got %v", expected, got)
}
}
func TestSessionSettings_ByteSettings(t *testing.T) {
s := NewSessionSettings()
if _, err := s.RawSetting(config.SocketPrivateKeyBytes); err == nil {
t.Error("Expected error for unknown setting")
}
s.SetRaw(config.SocketPrivateKeyBytes, []byte("pembytes"))
got, err := s.RawSetting(config.SocketPrivateKeyBytes)
if err != nil {
t.Error("Unexpected err", err)
}
if !bytes.Equal([]byte("pembytes"), got) {
t.Errorf("Expected %v, got %v", []byte("pembytes"), got)
}
}
func TestSessionSettings_Clone(t *testing.T) {
s := NewSessionSettings()
var cloneTests = []struct {
input string
expected string
}{
{config.SocketAcceptPort, "101"},
{config.BeginString, "foo"},
{config.ResetOnLogon, "N"},
}
for _, ct := range cloneTests {
s.Set(ct.input, ct.expected)
}
cloned := s.clone()
if cloned == nil {
t.Error("clone returned nil")
}
for _, ct := range cloneTests {
actual, err := cloned.Setting(ct.input)
if err != nil {
t.Error("Unexpected Error", err)
}
if ct.expected != actual {
t.Errorf("Expected %v got %v", ct.expected, actual)
}
}
}
func TestSessionSettings_Overlay(t *testing.T) {
s := NewSessionSettings()
overlay := NewSessionSettings()
s.Set(config.SocketAcceptPort, "101")
s.Set(config.BeginString, "foo")
overlay.Set(config.SocketAcceptPort, "102")
overlay.Set(config.SenderCompID, "blah")
var overlayTests = []struct {
input string
expected string
}{
{config.SocketAcceptPort, "102"},
{config.BeginString, "foo"},
{config.SenderCompID, "blah"},
}
s.overlay(overlay)
for _, ot := range overlayTests {
actual, err := s.Setting(ot.input)
if err != nil {
t.Error("Unexpected error", err)
}
if actual != ot.expected {
t.Errorf("expected %v got %v", ot.expected, actual)
}
}
}