加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
robot_work_test.go 2.18 KB
一键复制 编辑 原始数据 按行查看 历史
Trevor Rosen 提交于 2018-08-29 22:30 . Tests and related tweaks
package gobot
import (
"context"
"testing"
"time"
"github.com/gobuffalo/uuid"
"github.com/stretchr/testify/assert"
)
func TestRobotWork(t *testing.T) {
id, _ := uuid.NewV4()
rw := &RobotWork{
id: id,
kind: EveryWorkKind,
function: func() {},
}
duration := time.Second * 1
ctx, cancelFunc := context.WithCancel(context.Background())
rw.ctx = ctx
rw.cancelFunc = cancelFunc
rw.duration = duration
t.Run("ID()", func(t *testing.T) {
assert.Equal(t, rw.ID(), id)
})
t.Run("Ticker()", func(t *testing.T) {
t.Skip()
})
t.Run("Duration()", func(t *testing.T) {
assert.Equal(t, rw.duration, duration)
})
}
func TestRobotWorkRegistry(t *testing.T) {
robot := NewRobot("testbot")
rw := robot.Every(context.Background(), time.Millisecond*250, func() {
_ = 1 + 1
})
t.Run("Get retrieves", func(t *testing.T) {
assert.Equal(t, robot.workRegistry.Get(rw.id), rw)
})
t.Run("delete deletes", func(t *testing.T) {
robot.workRegistry.delete(rw.id)
postDeleteKeys := collectStringKeysFromWorkRegistry(robot.workRegistry)
assert.NotContains(t, postDeleteKeys, rw.id.String())
})
}
func TestRobotAutomationFunctions(t *testing.T) {
t.Run("Every with cancel", func(t *testing.T) {
robot := NewRobot("testbot")
rw := robot.Every(context.Background(), time.Millisecond*10, func() {
_ = 1 + 1 // perform mindless computation!
})
time.Sleep(time.Millisecond * 25)
rw.CallCancelFunc()
robot.WorkEveryWaitGroup.Wait()
assert.Equal(t, 2, rw.tickCount)
postDeleteKeys := collectStringKeysFromWorkRegistry(robot.workRegistry)
assert.NotContains(t, postDeleteKeys, rw.id.String())
})
t.Run("After with cancel", func(t *testing.T) {
robot := NewRobot("testbot")
rw := robot.After(context.Background(), time.Millisecond*10, func() {
_ = 1 + 1 // perform mindless computation!
})
rw.CallCancelFunc()
robot.WorkAfterWaitGroup.Wait()
postDeleteKeys := collectStringKeysFromWorkRegistry(robot.workRegistry)
assert.NotContains(t, postDeleteKeys, rw.id.String())
})
}
func collectStringKeysFromWorkRegistry(rwr *RobotWorkRegistry) []string {
keys := make([]string, len(rwr.r))
for k, _ := range rwr.r {
keys = append(keys, k)
}
return keys
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化