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
|
package dhcpv4
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestOptBootfileNameCode(t *testing.T) {
opt := OptBootfileName{}
require.Equal(t, OptionBootfileName, opt.Code())
}
func TestOptBootfileNameToBytes(t *testing.T) {
opt := OptBootfileName{
BootfileName: []byte("linuxboot"),
}
data := opt.ToBytes()
expected := []byte{
67, // OptionBootfileName
9, // length
'l', 'i', 'n', 'u', 'x', 'b', 'o', 'o', 't',
}
require.Equal(t, expected, data)
}
func TestParseOptBootfileName(t *testing.T) {
expected := []byte{
67, 9, 'l', 'i', 'n', 'u', 'x', 'b', 'o', 'o', 't',
}
opt, err := ParseOptBootfileName(expected)
require.NoError(t, err)
require.Equal(t, 9, opt.Length())
require.Equal(t, "linuxboot", string(opt.BootfileName))
}
func TestParseOptBootfileNameZeroLength(t *testing.T) {
expected := []byte{
67, 0,
}
_, err := ParseOptBootfileName(expected)
require.Error(t, err)
}
func TestParseOptBootfileNameInvalidLength(t *testing.T) {
expected := []byte{
67, 9, 'l', 'i', 'n', 'u', 'x', 'b',
}
_, err := ParseOptBootfileName(expected)
require.Error(t, err)
}
func TestParseOptBootfileNameShortLength(t *testing.T) {
expected := []byte{
67, 4, 'l', 'i', 'n', 'u', 'x',
}
opt, err := ParseOptBootfileName(expected)
require.NoError(t, err)
require.Equal(t, []byte("linu"), opt.BootfileName)
}
|