robocar-led/pkg/led/led_test.go

248 lines
5.1 KiB
Go

package led
import (
"periph.io/x/conn/v3/gpio"
"sync"
"testing"
"time"
)
func TestColorLed_Red(t *testing.T) {
setLedBackup := setLed
defer func() { setLed = setLedBackup }()
l := New()
fakeLed := struct {
redValue int
greenValue int
blueValue int
}{}
setLed = func(v int, led gpio.PinIO, mutex *sync.Mutex) {
mutex.Lock()
defer mutex.Unlock()
switch led {
case l.pinRed:
fakeLed.redValue = v
case l.pinGreen:
fakeLed.greenValue = v
case l.pinBlue:
fakeLed.blueValue = v
}
}
if l.Red() != 0 {
t.Errorf("%T.Red(): %v, wants %v", l, l.Red(), 0)
}
if fakeLed.redValue != 0 {
t.Errorf("colorValue: %v, wants %v", fakeLed.redValue, 0)
}
l.SetColor(ColorRed)
if l.Red() != 255 {
t.Errorf("%T.Red(): %v, wants %v", l, l.Red(), 255)
}
if fakeLed.redValue != 255 {
t.Errorf("colorValue: %v, wants %v", fakeLed.redValue, 255)
}
}
func TestColorLed_Green(t *testing.T) {
setLedBackup := setLed
defer func() { setLed = setLedBackup }()
l := New()
fakeLed := struct {
redValue int
greenValue int
blueValue int
}{}
setLed = func(v int, led gpio.PinIO, mutex *sync.Mutex) {
mutex.Lock()
defer mutex.Unlock()
switch led {
case l.pinRed:
fakeLed.redValue = v
case l.pinGreen:
fakeLed.greenValue = v
case l.pinBlue:
fakeLed.blueValue = v
}
}
if l.Green() != 0 {
t.Errorf("%T.Green(): %v, wants %v", l, l.Green(), 0)
}
if fakeLed.greenValue != 0 {
t.Errorf("colorValue: %v, wants %v", fakeLed.greenValue, 0)
}
l.SetColor(ColorGreen)
if l.Green() != 255 {
t.Errorf("%T.Green(): %v, wants %v", l, l.Green(), 255)
}
if fakeLed.greenValue != 255 {
t.Errorf("colorValue: %v, wants %v", fakeLed.greenValue, 255)
}
}
func TestColorLed_Blue(t *testing.T) {
setLedBackup := setLed
defer func() { setLed = setLedBackup }()
l := New()
fakeLed := struct {
redValue int
greenValue int
blueValue int
}{}
setLed = func(v int, led gpio.PinIO, mutex *sync.Mutex) {
mutex.Lock()
defer mutex.Unlock()
switch led {
case l.pinRed:
fakeLed.redValue = v
case l.pinGreen:
fakeLed.greenValue = v
case l.pinBlue:
fakeLed.blueValue = v
}
}
if l.Blue() != 0 {
t.Errorf("%T.Blue(): %v, wants %v", l, l.Blue(), 0)
}
if fakeLed.blueValue != 0 {
t.Errorf("colorValue: %v, wants %v", fakeLed.blueValue, 0)
}
l.SetColor(ColorBlue)
if l.Blue() != 255 {
t.Errorf("%T.Blue(): %v, wants %v", l, l.Blue(), 255)
}
if fakeLed.blueValue != 255 {
t.Errorf("colorValue: %v, wants %v", fakeLed.blueValue, 255)
}
}
func TestColorLed_SetBlink(t *testing.T) {
setLedBackup := setLed
defer func() { setLed = setLedBackup }()
var muFakeValue sync.Mutex
ledColors := make(map[gpio.PinIO]int)
setLed = func(v int, led gpio.PinIO, mutex *sync.Mutex) {
mutex.Lock()
defer mutex.Unlock()
muFakeValue.Lock()
defer muFakeValue.Unlock()
ledColors[led] = v
}
readValue := func(p gpio.PinIO) int {
muFakeValue.Lock()
defer muFakeValue.Unlock()
return ledColors[p]
}
l := New()
l.SetColor(ColorBlue)
v := ledColors[l.pinBlue]
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 255)
}
l.SetBlink(100)
v = readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 255)
}
time.Sleep(12 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 0 {
t.Errorf("colorValue: %v, wants %v", v, 0)
}
time.Sleep(12 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 255)
}
time.Sleep(12 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 0 {
t.Errorf("colorValue: %v, wants %v", v, 0)
}
// Stop blink
l.SetBlink(0)
time.Sleep(5 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 255)
}
time.Sleep(12 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 255)
}
}
func TestColorLed_SetBlinkAndUpdadeColor(t *testing.T) {
setLedBackup := setLed
defer func() { setLed = setLedBackup }()
var muFakeValue sync.Mutex
ledColors := make(map[gpio.PinIO]int)
setLed = func(v int, led gpio.PinIO, mutex *sync.Mutex) {
mutex.Lock()
defer mutex.Unlock()
muFakeValue.Lock()
defer muFakeValue.Unlock()
ledColors[led] = v
}
readValue := func(p gpio.PinIO) int {
muFakeValue.Lock()
defer muFakeValue.Unlock()
return ledColors[p]
}
l := New()
l.SetColor(ColorBlue)
l.SetBlink(100)
v := readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 255)
}
time.Sleep(6 * time.Millisecond)
l.SetColor(ColorBlue)
v = readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 128)
}
time.Sleep(6 * time.Millisecond)
time.Sleep(12 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 128)
}
time.Sleep(12 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 0 {
t.Errorf("colorValue: %v, wants %v", v, 0)
}
// Stop blink
l.SetBlink(0)
time.Sleep(5 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 128)
}
time.Sleep(12 * time.Millisecond)
v = readValue(l.pinBlue)
if v != 255 {
t.Errorf("colorValue: %v, wants %v", v, 128)
}
}