mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
improve UT for package gcron (#1966)
This commit is contained in:
parent
40e6b2b0f1
commit
047c90466d
4
.github/workflows/gf.yml
vendored
4
.github/workflows/gf.yml
vendored
@ -6,6 +6,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
|
- personal/**
|
||||||
- feature/**
|
- feature/**
|
||||||
- fix/**
|
- fix/**
|
||||||
|
|
||||||
@ -13,11 +14,12 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
|
- personal/**
|
||||||
- feature/**
|
- feature/**
|
||||||
- fix/**
|
- fix/**
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GF_DEBUG: 0
|
TZ: "Asia/Shanghai"
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -39,3 +39,8 @@ func init() {
|
|||||||
func IsDebugEnabled() bool {
|
func IsDebugEnabled() bool {
|
||||||
return isDebugEnabled
|
return isDebugEnabled
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetDebugEnabled enables/disables the internal debug info.
|
||||||
|
func SetDebugEnabled(enabled bool) {
|
||||||
|
isDebugEnabled = enabled
|
||||||
|
}
|
||||||
|
@ -275,7 +275,7 @@ func (s *cronSchedule) checkMeetAndUpdateLastSeconds(t time.Time) bool {
|
|||||||
return diff%s.every == 0
|
return diff%s.every == 0
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
} else {
|
}
|
||||||
// It checks using normal cron pattern.
|
// It checks using normal cron pattern.
|
||||||
if _, ok := s.second[s.getFixedSecond(t)]; !ok {
|
if _, ok := s.second[s.getFixedSecond(t)]; !ok {
|
||||||
return false
|
return false
|
||||||
@ -297,7 +297,6 @@ func (s *cronSchedule) checkMeetAndUpdateLastSeconds(t time.Time) bool {
|
|||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// getFixedSecond checks, fixes and returns the seconds that have delay in some seconds.
|
// getFixedSecond checks, fixes and returns the seconds that have delay in some seconds.
|
||||||
// Reference: https://github.com/golang/go/issues/14410
|
// Reference: https://github.com/golang/go/issues/14410
|
||||||
|
@ -14,8 +14,8 @@ import (
|
|||||||
|
|
||||||
"github.com/gogf/gf/v2/container/garray"
|
"github.com/gogf/gf/v2/container/garray"
|
||||||
"github.com/gogf/gf/v2/frame/g"
|
"github.com/gogf/gf/v2/frame/g"
|
||||||
|
"github.com/gogf/gf/v2/internal/utils"
|
||||||
"github.com/gogf/gf/v2/os/gcron"
|
"github.com/gogf/gf/v2/os/gcron"
|
||||||
"github.com/gogf/gf/v2/os/gtime"
|
|
||||||
"github.com/gogf/gf/v2/test/gtest"
|
"github.com/gogf/gf/v2/test/gtest"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -89,9 +89,15 @@ func TestCron_Remove(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestCron_Add_FixedPattern(t *testing.T) {
|
func TestCron_Add_FixedPattern(t *testing.T) {
|
||||||
|
debug := utils.IsDebugEnabled()
|
||||||
|
utils.SetDebugEnabled(true)
|
||||||
|
defer func() {
|
||||||
|
utils.SetDebugEnabled(debug)
|
||||||
|
}()
|
||||||
|
|
||||||
gtest.C(t, func(t *gtest.T) {
|
gtest.C(t, func(t *gtest.T) {
|
||||||
var (
|
var (
|
||||||
now = gtime.Now()
|
now = time.Now()
|
||||||
cron = gcron.New()
|
cron = gcron.New()
|
||||||
array = garray.New(true)
|
array = garray.New(true)
|
||||||
seconds = (now.Second() + 2) % 60
|
seconds = (now.Second() + 2) % 60
|
||||||
@ -100,11 +106,13 @@ func TestCron_Add_FixedPattern(t *testing.T) {
|
|||||||
seconds, now.Minute(), now.Hour(), now.Day(), now.Month(), now.Weekday().String(),
|
seconds, now.Minute(), now.Hour(), now.Day(), now.Month(), now.Weekday().String(),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
cron.SetLogger(g.Log())
|
||||||
|
g.Log().Debugf(ctx, `pattern: %s`, pattern)
|
||||||
_, err := cron.Add(ctx, pattern, func(ctx context.Context) {
|
_, err := cron.Add(ctx, pattern, func(ctx context.Context) {
|
||||||
array.Append(1)
|
array.Append(1)
|
||||||
})
|
})
|
||||||
t.AssertNil(err)
|
t.AssertNil(err)
|
||||||
time.Sleep(2500 * time.Millisecond)
|
time.Sleep(2800 * time.Millisecond)
|
||||||
t.Assert(array.Len(), 1)
|
t.Assert(array.Len(), 1)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user