1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

improve UT for package gcron (#1966)

This commit is contained in:
John Guo 2022-07-04 21:18:20 +08:00 committed by GitHub
parent 40e6b2b0f1
commit 047c90466d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 39 additions and 25 deletions

View File

@ -6,6 +6,7 @@ on:
branches:
- master
- develop
- personal/**
- feature/**
- fix/**
@ -13,11 +14,12 @@ on:
branches:
- master
- develop
- personal/**
- feature/**
- fix/**
env:
GF_DEBUG: 0
TZ: "Asia/Shanghai"
jobs:

View File

@ -39,3 +39,8 @@ func init() {
func IsDebugEnabled() bool {
return isDebugEnabled
}
// SetDebugEnabled enables/disables the internal debug info.
func SetDebugEnabled(enabled bool) {
isDebugEnabled = enabled
}

View File

@ -275,28 +275,27 @@ func (s *cronSchedule) checkMeetAndUpdateLastSeconds(t time.Time) bool {
return diff%s.every == 0
}
return false
} else {
// It checks using normal cron pattern.
if _, ok := s.second[s.getFixedSecond(t)]; !ok {
return false
}
if _, ok := s.minute[t.Minute()]; !ok {
return false
}
if _, ok := s.hour[t.Hour()]; !ok {
return false
}
if _, ok := s.day[t.Day()]; !ok {
return false
}
if _, ok := s.month[int(t.Month())]; !ok {
return false
}
if _, ok := s.week[int(t.Weekday())]; !ok {
return false
}
return true
}
// It checks using normal cron pattern.
if _, ok := s.second[s.getFixedSecond(t)]; !ok {
return false
}
if _, ok := s.minute[t.Minute()]; !ok {
return false
}
if _, ok := s.hour[t.Hour()]; !ok {
return false
}
if _, ok := s.day[t.Day()]; !ok {
return false
}
if _, ok := s.month[int(t.Month())]; !ok {
return false
}
if _, ok := s.week[int(t.Weekday())]; !ok {
return false
}
return true
}
// getFixedSecond checks, fixes and returns the seconds that have delay in some seconds.

View File

@ -14,8 +14,8 @@ import (
"github.com/gogf/gf/v2/container/garray"
"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/gtime"
"github.com/gogf/gf/v2/test/gtest"
)
@ -89,9 +89,15 @@ func TestCron_Remove(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) {
var (
now = gtime.Now()
now = time.Now()
cron = gcron.New()
array = garray.New(true)
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(),
)
)
cron.SetLogger(g.Log())
g.Log().Debugf(ctx, `pattern: %s`, pattern)
_, err := cron.Add(ctx, pattern, func(ctx context.Context) {
array.Append(1)
})
t.AssertNil(err)
time.Sleep(2500 * time.Millisecond)
time.Sleep(2800 * time.Millisecond)
t.Assert(array.Len(), 1)
})
}