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
|
package hotline
import (
"bytes"
"context"
"fmt"
"github.com/stretchr/testify/assert"
"io"
"log/slog"
"os"
"sync"
"testing"
)
type mockReadWriter struct {
RBuf bytes.Buffer
WBuf *bytes.Buffer
}
func (mrw mockReadWriter) Read(p []byte) (n int, err error) {
return mrw.RBuf.Read(p)
}
func (mrw mockReadWriter) Write(p []byte) (n int, err error) {
return mrw.WBuf.Write(p)
}
func TestServer_handleFileTransfer(t *testing.T) {
type fields struct {
Port int
Accounts map[string]*Account
Agreement []byte
Clients map[uint16]*ClientConn
ThreadedNews *ThreadedNews
fileTransfers map[[4]byte]*FileTransfer
Config *Config
ConfigDir string
Logger *slog.Logger
PrivateChats map[uint32]*PrivateChat
NextGuestID *uint16
TrackerPassID [4]byte
Stats *Stats
FS FileStore
FlatNews []byte
}
type args struct {
ctx context.Context
rwc io.ReadWriter
}
tests := []struct {
name string
fields fields
args args
wantErr assert.ErrorAssertionFunc
wantDump string
}{
{
name: "with invalid protocol",
args: args{
ctx: func() context.Context {
ctx := context.Background()
ctx = context.WithValue(ctx, contextKeyReq, requestCtx{})
return ctx
}(),
rwc: func() io.ReadWriter {
mrw := mockReadWriter{}
mrw.WBuf = &bytes.Buffer{}
mrw.RBuf.Write(
[]byte{
0, 0, 0, 0,
0, 0, 0, 5,
0, 0, 0x01, 0,
0, 0, 0, 0,
},
)
return mrw
}(),
},
wantErr: assert.Error,
},
{
name: "with invalid transfer ID",
args: args{
ctx: func() context.Context {
ctx := context.Background()
ctx = context.WithValue(ctx, contextKeyReq, requestCtx{})
return ctx
}(),
rwc: func() io.ReadWriter {
mrw := mockReadWriter{}
mrw.WBuf = &bytes.Buffer{}
mrw.RBuf.Write(
[]byte{
0x48, 0x54, 0x58, 0x46,
0, 0, 0, 5,
0, 0, 0x01, 0,
0, 0, 0, 0,
},
)
return mrw
}(),
},
wantErr: assert.Error,
},
{
name: "file download",
fields: fields{
FS: &OSFileStore{},
Config: &Config{
FileRoot: func() string {
path, _ := os.Getwd()
return path + "/test/config/Files"
}()},
Logger: NewTestLogger(),
Stats: &Stats{},
fileTransfers: map[[4]byte]*FileTransfer{
{0, 0, 0, 5}: {
ReferenceNumber: []byte{0, 0, 0, 5},
Type: FileDownload,
FileName: []byte("testfile-8b"),
FilePath: []byte{},
ClientConn: &ClientConn{
Account: &Account{
Login: "foo",
},
transfersMU: sync.Mutex{},
transfers: map[int]map[[4]byte]*FileTransfer{
FileDownload: {
[4]byte{0, 0, 0, 5}: &FileTransfer{},
},
},
},
bytesSentCounter: &WriteCounter{},
},
},
},
args: args{
ctx: func() context.Context {
ctx := context.Background()
ctx = context.WithValue(ctx, contextKeyReq, requestCtx{})
return ctx
}(),
rwc: func() io.ReadWriter {
mrw := mockReadWriter{}
mrw.WBuf = &bytes.Buffer{}
mrw.RBuf.Write(
[]byte{
0x48, 0x54, 0x58, 0x46,
0, 0, 0, 5,
0, 0, 0x01, 0,
0, 0, 0, 0,
},
)
return mrw
}(),
},
wantErr: assert.NoError,
wantDump: `00000000 46 49 4c 50 00 01 00 00 00 00 00 00 00 00 00 00 |FILP............|
00000010 00 00 00 00 00 00 00 02 49 4e 46 4f 00 00 00 00 |........INFO....|
00000020 00 00 00 00 00 00 00 55 41 4d 41 43 54 45 58 54 |.......UAMACTEXT|
00000030 54 54 58 54 00 00 00 00 00 00 01 00 00 00 00 00 |TTXT............|
00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0b |................|
00000070 74 65 73 74 66 69 6c 65 2d 38 62 00 00 44 41 54 |testfile-8b..DAT|
00000080 41 00 00 00 00 00 00 00 00 00 00 00 08 7c 39 e0 |A............|9.|
00000090 bc 64 e2 cd de 4d 41 43 52 00 00 00 00 00 00 00 |.d...MACR.......|
000000a0 00 00 00 00 00 |.....|
`,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := &Server{
Port: tt.fields.Port,
Accounts: tt.fields.Accounts,
Agreement: tt.fields.Agreement,
Clients: tt.fields.Clients,
ThreadedNews: tt.fields.ThreadedNews,
fileTransfers: tt.fields.fileTransfers,
Config: tt.fields.Config,
ConfigDir: tt.fields.ConfigDir,
Logger: tt.fields.Logger,
Stats: tt.fields.Stats,
FS: tt.fields.FS,
}
tt.wantErr(t, s.handleFileTransfer(tt.args.ctx, tt.args.rwc), fmt.Sprintf("handleFileTransfer(%v, %v)", tt.args.ctx, tt.args.rwc))
assertTransferBytesEqual(t, tt.wantDump, tt.args.rwc.(mockReadWriter).WBuf.Bytes())
})
}
}
|