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
|
package dhcpv6
import (
"errors"
"fmt"
"reflect"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/stretchr/testify/require"
"github.com/u-root/uio/uio"
)
func TestVendorClassParseAndGetter(t *testing.T) {
for i, tt := range []struct {
buf []byte
err error
want []*OptVendorClass
}{
{
buf: []byte{
0, 16, // Vendor Class
0, 14, // length
0, 0, 0, 16,
0, 4,
'S', 'L', 'A', 'M',
0, 2,
'h', 'h',
},
want: []*OptVendorClass{
&OptVendorClass{
EnterpriseNumber: 16,
Data: [][]byte{[]byte("SLAM"), []byte("hh")},
},
},
},
{
buf: []byte{
0, 16,
0, 0,
},
err: uio.ErrBufferTooShort,
},
{
buf: []byte{
0, 16,
0, 4,
0, 0, 0, 6,
},
err: uio.ErrBufferTooShort,
},
{
buf: []byte{0, 16, 0},
err: uio.ErrUnreadBytes,
},
} {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
var mo MessageOptions
if err := mo.FromBytes(tt.buf); !errors.Is(err, tt.err) {
t.Errorf("FromBytes = %v, want %v", err, tt.err)
}
if got := mo.VendorClasses(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("VendorClass = %v, want %v", got, tt.want)
}
for _, v := range tt.want {
if got := mo.VendorClass(v.EnterpriseNumber); !reflect.DeepEqual(got, v.Data) {
t.Errorf("VendorClass(%d) = %v, want %v", v.EnterpriseNumber, got, v.Data)
}
}
if got := mo.VendorClass(100); got != nil {
t.Errorf("VendorClass(100) = %v, want nil", got)
}
if tt.want != nil {
var m MessageOptions
for _, o := range tt.want {
m.Add(o)
}
got := m.ToBytes()
if diff := cmp.Diff(tt.buf, got); diff != "" {
t.Errorf("ToBytes mismatch (-want, +got): %s", diff)
}
}
})
}
}
func TestOptVendorClassString(t *testing.T) {
data := []byte{
0xaa, 0xbb, 0xcc, 0xdd, // EnterpriseNumber
0, 9, 'l', 'i', 'n', 'u', 'x', 'b', 'o', 'o', 't',
0, 4, 't', 'e', 's', 't',
}
var opt OptVendorClass
err := opt.FromBytes(data)
require.NoError(t, err)
str := opt.String()
require.Contains(
t,
str,
"EnterpriseNumber=2864434397",
"String() should contain the enterprisenum",
)
require.Contains(
t,
str,
"Data=[linuxboot, test]",
"String() should contain the list of vendor classes",
)
}
|