gf/os/gtimer/gtimer_z_unit_timer_test.go
2021-10-30 19:44:22 +08:00

276 lines
6.8 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
// Timer Operations
package gtimer_test
import (
"context"
"testing"
"time"
"github.com/gogf/gf/v2/container/garray"
"github.com/gogf/gf/v2/os/gtimer"
"github.com/gogf/gf/v2/test/gtest"
)
func New() *gtimer.Timer {
return gtimer.New()
}
func TestTimer_Add_Close(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
//fmt.Println("start", time.Now())
timer.Add(ctx, 200*time.Millisecond, func(ctx context.Context) {
//fmt.Println("job1", time.Now())
array.Append(1)
})
timer.Add(ctx, 200*time.Millisecond, func(ctx context.Context) {
//fmt.Println("job2", time.Now())
array.Append(1)
})
timer.Add(ctx, 400*time.Millisecond, func(ctx context.Context) {
//fmt.Println("job3", time.Now())
array.Append(1)
})
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 2)
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 5)
timer.Close()
time.Sleep(250 * time.Millisecond)
fixedLength := array.Len()
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), fixedLength)
})
}
func TestTimer_Start_Stop_Close(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.Add(ctx, 1000*time.Millisecond, func(ctx context.Context) {
array.Append(1)
})
t.Assert(array.Len(), 0)
time.Sleep(1200 * time.Millisecond)
t.Assert(array.Len(), 1)
timer.Stop()
time.Sleep(1200 * time.Millisecond)
t.Assert(array.Len(), 1)
timer.Start()
time.Sleep(1200 * time.Millisecond)
t.Assert(array.Len(), 2)
timer.Close()
time.Sleep(1200 * time.Millisecond)
t.Assert(array.Len(), 2)
})
}
func TestJob_Reset(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
job := timer.AddSingleton(ctx, 500*time.Millisecond, func(ctx context.Context) {
array.Append(1)
})
time.Sleep(300 * time.Millisecond)
job.Reset()
time.Sleep(300 * time.Millisecond)
job.Reset()
time.Sleep(300 * time.Millisecond)
job.Reset()
time.Sleep(600 * time.Millisecond)
t.Assert(array.Len(), 1)
})
}
func TestTimer_AddSingleton(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.AddSingleton(ctx, 200*time.Millisecond, func(ctx context.Context) {
array.Append(1)
time.Sleep(10 * time.Second)
})
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 1)
time.Sleep(500 * time.Millisecond)
t.Assert(array.Len(), 1)
})
}
func TestTimer_AddOnce(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.AddOnce(ctx, 200*time.Millisecond, func(ctx context.Context) {
array.Append(1)
})
timer.AddOnce(ctx, 200*time.Millisecond, func(ctx context.Context) {
array.Append(1)
})
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 2)
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 2)
timer.Close()
time.Sleep(250 * time.Millisecond)
fixedLength := array.Len()
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), fixedLength)
})
}
func TestTimer_AddTimes(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.AddTimes(ctx, 200*time.Millisecond, 2, func(ctx context.Context) {
array.Append(1)
})
time.Sleep(1000 * time.Millisecond)
t.Assert(array.Len(), 2)
})
}
func TestTimer_DelayAdd(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.DelayAdd(ctx, 200*time.Millisecond, 200*time.Millisecond, func(ctx context.Context) {
array.Append(1)
})
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 0)
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 1)
})
}
func TestTimer_DelayAddJob(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.DelayAddEntry(ctx, 200*time.Millisecond, 200*time.Millisecond, func(ctx context.Context) {
array.Append(1)
}, false, 100, gtimer.StatusReady)
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 0)
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 1)
})
}
func TestTimer_DelayAddSingleton(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.DelayAddSingleton(ctx, 200*time.Millisecond, 200*time.Millisecond, func(ctx context.Context) {
array.Append(1)
time.Sleep(10 * time.Second)
})
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 0)
time.Sleep(1000 * time.Millisecond)
t.Assert(array.Len(), 1)
})
}
func TestTimer_DelayAddOnce(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.DelayAddOnce(ctx, 200*time.Millisecond, 200*time.Millisecond, func(ctx context.Context) {
array.Append(1)
})
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 0)
time.Sleep(250 * time.Millisecond)
t.Assert(array.Len(), 1)
time.Sleep(500 * time.Millisecond)
t.Assert(array.Len(), 1)
})
}
func TestTimer_DelayAddTimes(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.DelayAddTimes(ctx, 200*time.Millisecond, 500*time.Millisecond, 2, func(ctx context.Context) {
array.Append(1)
})
time.Sleep(200 * time.Millisecond)
t.Assert(array.Len(), 0)
time.Sleep(600 * time.Millisecond)
t.Assert(array.Len(), 1)
time.Sleep(600 * time.Millisecond)
t.Assert(array.Len(), 2)
time.Sleep(1000 * time.Millisecond)
t.Assert(array.Len(), 2)
})
}
func TestTimer_AddLessThanInterval(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := gtimer.New(gtimer.TimerOptions{
Interval: 100 * time.Millisecond,
})
array := garray.New(true)
timer.Add(ctx, 20*time.Millisecond, func(ctx context.Context) {
array.Append(1)
})
time.Sleep(50 * time.Millisecond)
t.Assert(array.Len(), 0)
time.Sleep(110 * time.Millisecond)
t.Assert(array.Len(), 1)
time.Sleep(110 * time.Millisecond)
t.Assert(array.Len(), 2)
})
}
func TestTimer_AddLeveledJob1(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
//glog.Print("start")
timer.DelayAdd(ctx, 1000*time.Millisecond, 1000*time.Millisecond, func(ctx context.Context) {
//glog.Print("add")
array.Append(1)
})
time.Sleep(1500 * time.Millisecond)
t.Assert(array.Len(), 0)
time.Sleep(1300 * time.Millisecond)
//glog.Print("check")
t.Assert(array.Len(), 1)
})
}
func TestTimer_Exit(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
timer := New()
array := garray.New(true)
timer.Add(ctx, 200*time.Millisecond, func(ctx context.Context) {
array.Append(1)
gtimer.Exit()
})
time.Sleep(1000 * time.Millisecond)
t.Assert(array.Len(), 1)
})
}