forked from quickfixgo/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
file_log_test.go
145 lines (119 loc) · 3.18 KB
/
file_log_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
// 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 (
"bufio"
"fmt"
"os"
"path"
"strings"
"testing"
)
func TestFileLog_NewFileLogFactory(t *testing.T) {
_, err := NewFileLogFactory(NewSettings())
if err == nil {
t.Error("Should expect error when settings have no file log path")
}
cfg := `
# default settings for sessions
[DEFAULT]
ConnectionType=initiator
ReconnectInterval=60
SenderCompID=TW
FileLogPath=.
# session definition
[SESSION]
BeginString=FIX.4.1
TargetCompID=ARCA
FileLogPath=mydir
[SESSION]
BeginString=FIX.4.1
TargetCompID=ARCA
SessionQualifier=BS
`
stringReader := strings.NewReader(cfg)
settings, _ := ParseSettings(stringReader)
factory, err := NewFileLogFactory(settings)
if err != nil {
t.Error("Did not expect error", err)
}
if factory == nil {
t.Error("Should have returned factory")
}
}
type fileLogHelper struct {
LogPath string
Prefix string
Log Log
}
func newFileLogHelper(t *testing.T) *fileLogHelper {
prefix := "myprefix"
logPath := path.Join(os.TempDir(), fmt.Sprintf("TestLogStore-%d", os.Getpid()))
log, err := newFileLog(prefix, logPath)
if err != nil {
t.Error("Unexpected error", err)
}
return &fileLogHelper{
LogPath: logPath,
Prefix: prefix,
Log: log,
}
}
func TestNewFileLog(t *testing.T) {
helper := newFileLogHelper(t)
tests := []struct {
expectedPath string
}{
{path.Join(helper.LogPath, fmt.Sprintf("%v.messages.current.log", helper.Prefix))},
{path.Join(helper.LogPath, fmt.Sprintf("%v.event.current.log", helper.Prefix))},
}
for _, test := range tests {
if _, err := os.Stat(test.expectedPath); os.IsNotExist(err) {
t.Errorf("%v does not exist", test.expectedPath)
}
}
}
func TestFileLog_Append(t *testing.T) {
helper := newFileLogHelper(t)
messageLogFile, err := os.Open(path.Join(helper.LogPath, fmt.Sprintf("%v.messages.current.log", helper.Prefix)))
if err != nil {
t.Error("Unexpected error", err)
}
defer messageLogFile.Close()
eventLogFile, err := os.Open(path.Join(helper.LogPath, fmt.Sprintf("%v.event.current.log", helper.Prefix)))
if err != nil {
t.Error("Unexpected error", err)
}
defer eventLogFile.Close()
messageScanner := bufio.NewScanner(messageLogFile)
eventScanner := bufio.NewScanner(eventLogFile)
helper.Log.OnIncoming([]byte("incoming"))
if !messageScanner.Scan() {
t.Error("Unexpected EOF")
}
helper.Log.OnEvent("Event")
if !eventScanner.Scan() {
t.Error("Unexpected EOF")
}
newHelper := newFileLogHelper(t)
newHelper.Log.OnIncoming([]byte("incoming"))
if !messageScanner.Scan() {
t.Error("Unexpected EOF")
}
newHelper.Log.OnEvent("Event")
if !eventScanner.Scan() {
t.Error("Unexpected EOF")
}
}