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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
|
package hotline
import (
"bytes"
"io"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestTrackerRegistration_Payload(t *testing.T) {
type fields struct {
Port [2]byte
UserCount int
PassID [4]byte
Name string
Description string
}
tests := []struct {
name string
fields fields
want []byte
}{
{
name: "returns expected payload bytes",
fields: fields{
Port: [2]byte{0x00, 0x10},
UserCount: 2,
PassID: [4]byte{0x00, 0x00, 0x00, 0x01},
Name: "Test Serv",
Description: "Fooz",
},
want: []byte{
0x00, 0x01,
0x00, 0x10,
0x00, 0x02,
0x00, 0x00,
0x00, 0x00, 0x00, 0x01,
0x09,
0x54, 0x65, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76,
0x04,
0x46, 0x6f, 0x6f, 0x7a,
0x00,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tr := &TrackerRegistration{
Port: tt.fields.Port,
UserCount: tt.fields.UserCount,
PassID: tt.fields.PassID,
Name: tt.fields.Name,
Description: tt.fields.Description,
}
if got, _ := io.ReadAll(tr); !assert.Equal(t, tt.want, got) {
t.Errorf("Read() = %v, want %v", got, tt.want)
}
})
}
}
type mockConn struct {
readBuffer *bytes.Buffer
writeBuffer *bytes.Buffer
closed bool
}
func (m *mockConn) Read(b []byte) (n int, err error) {
return m.readBuffer.Read(b)
}
func (m *mockConn) Write(b []byte) (n int, err error) {
return m.writeBuffer.Write(b)
}
func (m *mockConn) Close() error {
m.closed = true
return nil
}
func TestGetListing(t *testing.T) {
tests := []struct {
name string
mockConn *mockConn
wantErr bool
wantResult []ServerRecord
}{
{
name: "Successful retrieval",
mockConn: &mockConn{
readBuffer: bytes.NewBuffer([]byte{
// TrackerHeader
0x48, 0x54, 0x52, 0x4B, // Protocol "HTRK"
0x00, 0x01, // Version 1
// ServerInfoHeader
0x00, 0x01, // MsgType (1)
0x00, 0x14, // MsgDataSize (20)
0x00, 0x02, // SrvCount (2)
0x00, 0x02, // BatchSize (2)
// ServerRecord 1
192, 168, 1, 1, // IP address
0x1F, 0x90, // Port 8080
0x00, 0x10, // NumUsers 16
0x00, 0x00, // TLSPort
0x04, // NameSize
'S', 'e', 'r', 'v', // Name
0x0B, // DescriptionSize
'M', 'y', ' ', 'S', 'e', 'r', 'v', 'e', 'r', ' ', '1', // Description
// ServerRecord 2
10, 0, 0, 1, // IP address
0x1F, 0x91, // Port 8081
0x00, 0x05, // NumUsers 5
0x00, 0x00, // TLSPort
0x04, // NameSize
'S', 'e', 'r', 'v', // Name
0x0B, // DescriptionSize
'M', 'y', ' ', 'S', 'e', 'r', 'v', 'e', 'r', ' ', '2', // Description
}),
writeBuffer: &bytes.Buffer{},
},
wantErr: false,
wantResult: []ServerRecord{
{
IPAddr: [4]byte{192, 168, 1, 1},
Port: [2]byte{0x1F, 0x90},
NumUsers: [2]byte{0x00, 0x10},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 4,
Name: []byte("Serv"),
DescriptionSize: 11,
Description: []byte("My Server 1"),
},
{
IPAddr: [4]byte{10, 0, 0, 1},
Port: [2]byte{0x1F, 0x91},
NumUsers: [2]byte{0x00, 0x05},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 4,
Name: []byte("Serv"),
DescriptionSize: 11,
Description: []byte("My Server 2"),
},
},
},
{
name: "Write error",
mockConn: &mockConn{
readBuffer: &bytes.Buffer{},
writeBuffer: &bytes.Buffer{},
},
wantErr: true,
wantResult: nil,
},
{
name: "Read error on TrackerHeader",
mockConn: &mockConn{
readBuffer: bytes.NewBuffer([]byte{
// incomplete data to cause read error
0x48,
}),
writeBuffer: &bytes.Buffer{},
},
wantErr: true,
wantResult: nil,
},
{
name: "Read error on ServerInfoHeader",
mockConn: &mockConn{
readBuffer: bytes.NewBuffer([]byte{
// TrackerHeader
0x48, 0x54, 0x52, 0x4B, // Protocol "HTRK"
0x00, 0x01, // Version 1
// incomplete ServerInfoHeader
0x00,
}),
writeBuffer: &bytes.Buffer{},
},
wantErr: true,
wantResult: nil,
},
{
name: "Scanner error",
mockConn: &mockConn{
readBuffer: bytes.NewBuffer([]byte{
// TrackerHeader
0x48, 0x54, 0x52, 0x4B, // Protocol "HTRK"
0x00, 0x01, // Version 1
// ServerInfoHeader
0x00, 0x01, // MsgType (1)
0x00, 0x14, // MsgDataSize (20)
0x00, 0x01, // SrvCount (1)
0x00, 0x01, // BatchSize (1)
// incomplete ServerRecord to cause scanner error
192, 168, 1, 1,
}),
writeBuffer: &bytes.Buffer{},
},
wantErr: true,
wantResult: nil,
},
{
name: "Multiple batches with ServerInfoHeaders",
mockConn: &mockConn{
readBuffer: bytes.NewBuffer([]byte{
// TrackerHeader
0x48, 0x54, 0x52, 0x4B, // Protocol "HTRK"
0x00, 0x01, // Version 1
// First ServerInfoHeader
0x00, 0x01, // MsgType (1)
0x00, 0x14, // MsgDataSize (20)
0x00, 0x03, // SrvCount (3 total)
0x00, 0x02, // BatchSize (2 in first batch)
// ServerRecord 1
192, 168, 1, 1, // IP address
0x1F, 0x90, // Port 8080
0x00, 0x0A, // NumUsers 10
0x00, 0x00, // TLSPort
0x07, // NameSize
'S', 'e', 'r', 'v', 'e', 'r', '1', // Name
0x0C, // DescriptionSize
'F', 'i', 'r', 's', 't', ' ', 'b', 'a', 't', 'c', 'h', '1', // Description
// ServerRecord 2
192, 168, 1, 2, // IP address
0x1F, 0x91, // Port 8081
0x00, 0x14, // NumUsers 20
0x00, 0x00, // TLSPort
0x07, // NameSize
'S', 'e', 'r', 'v', 'e', 'r', '2', // Name
0x0C, // DescriptionSize
'F', 'i', 'r', 's', 't', ' ', 'b', 'a', 't', 'c', 'h', '2', // Description
// Second ServerInfoHeader (next batch)
0x00, 0x01, // MsgType (1)
0x00, 0x0A, // MsgDataSize (10)
0x00, 0x03, // SrvCount (3 total - same)
0x00, 0x01, // BatchSize (1 in second batch)
// ServerRecord 3
192, 168, 1, 3, // IP address
0x1F, 0x92, // Port 8082
0x00, 0x1E, // NumUsers 30
0x00, 0x00, // TLSPort
0x07, // NameSize
'S', 'e', 'r', 'v', 'e', 'r', '3', // Name
0x0D, // DescriptionSize
'S', 'e', 'c', 'o', 'n', 'd', ' ', 'b', 'a', 't', 'c', 'h', '1', // Description
}),
writeBuffer: &bytes.Buffer{},
},
wantErr: false,
wantResult: []ServerRecord{
{
IPAddr: [4]byte{192, 168, 1, 1},
Port: [2]byte{0x1F, 0x90},
NumUsers: [2]byte{0x00, 0x0A},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 7,
Name: []byte("Server1"),
DescriptionSize: 12,
Description: []byte("First batch1"),
},
{
IPAddr: [4]byte{192, 168, 1, 2},
Port: [2]byte{0x1F, 0x91},
NumUsers: [2]byte{0x00, 0x14},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 7,
Name: []byte("Server2"),
DescriptionSize: 12,
Description: []byte("First batch2"),
},
{
IPAddr: [4]byte{192, 168, 1, 3},
Port: [2]byte{0x1F, 0x92},
NumUsers: [2]byte{0x00, 0x1E},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 7,
Name: []byte("Server3"),
DescriptionSize: 13,
Description: []byte("Second batch1"),
},
},
},
{
name: "Three batches",
mockConn: &mockConn{
readBuffer: bytes.NewBuffer([]byte{
// TrackerHeader
0x48, 0x54, 0x52, 0x4B, // Protocol "HTRK"
0x00, 0x01, // Version 1
// First ServerInfoHeader
0x00, 0x01, // MsgType (1)
0x00, 0x0A, // MsgDataSize
0x00, 0x04, // SrvCount (4 total)
0x00, 0x02, // BatchSize (2 in first batch)
// ServerRecord 1
192, 168, 1, 1, // IP
0x15, 0x7c, // Port 5500
0x00, 0x01, // NumUsers 1
0x00, 0x00, // TLSPort
0x01, // NameSize
'A', // Name
0x01, // DescriptionSize
'1', // Description
// ServerRecord 2
192, 168, 1, 2, // IP
0x15, 0x7c, // Port 5500
0x00, 0x02, // NumUsers 2
0x00, 0x00, // TLSPort
0x01, // NameSize
'B', // Name
0x01, // DescriptionSize
'2', // Description
// Second ServerInfoHeader
0x00, 0x01, // MsgType (1)
0x00, 0x0A, // MsgDataSize
0x00, 0x04, // SrvCount (4 total)
0x00, 0x01, // BatchSize (1 in second batch)
// ServerRecord 3
192, 168, 1, 3, // IP
0x15, 0x7c, // Port 5500
0x00, 0x03, // NumUsers 3
0x00, 0x00, // TLSPort
0x01, // NameSize
'C', // Name
0x01, // DescriptionSize
'3', // Description
// Third ServerInfoHeader
0x00, 0x01, // MsgType (1)
0x00, 0x0A, // MsgDataSize
0x00, 0x04, // SrvCount (4 total)
0x00, 0x01, // BatchSize (1 in third batch)
// ServerRecord 4
192, 168, 1, 4, // IP
0x15, 0x7c, // Port 5500
0x00, 0x04, // NumUsers 4
0x00, 0x00, // TLSPort
0x01, // NameSize
'D', // Name
0x01, // DescriptionSize
'4', // Description
}),
writeBuffer: &bytes.Buffer{},
},
wantErr: false,
wantResult: []ServerRecord{
{
IPAddr: [4]byte{192, 168, 1, 1},
Port: [2]byte{0x15, 0x7c},
NumUsers: [2]byte{0x00, 0x01},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 1,
Name: []byte("A"),
DescriptionSize: 1,
Description: []byte("1"),
},
{
IPAddr: [4]byte{192, 168, 1, 2},
Port: [2]byte{0x15, 0x7c},
NumUsers: [2]byte{0x00, 0x02},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 1,
Name: []byte("B"),
DescriptionSize: 1,
Description: []byte("2"),
},
{
IPAddr: [4]byte{192, 168, 1, 3},
Port: [2]byte{0x15, 0x7c},
NumUsers: [2]byte{0x00, 0x03},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 1,
Name: []byte("C"),
DescriptionSize: 1,
Description: []byte("3"),
},
{
IPAddr: [4]byte{192, 168, 1, 4},
Port: [2]byte{0x15, 0x7c},
NumUsers: [2]byte{0x00, 0x04},
TLSPort: [2]byte{0x00, 0x00},
NameSize: 1,
Name: []byte("D"),
DescriptionSize: 1,
Description: []byte("4"),
},
},
},
{
name: "Error reading second ServerInfoHeader",
mockConn: &mockConn{
readBuffer: bytes.NewBuffer([]byte{
// TrackerHeader
0x48, 0x54, 0x52, 0x4B, // Protocol "HTRK"
0x00, 0x01, // Version 1
// First ServerInfoHeader
0x00, 0x01, // MsgType (1)
0x00, 0x0A, // MsgDataSize
0x00, 0x02, // SrvCount (2 total)
0x00, 0x01, // BatchSize (1 in first batch)
// ServerRecord 1
192, 168, 1, 1, // IP
0x15, 0x7c, // Port 5500
0x00, 0x01, // NumUsers 1
0x00, 0x00, // TLSPort
0x01, // NameSize
'A', // Name
0x01, // DescriptionSize
'1', // Description
// Incomplete second ServerInfoHeader
0x00, 0x01, // MsgType only
}),
writeBuffer: &bytes.Buffer{},
},
wantErr: true,
wantResult: nil,
},
{
name: "Empty server list",
mockConn: &mockConn{
readBuffer: bytes.NewBuffer([]byte{
// TrackerHeader
0x48, 0x54, 0x52, 0x4B, // Protocol "HTRK"
0x00, 0x01, // Version 1
// ServerInfoHeader with 0 servers
0x00, 0x01, // MsgType (1)
0x00, 0x00, // MsgDataSize (0)
0x00, 0x00, // SrvCount (0)
0x00, 0x00, // BatchSize (0)
}),
writeBuffer: &bytes.Buffer{},
},
wantErr: false,
wantResult: []ServerRecord{},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := GetListing(tt.mockConn)
if tt.wantErr {
require.Error(t, err)
} else {
require.NoError(t, err)
assert.Equal(t, tt.wantResult, got)
}
})
}
}
|