summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_interfaceid_test.go
blob: b38cadbf9d39386633e457211702f37774f47b3f (plain)
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 TestParseOptInterfaceID(t *testing.T) {
	expected := []byte("DSLAM01 eth2/1/01/21")
	var opt optInterfaceID
	if err := opt.FromBytes(expected); err != nil {
		t.Fatal(err)
	}
	if url := opt.ID; !bytes.Equal(url, expected) {
		t.Fatalf("Invalid Interface ID. Expected %v, got %v", expected, url)
	}
}

func TestOptInterfaceID(t *testing.T) {
	want := []byte("DSLAM01 eth2/1/01/21")
	opt := OptInterfaceID(want)
	if got := opt.ToBytes(); !bytes.Equal(got, want) {
		t.Fatalf("%s.ToBytes() = %v, want %v", opt, got, want)
	}

	require.Contains(
		t,
		opt.String(),
		"68 83 76 65 77 48 49 32 101 116 104 50 47 49 47 48 49 47 50 49",
		"String() should return the interfaceId as bytes",
	)
}