From 07741b358ba75350e7be36ee76f45afa18b0461b Mon Sep 17 00:00:00 2001 From: xegineering Date: Wed, 2 Oct 2024 21:18:51 +0200 Subject: Rename Soundbox to Client Since the module name is `soundbox` naming the primary type of the module also `Soundbox` is redundant. Following similar code from the Go standard library this struct is renamed to `Client`. --- client_test.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 client_test.go (limited to 'client_test.go') diff --git a/client_test.go b/client_test.go new file mode 100644 index 0000000..35e3624 --- /dev/null +++ b/client_test.go @@ -0,0 +1,25 @@ +package soundbox + +import ( + "testing" +) + +func TestNewClient(t *testing.T) { + // valid MAC should succeed + _, err := NewClient("12:34:56:ab:cd:ef") + if err != nil { + t.Fatalf("NewClient() failed: %v", err) + } + + // invalid MAC should fail + _, err = NewClient("12:34:56:ab:cd") + if err == nil { + t.Fatalf("NewClient() failed: %v", err) + } + + // No EUI-64 supported + _, err = NewClient("12:34:56:ab:cd:ef:12:45") + if err == nil { + t.Fatalf("NewClient() failed: %v", err) + } +} -- cgit v1.2.3-70-g09d2