2014-04-16 12:10:32 +08:00
|
|
|
package gobot
|
|
|
|
|
|
|
|
import (
|
2014-06-13 05:38:03 +08:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
2014-06-07 05:44:16 +08:00
|
|
|
"time"
|
2014-04-16 12:10:32 +08:00
|
|
|
)
|
|
|
|
|
2014-06-13 05:38:03 +08:00
|
|
|
func TestEvery(t *testing.T) {
|
|
|
|
i := 0
|
|
|
|
Every(2*time.Millisecond, func() {
|
|
|
|
i++
|
|
|
|
})
|
2014-07-15 05:26:30 +08:00
|
|
|
<-time.After(5 * time.Millisecond)
|
2014-07-18 02:41:47 +08:00
|
|
|
Assert(t, i, 2)
|
2014-06-13 05:38:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestAfter(t *testing.T) {
|
|
|
|
i := 0
|
|
|
|
After(1*time.Millisecond, func() {
|
|
|
|
i++
|
|
|
|
})
|
2014-07-15 05:26:30 +08:00
|
|
|
<-time.After(2 * time.Millisecond)
|
2014-07-18 02:41:47 +08:00
|
|
|
Assert(t, i, 1)
|
2014-06-13 05:38:03 +08:00
|
|
|
}
|
2014-04-16 12:10:32 +08:00
|
|
|
|
2014-06-13 05:38:03 +08:00
|
|
|
func TestPublish(t *testing.T) {
|
|
|
|
e := &Event{Chan: make(chan interface{}, 1)}
|
|
|
|
Publish(e, 1)
|
|
|
|
Publish(e, 2)
|
|
|
|
Publish(e, 3)
|
|
|
|
Publish(e, 4)
|
|
|
|
i := <-e.Chan
|
2014-07-18 02:41:47 +08:00
|
|
|
Assert(t, i, 1)
|
2014-06-13 05:38:03 +08:00
|
|
|
}
|
2014-04-16 12:10:32 +08:00
|
|
|
|
2014-06-13 05:38:03 +08:00
|
|
|
func TestOn(t *testing.T) {
|
|
|
|
var i int
|
|
|
|
e := NewEvent()
|
|
|
|
On(e, func(data interface{}) {
|
|
|
|
i = data.(int)
|
2014-04-16 12:10:32 +08:00
|
|
|
})
|
2014-06-13 05:38:03 +08:00
|
|
|
Publish(e, 10)
|
2014-07-15 05:26:30 +08:00
|
|
|
<-time.After(1 * time.Millisecond)
|
2014-07-18 02:41:47 +08:00
|
|
|
Assert(t, i, 10)
|
2014-06-13 05:38:03 +08:00
|
|
|
}
|
2014-07-15 05:26:30 +08:00
|
|
|
func TestOnce(t *testing.T) {
|
|
|
|
i := 0
|
|
|
|
e := NewEvent()
|
|
|
|
Once(e, func(data interface{}) {
|
|
|
|
i += data.(int)
|
|
|
|
})
|
|
|
|
On(e, func(data interface{}) {
|
|
|
|
i += data.(int)
|
|
|
|
})
|
|
|
|
Publish(e, 10)
|
|
|
|
<-time.After(1 * time.Millisecond)
|
|
|
|
Publish(e, 10)
|
|
|
|
<-time.After(1 * time.Millisecond)
|
2014-07-18 02:41:47 +08:00
|
|
|
Assert(t, i, 30)
|
2014-07-15 05:26:30 +08:00
|
|
|
}
|
2014-06-13 05:38:03 +08:00
|
|
|
|
|
|
|
func TestFromScale(t *testing.T) {
|
2014-07-18 02:41:47 +08:00
|
|
|
Assert(t, FromScale(5, 0, 10), 0.5)
|
2014-06-13 05:38:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestToScale(t *testing.T) {
|
2014-07-18 02:41:47 +08:00
|
|
|
Assert(t, ToScale(500, 0, 10), 10.0)
|
|
|
|
Assert(t, ToScale(-1, 0, 10), 0.0)
|
|
|
|
Assert(t, ToScale(0.5, 0, 10), 5.0)
|
2014-06-13 05:38:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRand(t *testing.T) {
|
|
|
|
a := Rand(1000)
|
|
|
|
b := Rand(1000)
|
|
|
|
if a == b {
|
|
|
|
t.Error(fmt.Sprintf("%v should not equal %v", a, b))
|
|
|
|
}
|
|
|
|
}
|