mirror of https://github.com/Xhofe/alist
test: add task manager test
parent
68ca2abd0c
commit
6ad2cf2003
|
@ -1,6 +1,7 @@
|
||||||
package task
|
package task
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/pkg/errors"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
|
|
||||||
"github.com/alist-org/alist/v3/pkg/generic_sync"
|
"github.com/alist-org/alist/v3/pkg/generic_sync"
|
||||||
|
@ -32,6 +33,24 @@ func (tm *Manager) Get(id uint64) (*Task, bool) {
|
||||||
return tm.tasks.Load(id)
|
return tm.tasks.Load(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (tm *Manager) Retry(id uint64) error {
|
||||||
|
t, ok := tm.Get(id)
|
||||||
|
if !ok {
|
||||||
|
return errors.New("task not found")
|
||||||
|
}
|
||||||
|
t.Retry()
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (tm *Manager) Cancel(id uint64) error {
|
||||||
|
t, ok := tm.Get(id)
|
||||||
|
if !ok {
|
||||||
|
return errors.New("task not found")
|
||||||
|
}
|
||||||
|
t.Cancel()
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (tm *Manager) Remove(id uint64) {
|
func (tm *Manager) Remove(id uint64) {
|
||||||
tm.tasks.Delete(id)
|
tm.tasks.Delete(id)
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,79 @@
|
||||||
|
package task
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/alist-org/alist/v3/pkg/utils"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestTask_Manager(t *testing.T) {
|
||||||
|
tm := NewTaskManager()
|
||||||
|
id := tm.Add("test", func(task *Task) error {
|
||||||
|
time.Sleep(time.Millisecond * 500)
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
task, ok := tm.Get(id)
|
||||||
|
if !ok {
|
||||||
|
t.Fatal("task not found")
|
||||||
|
}
|
||||||
|
time.Sleep(time.Millisecond * 100)
|
||||||
|
if task.Status != RUNNING {
|
||||||
|
t.Errorf("task status not running: %s", task.Status)
|
||||||
|
}
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
if task.Status != FINISHED {
|
||||||
|
t.Errorf("task status not finished: %s", task.Status)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTask_Cancel(t *testing.T) {
|
||||||
|
tm := NewTaskManager()
|
||||||
|
id := tm.Add("test", func(task *Task) error {
|
||||||
|
for {
|
||||||
|
if utils.IsCanceled(task.Ctx) {
|
||||||
|
return nil
|
||||||
|
} else {
|
||||||
|
t.Logf("task is running")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
task, ok := tm.Get(id)
|
||||||
|
if !ok {
|
||||||
|
t.Fatal("task not found")
|
||||||
|
}
|
||||||
|
time.Sleep(time.Microsecond * 50)
|
||||||
|
task.Cancel()
|
||||||
|
time.Sleep(time.Millisecond)
|
||||||
|
if task.Status != CANCELED {
|
||||||
|
t.Errorf("task status not canceled: %s", task.Status)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTask_Retry(t *testing.T) {
|
||||||
|
tm := NewTaskManager()
|
||||||
|
num := 0
|
||||||
|
id := tm.Add("test", func(task *Task) error {
|
||||||
|
num++
|
||||||
|
if num&1 == 1 {
|
||||||
|
return errors.New("test error")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
task, ok := tm.Get(id)
|
||||||
|
if !ok {
|
||||||
|
t.Fatal("task not found")
|
||||||
|
}
|
||||||
|
time.Sleep(time.Millisecond)
|
||||||
|
if task.Error == nil {
|
||||||
|
t.Error(task.Status)
|
||||||
|
t.Fatal("task error is nil, but expected error")
|
||||||
|
} else {
|
||||||
|
t.Logf("task error: %s", task.Error)
|
||||||
|
}
|
||||||
|
task.Retry()
|
||||||
|
time.Sleep(time.Millisecond)
|
||||||
|
if task.Error != nil {
|
||||||
|
t.Errorf("task error: %+v, but expected nil", task.Error)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue