mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.5 KiB
67 lines
1.5 KiB
// Copyright 2023 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package cron |
|
|
|
import ( |
|
"sort" |
|
"strconv" |
|
"testing" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestAddTaskToScheduler(t *testing.T) { |
|
assert.Len(t, scheduler.Jobs(), 0) |
|
defer scheduler.Clear() |
|
|
|
// no seconds |
|
err := addTaskToScheduler(&Task{ |
|
Name: "task 1", |
|
config: &BaseConfig{ |
|
Schedule: "5 4 * * *", |
|
}, |
|
}) |
|
assert.NoError(t, err) |
|
jobs := scheduler.Jobs() |
|
assert.Len(t, jobs, 1) |
|
assert.Equal(t, "task 1", jobs[0].Tags()[0]) |
|
assert.Equal(t, "5 4 * * *", jobs[0].Tags()[1]) |
|
|
|
// with seconds |
|
err = addTaskToScheduler(&Task{ |
|
Name: "task 2", |
|
config: &BaseConfig{ |
|
Schedule: "30 5 4 * * *", |
|
}, |
|
}) |
|
assert.NoError(t, err) |
|
jobs = scheduler.Jobs() // the item order is not guaranteed, so we need to sort it before "assert" |
|
sort.Slice(jobs, func(i, j int) bool { |
|
return jobs[i].Tags()[0] < jobs[j].Tags()[0] |
|
}) |
|
assert.Len(t, jobs, 2) |
|
assert.Equal(t, "task 2", jobs[1].Tags()[0]) |
|
assert.Equal(t, "30 5 4 * * *", jobs[1].Tags()[1]) |
|
} |
|
|
|
func TestScheduleHasSeconds(t *testing.T) { |
|
tests := []struct { |
|
schedule string |
|
hasSecond bool |
|
}{ |
|
{"* * * * * *", true}, |
|
{"* * * * *", false}, |
|
{"5 4 * * *", false}, |
|
{"5 4 * * *", false}, |
|
{"5,8 4 * * *", false}, |
|
{"* * * * * *", true}, |
|
{"5,8 4 * * *", false}, |
|
} |
|
|
|
for i, test := range tests { |
|
t.Run(strconv.Itoa(i), func(t *testing.T) { |
|
assert.Equal(t, test.hasSecond, scheduleHasSeconds(test.schedule)) |
|
}) |
|
} |
|
}
|
|
|