summaryrefslogtreecommitdiff
path: root/soundbox_test.go
blob: 6a5cde3a612612df7d22986ec08ba0cb1907db03 (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
package soundbox

import (
	"testing"
)

func TestNewSoundbox(t *testing.T) {
	// valid MAC should succeed
	_, err := NewSoundbox("12:34:56:ab:cd:ef")
	if err != nil {
		t.Errorf("NewSoundbox() failed: %v", err)
	}

	// invalid MAC should fail
	_, err = NewSoundbox("12:34:56:ab:cd")
	if err == nil {
		t.Errorf("NewSoundbox() failed: %v", err)
	}

	// No EUI-64 supported
	_, err = NewSoundbox("12:34:56:ab:cd:ef:12:45")
	if err == nil {
		t.Errorf("NewSoundbox() failed: %v", err)
	}
}