From 54efe77e5afa90329d78cf8302b8eb8e0af3e898 Mon Sep 17 00:00:00 2001 From: Pablo Mazzini Date: Thu, 2 Aug 2018 18:58:47 +0200 Subject: OptClientArchType: increase coverage --- dhcpv4/options_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'dhcpv4') diff --git a/dhcpv4/options_test.go b/dhcpv4/options_test.go index be2791c..b2d671a 100644 --- a/dhcpv4/options_test.go +++ b/dhcpv4/options_test.go @@ -33,6 +33,14 @@ func TestParseOption(t *testing.T) { require.Equal(t, 4, opt.Length(), "Length") require.Equal(t, option, opt.ToBytes(), "ToBytes") + // Option domain name server + option = []byte{6, 4, 192, 168, 1, 1} + opt, err = ParseOption(option) + require.NoError(t, err) + require.Equal(t, OptionDomainNameServer, opt.Code(), "Code") + require.Equal(t, 4, opt.Length(), "Length") + require.Equal(t, option, opt.ToBytes(), "ToBytes") + // Requested IP address option = []byte{50, 4, 1, 2, 3, 4} opt, err = ParseOption(option) -- cgit v1.2.3