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
|
package dhcpv6
import (
"bytes"
"testing"
"github.com/stretchr/testify/require"
)
func TestOptBootFileURL(t *testing.T) {
expected := []byte("https://insomniac.slackware.it")
opt, err := ParseOptBootFileURL(expected)
if err != nil {
t.Fatal(err)
}
if optLen := opt.Length(); optLen != len(expected) {
t.Fatalf("Invalid length. Expected %v, got %v", len(expected), optLen)
}
if url := opt.BootFileURL; !bytes.Equal(url, expected) {
t.Fatalf("Invalid boot file URL. Expected %v, got %v", expected, url)
}
require.Contains(t, opt.String(), "BootFileUrl=https://insomniac.slackware.it", "String() should contain the correct BootFileUrl output")
}
func TestOptBootFileURLToBytes(t *testing.T) {
urlString := []byte("https://insomniac.slackware.it")
opt := OptBootFileURL{
BootFileURL: urlString,
}
toBytes := opt.ToBytes()
if !bytes.Equal(toBytes, urlString) {
t.Fatalf("Invalid ToBytes result. Expected %v, got %v", urlString, toBytes)
}
}
|