-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #525 from candlerb/candlerb/autoconfigure
Option helper for AutoConfigure
- Loading branch information
Showing
5 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package dhcpv4 | ||
|
||
import ( | ||
"fmt" | ||
) | ||
|
||
// AutoConfiguration implements encoding and decoding functions for a | ||
// byte enumeration as used in RFC 2563, Section 2. | ||
type AutoConfiguration byte | ||
|
||
const ( | ||
DoNotAutoConfigure AutoConfiguration = 0 | ||
AutoConfigure AutoConfiguration = 1 | ||
) | ||
|
||
var autoConfigureToString = map[AutoConfiguration]string{ | ||
DoNotAutoConfigure: "DoNotAutoConfigure", | ||
AutoConfigure: "AutoConfigure", | ||
} | ||
|
||
// ToBytes returns a serialized stream of bytes for this option. | ||
func (o AutoConfiguration) ToBytes() []byte { | ||
return []byte{byte(o)} | ||
} | ||
|
||
// String returns a human-readable string for this option. | ||
func (o AutoConfiguration) String() string { | ||
s := autoConfigureToString[o] | ||
if s != "" { | ||
return s | ||
} | ||
return fmt.Sprintf("UNKNOWN (%d)", byte(o)) | ||
} | ||
|
||
// FromBytes parses a a single byte into AutoConfiguration | ||
func (o *AutoConfiguration) FromBytes(data []byte) error { | ||
if len(data) == 1 { | ||
*o = AutoConfiguration(data[0]) | ||
return nil | ||
} | ||
return fmt.Errorf("Invalid buffer length (%d)", len(data)) | ||
} | ||
|
||
// GetByte parses any single-byte option | ||
func GetByte(code OptionCode, o Options) (byte, error) { | ||
data := o.Get(code) | ||
if data == nil { | ||
return 0, fmt.Errorf("option not present") | ||
} | ||
if len(data) != 1 { | ||
return 0, fmt.Errorf("Invalid buffer length (%d)", len(data)) | ||
} | ||
return data[0], nil | ||
} | ||
|
||
// OptAutoConfigure returns a new AutoConfigure option. | ||
// | ||
// The AutoConfigure option is described by RFC 2563, Section 2. | ||
func OptAutoConfigure(autoconf AutoConfiguration) Option { | ||
return Option{Code: OptionAutoConfigure, Value: autoconf} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package dhcpv4 | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestOptAutoConfigure(t *testing.T) { | ||
o := OptAutoConfigure(0) | ||
require.Equal(t, OptionAutoConfigure, o.Code, "Code") | ||
require.Equal(t, []byte{0}, o.Value.ToBytes(), "ToBytes") | ||
require.Equal(t, "Auto-Configure: DoNotAutoConfigure", o.String()) | ||
|
||
o = OptAutoConfigure(1) | ||
require.Equal(t, OptionAutoConfigure, o.Code, "Code") | ||
require.Equal(t, []byte{1}, o.Value.ToBytes(), "ToBytes") | ||
require.Equal(t, "Auto-Configure: AutoConfigure", o.String()) | ||
|
||
o = OptAutoConfigure(2) | ||
require.Equal(t, OptionAutoConfigure, o.Code, "Code") | ||
require.Equal(t, []byte{2}, o.Value.ToBytes(), "ToBytes") | ||
require.Equal(t, "Auto-Configure: UNKNOWN (2)", o.String()) | ||
} | ||
|
||
func TestGetAutoConfigure(t *testing.T) { | ||
m, _ := New(WithGeneric(OptionAutoConfigure, []byte{1})) | ||
o, ok := m.AutoConfigure() | ||
require.True(t, ok) | ||
require.Equal(t, AutoConfigure, o) | ||
|
||
// Missing | ||
m, _ = New() | ||
_, ok = m.AutoConfigure() | ||
require.False(t, ok, "should get error if option missing") | ||
|
||
// Short byte stream | ||
m, _ = New(WithGeneric(OptionAutoConfigure, []byte{})) | ||
_, ok = m.AutoConfigure() | ||
require.False(t, ok, "should get error from short byte stream") | ||
|
||
// Bad length | ||
m, _ = New(WithGeneric(OptionAutoConfigure, []byte{2, 2})) | ||
_, ok = m.AutoConfigure() | ||
require.False(t, ok, "should get error from bad length") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters