forked from quickfixgo/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resend_state_test.go
221 lines (173 loc) · 6.08 KB
/
resend_state_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
// 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 (
"testing"
"time"
"github.com/stretchr/testify/suite"
"github.com/quickfixgo/quickfix/internal"
)
type resendStateTestSuite struct {
SessionSuiteRig
}
func TestResendStateTestSuite(t *testing.T) {
suite.Run(t, new(resendStateTestSuite))
}
func (s *resendStateTestSuite) SetupTest() {
s.Init()
s.session.State = resendState{}
}
func (s *resendStateTestSuite) TestIsLoggedOn() {
s.True(s.session.IsLoggedOn())
}
func (s *resendStateTestSuite) TestIsConnected() {
s.True(s.session.IsConnected())
}
func (s *resendStateTestSuite) TestIsSessionTime() {
s.True(s.session.IsSessionTime())
}
func (s *resendStateTestSuite) TestTimeoutPeerTimeout() {
s.MockApp.On("ToAdmin")
s.session.Timeout(s.session, internal.PeerTimeout)
s.MockApp.AssertExpectations(s.T())
s.State(pendingTimeout{resendState{}})
}
func (s *resendStateTestSuite) TestTimeoutUnchangedIgnoreLogonLogoutTimeout() {
tests := []internal.Event{internal.LogonTimeout, internal.LogoutTimeout}
for _, event := range tests {
s.session.Timeout(s.session, event)
s.State(resendState{})
}
}
func (s *resendStateTestSuite) TestTimeoutUnchangedNeedHeartbeat() {
s.MockApp.On("ToAdmin")
s.session.Timeout(s.session, internal.NeedHeartbeat)
s.MockApp.AssertExpectations(s.T())
s.State(resendState{})
}
func (s *resendStateTestSuite) TestFixMsgIn() {
s.session.State = inSession{}
// In session expects seq number 1, send too high.
s.MessageFactory.SetNextSeqNum(2)
s.MockApp.On("ToAdmin")
msgSeqNum2 := s.NewOrderSingle()
s.fixMsgIn(s.session, msgSeqNum2)
s.MockApp.AssertExpectations(s.T())
s.State(resendState{})
s.LastToAdminMessageSent()
s.MessageType(string(msgTypeResendRequest), s.MockApp.lastToAdmin)
s.FieldEquals(tagBeginSeqNo, 1, s.MockApp.lastToAdmin.Body)
s.NextTargetMsgSeqNum(1)
msgSeqNum3 := s.NewOrderSingle()
s.fixMsgIn(s.session, msgSeqNum3)
s.State(resendState{})
s.NextTargetMsgSeqNum(1)
msgSeqNum4 := s.NewOrderSingle()
s.fixMsgIn(s.session, msgSeqNum4)
s.State(resendState{})
s.NextTargetMsgSeqNum(1)
s.MessageFactory.SetNextSeqNum(1)
s.MockApp.On("FromApp").Return(nil)
s.fixMsgIn(s.session, s.NewOrderSingle())
s.MockApp.AssertNumberOfCalls(s.T(), "FromApp", 4)
s.State(inSession{})
s.NextTargetMsgSeqNum(5)
}
func (s *resendStateTestSuite) TestFixMsgInSequenceReset() {
s.session.State = inSession{}
// In session expects seq number 1, send too high.
s.MessageFactory.SetNextSeqNum(3)
s.MockApp.On("ToAdmin")
msgSeqNum3 := s.NewOrderSingle()
s.fixMsgIn(s.session, msgSeqNum3)
s.MockApp.AssertExpectations(s.T())
s.State(resendState{})
s.LastToAdminMessageSent()
s.MessageType(string(msgTypeResendRequest), s.MockApp.lastToAdmin)
s.FieldEquals(tagBeginSeqNo, 1, s.MockApp.lastToAdmin.Body)
s.NextTargetMsgSeqNum(1)
s.MessageFactory.SetNextSeqNum(1)
s.MockApp.On("FromAdmin").Return(nil)
s.fixMsgIn(s.session, s.SequenceReset(2))
s.NextTargetMsgSeqNum(2)
s.State(resendState{})
s.MockApp.On("FromApp").Return(nil)
s.fixMsgIn(s.session, s.NewOrderSingle())
s.MockApp.AssertNumberOfCalls(s.T(), "FromApp", 2)
s.NextTargetMsgSeqNum(4)
s.State(inSession{})
}
func (s *resendStateTestSuite) TestFixMsgInResendChunk() {
s.session.State = inSession{}
s.ResendRequestChunkSize = 2
// In session expects seq number 1, send too high.
s.MessageFactory.SetNextSeqNum(4)
s.MockApp.On("ToAdmin")
msgSeqNum4 := s.NewOrderSingle()
s.fixMsgIn(s.session, msgSeqNum4)
s.MockApp.AssertExpectations(s.T())
s.State(resendState{})
s.LastToAdminMessageSent()
s.MessageType(string(msgTypeResendRequest), s.MockApp.lastToAdmin)
s.FieldEquals(tagBeginSeqNo, 1, s.MockApp.lastToAdmin.Body)
s.FieldEquals(tagEndSeqNo, 2, s.MockApp.lastToAdmin.Body)
s.NextTargetMsgSeqNum(1)
msgSeqNum5 := s.NewOrderSingle()
s.fixMsgIn(s.session, msgSeqNum5)
s.State(resendState{})
s.NextTargetMsgSeqNum(1)
msgSeqNum6 := s.NewOrderSingle()
s.fixMsgIn(s.session, msgSeqNum6)
s.State(resendState{})
s.NextTargetMsgSeqNum(1)
s.MessageFactory.SetNextSeqNum(1)
s.MockApp.On("FromApp").Return(nil)
s.fixMsgIn(s.session, s.NewOrderSingle())
s.MockApp.AssertNumberOfCalls(s.T(), "FromApp", 1)
s.State(resendState{})
s.NextTargetMsgSeqNum(2)
s.fixMsgIn(s.session, s.NewOrderSingle())
s.MockApp.AssertNumberOfCalls(s.T(), "FromApp", 2)
s.State(resendState{})
s.NextTargetMsgSeqNum(3)
s.LastToAdminMessageSent()
s.MessageType(string(msgTypeResendRequest), s.MockApp.lastToAdmin)
s.FieldEquals(tagBeginSeqNo, 3, s.MockApp.lastToAdmin.Body)
s.FieldEquals(tagEndSeqNo, 0, s.MockApp.lastToAdmin.Body)
}
// TestFixMsgResendWithOldSendingTime tests that we suspend staleness checks during replay
// as a replayed message may be arbitrarily old.
func (s *resendStateTestSuite) TestFixMsgResendWithOldSendingTime() {
s.session.State = inSession{}
s.ResendRequestChunkSize = 2
// In session expects seq number 1, send too high.
s.MessageFactory.SetNextSeqNum(4)
s.MockApp.On("ToAdmin")
msgSeqNum4 := s.NewOrderSingle()
s.fixMsgIn(s.session, msgSeqNum4)
s.MockApp.AssertExpectations(s.T())
s.State(resendState{})
s.LastToAdminMessageSent()
s.MessageType(string(msgTypeResendRequest), s.MockApp.lastToAdmin)
s.FieldEquals(tagBeginSeqNo, 1, s.MockApp.lastToAdmin.Body)
s.FieldEquals(tagEndSeqNo, 2, s.MockApp.lastToAdmin.Body)
s.NextTargetMsgSeqNum(1)
msgSeqNum5 := s.NewOrderSingle()
// Set the sending time far enough in the past to trip the staleness check.
msgSeqNum5.Header.SetField(tagSendingTime, FIXUTCTimestamp{Time: time.Now().Add(-s.MaxLatency)})
s.fixMsgIn(s.session, msgSeqNum5)
s.State(resendState{})
s.NextTargetMsgSeqNum(1)
}