summaryrefslogtreecommitdiff
path: root/soundbox_test.go
blob: ee9d8855d4403a50115dd23812829edf46a39586 (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.Fatalf("NewSoundbox() failed: %v", err)
	}

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

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