summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_requestedoption_test.go
blob: 3e79480d1e0e1493d4d2c3e5074b03894ffd76a0 (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
35
36
37
38
package dhcpv6

import (
	"testing"

	"github.com/stretchr/testify/require"
)

func TestOptRequestedOption(t *testing.T) {
	expected := []byte{0, 1, 0, 2}
	_, err := ParseOptRequestedOption(expected)
	require.NoError(t, err, "ParseOptRequestedOption() correct options should not error")
}

func TestOptRequestedOptionParseOptRequestedOptionTooShort(t *testing.T) {
	buf := []byte{0, 1, 0}
	_, err := ParseOptRequestedOption(buf)
	require.Error(t, err, "A short option should return an error (must be divisible by 2)")
}

func TestOptRequestedOptionString(t *testing.T) {
	buf := []byte{0, 1, 0, 2}
	opt, err := ParseOptRequestedOption(buf)
	require.NoError(t, err)
	require.Contains(
		t,
		opt.String(),
		"Client Identifier, Server Identifier",
		"String() should contain the options specified",
	)
	opt.AddRequestedOption(12345)
	require.Contains(
		t,
		opt.String(),
		"unknown",
		"String() should contain 'Unknown' for an illegal option",
	)
}