-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain_test.go
438 lines (370 loc) · 9.51 KB
/
main_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
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
package encoding
import (
"fmt"
"reflect"
"testing"
"github.com/NubeDev/bacnet/btypes"
)
const compareErrFmt = "Mismatch in %s when decoding values. Expected: %d, received: %d"
func compare(t *testing.T, name string, a uint, b uint) {
// See if the initial read property data matches the output read property
if a != b {
t.Fatalf(compareErrFmt, name, a, b)
}
}
func subTestNPDU(t *testing.T, n btypes.NPDU) func(t *testing.T) {
return func(t *testing.T) {
e := NewEncoder()
e.NPDU(&n)
if err := e.Error(); err != nil {
t.Fatal(err)
}
b := e.Bytes()
d := NewDecoder(b)
var out btypes.NPDU
_, err := d.NPDU(&out)
if err != nil {
t.Fatal(err)
}
equal := reflect.DeepEqual(n, out)
if !equal {
t.Logf("Encoding/Decoding Failed: %v does not equal %v", n, out)
t.Fail()
}
}
}
func TestNPDU(t *testing.T) {
n := btypes.NPDU{
Version: 102,
IsNetworkLayerMessage: true,
ExpectingReply: false,
Priority: btypes.Urgent,
}
subTestNPDU(t, n)
n.NetworkLayerMessageType = 20
t.Run("Testing Message Type", subTestNPDU(t, n))
n.NetworkLayerMessageType = 0
n.IsNetworkLayerMessage = false
n.ExpectingReply = true
t.Run("Testing Expecting Reply", subTestNPDU(t, n))
subTestNPDU(t, n)
n.Destination = &btypes.Address{
Net: 314,
Adr: []uint8{91, 4, 5, 6},
Len: 4,
}
n.HopCount = 21
t.Run("Testing Destination Address", subTestNPDU(t, n))
subTestNPDU(t, n)
n.Source = &btypes.Address{
Net: 444,
Adr: []uint8{1, 9, 6, 10},
Len: 4,
}
t.Run("Testing Dest and Src Address", subTestNPDU(t, n))
}
func subTestAPDU(t *testing.T, a btypes.APDU) func(t *testing.T) {
return func(t *testing.T) {
e := NewEncoder()
e.APDU(a)
if err := e.Error(); err != nil {
t.Fatal(err)
}
b := e.Bytes()
d := NewDecoder(b)
var out btypes.APDU
err := d.APDU(&out)
if err != nil {
t.Fatal(err)
}
equal := reflect.DeepEqual(a, out)
if !equal {
t.Errorf("Encoding/Decoding Failed: %v does not equal %v", a, out)
}
}
}
func TestAPDU(t *testing.T) {
a := btypes.APDU{
SegmentedMessage: false,
MoreFollows: true,
SegmentedResponseAccepted: false,
MaxSegs: 64,
MaxApdu: 50,
InvokeId: 62,
Service: btypes.ServiceConfirmedReadProperty,
}
t.Run("Generic APDU Test", subTestAPDU(t, a))
// Segmented message
a.SegmentedMessage = true
a.Sequence = 31
a.WindowNumber = 43
t.Run("Segmented Message Test", subTestAPDU(t, a))
a.MaxSegs = 65
t.Run("Special Max Segs case", subTestAPDU(t, a))
a.MaxApdu = 206
t.Run("Lon Works APDU case", subTestAPDU(t, a))
}
func TestSegsApduEncode(t *testing.T) {
// Test is structured as parameter 1, parameter 2, output
tests := [][]uint{
[]uint{0, 1, 0},
[]uint{64, 60, 0x61},
[]uint{80, 205, 0x72},
[]uint{80, 405, 0x73},
[]uint{80, 1005, 0x74},
[]uint{3, 1035, 0x15},
[]uint{9, 1035, 0x35},
}
for _, test := range tests {
d := uint(encodeMaxSegsMaxApdu(test[0], test[1]))
if d != test[2] {
t.Fatalf("Input was Segments %d and Apdu %d: Expected %x got %x", test[0], test[1], test[2], d)
}
}
}
func TestObject(t *testing.T) {
e := NewEncoder()
var inObjectType btypes.ObjectType = 17
var inInstance btypes.ObjectInstance = 23
e.objectId(inObjectType, inInstance)
b := e.Bytes()
t.Log(b)
d := NewDecoder(b)
outObject, outInstance := d.objectId()
if inObjectType != outObject {
t.Fatalf("There was an issue encoding/decoding objectType. Input value was %d and output value was %d", inObjectType, outObject)
}
if inInstance != outInstance {
t.Fatalf("There was an issue encoding/decoding objectType. Input value was %d and output value was %d", inInstance, outInstance)
}
if err := d.Error(); err != nil {
t.Fatal(err)
}
}
func TestEnumerated(t *testing.T) {
lengths := []int{size8, size16, size24, size32, size32}
tests := []uint32{1, 2 << 8, 3 << 17, 7 << 25, 8 << 26}
e := NewEncoder()
for _, val := range tests {
e.enumerated(val)
}
b := e.Bytes()
d := NewDecoder(b)
for i, val := range tests {
x := d.enumerated(lengths[i])
if x != val {
t.Fatalf("Test[%d]:Decoded value %d doesn't match encoded value %d", i+1, x, val)
}
}
d = NewDecoder(b)
// 1000 is not a valid length
x := d.enumerated(1000)
if x != 0 {
t.Fatalf("For invalid lengths, the value 0 should be decoded. The value %d was decoded", x)
}
}
func compareReadProperties(t *testing.T, rd btypes.PropertyData, outRd btypes.PropertyData) {
// See if the initial read property data matches the output read property
if !reflect.DeepEqual(rd, outRd) {
t.Errorf("Mismatch between decrypted values.\nReceived %v\nExpected %v", rd, outRd)
}
}
func subTestReadProperty(t *testing.T, rd btypes.PropertyData) {
e := NewEncoder()
e.ReadProperty(10, rd)
if err := e.Error(); err != nil {
t.Fatal(err)
}
b := e.Bytes()
d := NewDecoder(b)
// Remove the apdu header
a := btypes.APDU{}
d.APDU(&a)
serviceDecoder := NewDecoder(a.RawData)
var outRd btypes.PropertyData
err := serviceDecoder.ReadProperty(&outRd)
if err != nil {
t.Fatal(err)
}
compareReadProperties(t, rd, outRd)
}
func subTestReadPropertyAck(t *testing.T, rd btypes.PropertyData) {
e := NewEncoder()
e.ReadPropertyAck(10, rd)
if err := e.Error(); err != nil {
t.Fatalf("Encoding: %s", err)
}
b := e.Bytes()
d := NewDecoder(b)
// Read Property reads 4 extra fields that are not original encoded. Need to
//find out where these 4 fields come from
d.buff.Read(make([]uint8, 3))
var outRd btypes.PropertyData
err := d.ReadProperty(&outRd)
if err != nil {
t.Fatalf("Decoding: %s", err)
}
compareReadProperties(t, rd, outRd)
}
func TestReadAckProperty(t *testing.T) {
data := "Hello world!"
rd := btypes.PropertyData{
Object: btypes.Object{
ID: btypes.ObjectID{
Type: 37,
Instance: 1000,
},
Properties: []btypes.Property{
btypes.Property{
Type: 3921,
ArrayIndex: ArrayAll,
Data: data,
},
},
},
}
// We add +2 since there needs to be space for the header information
subTestReadPropertyAck(t, rd)
rd.Object.Properties[0].ArrayIndex = 2
subTestReadPropertyAck(t, rd)
}
func TestReadProperty(t *testing.T) {
rd := btypes.PropertyData{
Object: btypes.Object{
ID: btypes.ObjectID{
Type: 37,
Instance: 1000,
},
Properties: []btypes.Property{
btypes.Property{
Type: 3921,
ArrayIndex: ArrayAll,
},
},
},
}
// Test a generic read property
subTestReadProperty(t, rd)
// Test with an array value given
rd.Object.Properties[0].ArrayIndex = 1
subTestReadProperty(t, rd)
}
// Test for when the read property is too small and error handling
func TestReadPropertyTooSmall(t *testing.T) {
e := NewEncoder()
var garbage uint16 = 100
e.write(garbage)
d := NewDecoder(e.Bytes())
var out btypes.PropertyData
err := d.ReadProperty(&out)
if err == nil {
t.Fatal("Missed too small error")
}
}
// Test for mismatch id error.
func TestReadPropertyMismatch(t *testing.T) {
e := NewEncoder()
var incorrectTag uint8 = 100
var randomValue uint32 = 4
// Has to be written 4 times at least since a minimum of 7 data is required
// for read property
for i := 0; i < 7; i++ {
e.tag(tagInfo{ID: incorrectTag, Context: true, Value: randomValue})
}
d := NewDecoder(e.Bytes())
var out btypes.PropertyData
err := d.ReadProperty(&out)
if err == nil {
t.Fatal("Incorrect tag number was allowed to pass")
}
}
func TestTag(t *testing.T) {
e := NewEncoder()
// Respective to each other
inTag := []uint8{4, 15, 30, 254, 1}
inValue := []uint32{4, 20, 6000, 1, 70000}
for i, tag := range inTag {
e.tag(tagInfo{ID: tag, Context: true, Value: inValue[i]})
}
// Check for errors during the encoding processes
if err := e.Error(); err != nil {
t.Fatal(err)
}
b := e.Bytes()
d := NewDecoder(b)
for i, tag := range inTag {
outTag, _, value := d.tagNumberAndValue()
if tag != outTag {
t.Fatalf("Test[%d]: Tag was not processed propertly. Expected %d, got %d", i, tag, outTag)
}
if value != inValue[i] {
t.Fatalf("Test[%d]: Value was not processed propertly. Expected %d, got %d", i, inValue[i], value)
}
}
// Check for errors during the decoding process
if err := d.Error(); err != nil {
t.Fatal(err)
}
}
func TestTagMetadata(t *testing.T) {
var m tagMeta = 0
m.setClosing()
if !m.isClosing() {
t.Fatal("Closing flag was not properly set.")
}
m.Clear()
if m.isClosing() {
t.Fatal("Flag was not cleared")
}
m.setOpening()
if !m.isOpening() {
t.Fatal("Opening flag was not properly set")
}
m.Clear()
if m.isContextSpecific() {
t.Fatal("Context specific was set when it shouldn't have been")
}
m.setContextSpecific()
if !m.isContextSpecific() {
t.Fatal("Context specific was not properly set.")
}
}
func TestBVLC(t *testing.T) {
bv := btypes.BVLC{
Type: btypes.BVLCTypeBacnetIP,
Function: btypes.BacFuncBroadcast,
Length: 4,
}
e := NewEncoder()
e.BVLC(bv)
if err := e.Error(); err != nil {
t.Error(err)
}
d := NewDecoder(e.Bytes())
var out btypes.BVLC
d.BVLC(&out)
if err := d.Error(); err != nil {
t.Error(err)
}
equal := reflect.DeepEqual(bv, out)
if !equal {
t.Errorf("Encoding/Decoding Failed: %v does not equal %v", bv, out)
}
}
func TestError(t *testing.T) {
var npdu btypes.NPDU
var apdu btypes.APDU
raw := []byte{129, 11, 0, 11, 1, 128, 1, 19, 236, 20, 80}
//[129 11 0 11 1 128 1 19 236 20 80]
//1, 0, 80, 1, 12, 145, 1, 145, 31
dec := NewDecoder(raw)
list, err := dec.NPDU(&npdu)
fmt.Println(list)
if err != nil {
t.Fatal(err)
}
err = dec.APDU(&apdu)
if err != nil {
t.Fatal(err)
}
}