2018-06-04 15:46:49 +02:00
|
|
|
package rpio
|
|
|
|
|
|
|
|
import (
|
2018-06-05 21:51:36 +02:00
|
|
|
"os"
|
2018-06-04 15:46:49 +02:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2018-06-05 21:51:36 +02:00
|
|
|
println("Note: bcm pins 2 and 3 has to be directly connected")
|
2018-06-04 15:46:49 +02:00
|
|
|
if err := Open(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2018-06-05 21:51:36 +02:00
|
|
|
defer Close()
|
2018-06-04 15:46:49 +02:00
|
|
|
os.Exit(m.Run())
|
|
|
|
}
|
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
func TestEvent(t *testing.T) {
|
2018-06-04 15:46:49 +02:00
|
|
|
src := Pin(3)
|
|
|
|
src.Mode(Output)
|
|
|
|
|
|
|
|
pin := Pin(2)
|
|
|
|
pin.Mode(Input)
|
|
|
|
pin.PullDown()
|
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
t.Run("rising edge", func(t *testing.T) {
|
|
|
|
pin.Detect(RiseEdge)
|
|
|
|
src.Low()
|
|
|
|
|
|
|
|
for i := 0; ; i++ {
|
|
|
|
src.High()
|
|
|
|
|
|
|
|
time.Sleep(time.Second / 10)
|
|
|
|
if pin.EdgeDetected() {
|
|
|
|
t.Log("edge rised")
|
|
|
|
} else {
|
|
|
|
t.Errorf("Rise event should be detected")
|
|
|
|
}
|
|
|
|
if i == 5 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
src.Low()
|
|
|
|
}
|
2018-06-04 15:46:49 +02:00
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
time.Sleep(time.Second / 10)
|
2018-06-04 15:46:49 +02:00
|
|
|
if pin.EdgeDetected() {
|
2018-06-06 17:51:04 +02:00
|
|
|
t.Error("Rise should not be detected, no change since last call")
|
2018-06-04 15:46:49 +02:00
|
|
|
}
|
2018-06-06 17:51:04 +02:00
|
|
|
pin.Detect(NoEdge)
|
|
|
|
src.High()
|
|
|
|
if pin.EdgeDetected() {
|
|
|
|
t.Error("Rise should not be detected, events disabled")
|
2018-06-04 15:46:49 +02:00
|
|
|
}
|
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
})
|
2018-06-04 15:46:49 +02:00
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
t.Run("falling edge", func(t *testing.T) {
|
|
|
|
pin.Detect(FallEdge)
|
|
|
|
src.High()
|
2018-06-04 15:46:49 +02:00
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
for i := 0; ; i++ {
|
|
|
|
src.Low()
|
2018-06-04 15:46:49 +02:00
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
time.Sleep(time.Second / 10)
|
|
|
|
if pin.EdgeDetected() {
|
|
|
|
t.Log("edge fallen")
|
|
|
|
} else {
|
|
|
|
t.Errorf("Fall event should be detected")
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == 5 {
|
|
|
|
break
|
|
|
|
}
|
2018-06-04 15:46:49 +02:00
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
src.High()
|
|
|
|
}
|
|
|
|
time.Sleep(time.Second / 10)
|
|
|
|
if pin.EdgeDetected() {
|
|
|
|
t.Error("Fall should not be detected, no change since last call")
|
|
|
|
}
|
|
|
|
pin.Detect(NoEdge)
|
|
|
|
src.Low()
|
2018-06-05 21:51:36 +02:00
|
|
|
if pin.EdgeDetected() {
|
2018-06-06 17:51:04 +02:00
|
|
|
t.Error("Fall should not be detected, events disabled")
|
2018-06-05 21:51:36 +02:00
|
|
|
}
|
2018-06-06 17:51:04 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("both edges", func(t *testing.T) {
|
|
|
|
pin.Detect(AnyEdge)
|
|
|
|
src.Low()
|
|
|
|
|
|
|
|
for i := 0; i < 5; i++ {
|
|
|
|
src.High()
|
|
|
|
|
|
|
|
if pin.EdgeDetected() {
|
|
|
|
t.Log("edge detected")
|
|
|
|
} else {
|
|
|
|
t.Errorf("Rise event shoud be detected")
|
|
|
|
}
|
2018-06-04 15:46:49 +02:00
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
src.Low()
|
|
|
|
|
|
|
|
if pin.EdgeDetected() {
|
|
|
|
t.Log("edge detected")
|
|
|
|
} else {
|
|
|
|
t.Errorf("Fall edge should be detected")
|
|
|
|
}
|
2018-06-05 21:51:36 +02:00
|
|
|
}
|
2018-06-04 15:46:49 +02:00
|
|
|
|
2018-06-06 17:51:04 +02:00
|
|
|
pin.Detect(NoEdge)
|
2018-06-05 21:51:36 +02:00
|
|
|
src.High()
|
2018-06-06 17:51:04 +02:00
|
|
|
src.Low()
|
|
|
|
|
|
|
|
if pin.EdgeDetected() {
|
|
|
|
t.Errorf("No edge should be detected, events disabled")
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
2018-06-05 21:51:36 +02:00
|
|
|
|
2018-06-05 21:51:36 +02:00
|
|
|
}
|