File size: 18,111 Bytes
1f21206 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 | /**
* Tests for CronScheduler β cron matching, task execution, log storage, and API endpoints
*/
import { describe, it, expect, beforeEach, afterEach, mock, spyOn } from 'bun:test'
import * as fs from 'fs/promises'
import * as path from 'path'
import * as os from 'os'
import {
cronMatches,
fieldMatches,
CronScheduler,
type TaskRun,
} from '../services/cronScheduler.js'
import { CronService, type CronTask } from '../services/cronService.js'
// βββ Test helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
let tmpDir: string
const originalConfigDir = process.env.CLAUDE_CONFIG_DIR
async function createTmpDir(): Promise<string> {
const dir = path.join(
os.tmpdir(),
`claude-test-${Date.now()}-${Math.random().toString(36).slice(2)}`,
)
await fs.mkdir(dir, { recursive: true })
return dir
}
async function cleanupTmpDir(dir: string): Promise<void> {
try {
await fs.rm(dir, { recursive: true, force: true })
} catch {
// ignore
}
}
// βββ fieldMatches tests ββββββββββββββββββββββββββββββββββββββββββββββββββββ
describe('fieldMatches', () => {
it('should match wildcard', () => {
expect(fieldMatches('*', 0)).toBe(true)
expect(fieldMatches('*', 59)).toBe(true)
expect(fieldMatches('*', 23)).toBe(true)
})
it('should match exact number', () => {
expect(fieldMatches('5', 5)).toBe(true)
expect(fieldMatches('5', 6)).toBe(false)
expect(fieldMatches('0', 0)).toBe(true)
expect(fieldMatches('30', 30)).toBe(true)
})
it('should match comma-separated list', () => {
expect(fieldMatches('1,3,5', 1)).toBe(true)
expect(fieldMatches('1,3,5', 3)).toBe(true)
expect(fieldMatches('1,3,5', 5)).toBe(true)
expect(fieldMatches('1,3,5', 2)).toBe(false)
expect(fieldMatches('1,3,5', 4)).toBe(false)
})
it('should match range', () => {
expect(fieldMatches('1-5', 1)).toBe(true)
expect(fieldMatches('1-5', 3)).toBe(true)
expect(fieldMatches('1-5', 5)).toBe(true)
expect(fieldMatches('1-5', 0)).toBe(false)
expect(fieldMatches('1-5', 6)).toBe(false)
})
it('should match step from wildcard', () => {
expect(fieldMatches('*/2', 0)).toBe(true)
expect(fieldMatches('*/2', 2)).toBe(true)
expect(fieldMatches('*/2', 4)).toBe(true)
expect(fieldMatches('*/2', 1)).toBe(false)
expect(fieldMatches('*/2', 3)).toBe(false)
expect(fieldMatches('*/15', 0)).toBe(true)
expect(fieldMatches('*/15', 15)).toBe(true)
expect(fieldMatches('*/15', 30)).toBe(true)
expect(fieldMatches('*/15', 7)).toBe(false)
})
it('should match step within range', () => {
expect(fieldMatches('1-10/3', 1)).toBe(true)
expect(fieldMatches('1-10/3', 4)).toBe(true)
expect(fieldMatches('1-10/3', 7)).toBe(true)
expect(fieldMatches('1-10/3', 10)).toBe(true)
expect(fieldMatches('1-10/3', 2)).toBe(false)
expect(fieldMatches('1-10/3', 11)).toBe(false)
expect(fieldMatches('1-10/3', 0)).toBe(false)
})
it('should handle combined comma and range', () => {
expect(fieldMatches('1-3,7,10-12', 2)).toBe(true)
expect(fieldMatches('1-3,7,10-12', 7)).toBe(true)
expect(fieldMatches('1-3,7,10-12', 11)).toBe(true)
expect(fieldMatches('1-3,7,10-12', 5)).toBe(false)
})
})
// βββ cronMatches tests βββββββββββββββββββββββββββββββββββββββββββββββββββββ
describe('cronMatches', () => {
it('should match every-minute expression', () => {
const date = new Date(2026, 3, 5, 14, 30, 0) // April 5, 2026 14:30 (Sunday)
expect(cronMatches('* * * * *', date)).toBe(true)
})
it('should match daily at 9:00', () => {
const match = new Date(2026, 3, 5, 9, 0, 0)
const noMatch = new Date(2026, 3, 5, 9, 1, 0)
expect(cronMatches('0 9 * * *', match)).toBe(true)
expect(cronMatches('0 9 * * *', noMatch)).toBe(false)
})
it('should match every 2 hours at minute 0', () => {
expect(cronMatches('0 */2 * * *', new Date(2026, 0, 1, 0, 0))).toBe(true)
expect(cronMatches('0 */2 * * *', new Date(2026, 0, 1, 2, 0))).toBe(true)
expect(cronMatches('0 */2 * * *', new Date(2026, 0, 1, 4, 0))).toBe(true)
expect(cronMatches('0 */2 * * *', new Date(2026, 0, 1, 1, 0))).toBe(false)
expect(cronMatches('0 */2 * * *', new Date(2026, 0, 1, 3, 0))).toBe(false)
})
it('should match weekdays at 14:30', () => {
// April 6, 2026 is a Monday (dow = 1)
const monday = new Date(2026, 3, 6, 14, 30, 0)
// April 5, 2026 is a Sunday (dow = 0)
const sunday = new Date(2026, 3, 5, 14, 30, 0)
expect(cronMatches('30 14 * * 1-5', monday)).toBe(true)
expect(cronMatches('30 14 * * 1-5', sunday)).toBe(false)
})
it('should match specific month and day', () => {
// January 15 at midnight
const jan15 = new Date(2026, 0, 15, 0, 0)
const feb15 = new Date(2026, 1, 15, 0, 0)
expect(cronMatches('0 0 15 1 *', jan15)).toBe(true)
expect(cronMatches('0 0 15 1 *', feb15)).toBe(false)
})
it('should reject invalid cron expressions', () => {
const date = new Date()
expect(cronMatches('* * *', date)).toBe(false) // only 3 fields
expect(cronMatches('', date)).toBe(false)
expect(cronMatches('* * * * * *', date)).toBe(false) // 6 fields
})
it('should match day-of-week with Sunday as 0', () => {
// Sunday = 0
const sunday = new Date(2026, 3, 5, 10, 0) // April 5, 2026 is Sunday
expect(cronMatches('0 10 * * 0', sunday)).toBe(true)
expect(cronMatches('0 10 * * 6', sunday)).toBe(false)
})
})
// βββ CronScheduler execution tests ββββββββββββββββββββββββββββββββββββββββ
describe('CronScheduler', () => {
let cronService: CronService
let scheduler: CronScheduler
beforeEach(async () => {
tmpDir = await createTmpDir()
process.env.CLAUDE_CONFIG_DIR = tmpDir
cronService = new CronService()
scheduler = new CronScheduler(cronService)
})
afterEach(async () => {
scheduler.stop()
if (originalConfigDir) {
process.env.CLAUDE_CONFIG_DIR = originalConfigDir
} else {
delete process.env.CLAUDE_CONFIG_DIR
}
await cleanupTmpDir(tmpDir)
})
it('should start and stop without errors', () => {
scheduler.start()
scheduler.stop()
// Starting again after stop should also work
scheduler.start()
scheduler.stop()
})
it('should not start twice', () => {
scheduler.start()
// Second start should be a no-op (no error)
scheduler.start()
scheduler.stop()
})
it('should return empty runs when no tasks have executed', async () => {
const runs = await scheduler.getRecentRuns()
expect(runs).toEqual([])
})
it('should return empty runs for a non-existent task ID', async () => {
const runs = await scheduler.getTaskRuns('nonexistent')
expect(runs).toEqual([])
})
it('should persist a task run to the log file', async () => {
// Create a task that runs "echo hello" β we'll invoke executeTask directly
// with a mock-like approach: create a task then check the log file
const task = await cronService.createTask({
cron: '* * * * *',
prompt: 'echo test',
name: 'Test Task',
recurring: true,
})
// We can't easily mock Bun.spawn in bun:test, so we'll check the log
// file was created by reading it after execution attempt.
// The CLI subprocess will likely fail (not a real CLI available in tests),
// but the run should still be logged with 'failed' status.
try {
await scheduler.executeTask(task)
} catch {
// Expected β CLI binary may not be available in test environment
}
const logPath = path.join(tmpDir, 'scheduled_tasks_log.json')
const logExists = await fs
.stat(logPath)
.then(() => true)
.catch(() => false)
expect(logExists).toBe(true)
const logContent = JSON.parse(await fs.readFile(logPath, 'utf-8')) as {
runs: TaskRun[]
}
expect(logContent.runs.length).toBeGreaterThanOrEqual(1)
expect(logContent.runs[0].taskId).toBe(task.id)
expect(logContent.runs[0].taskName).toBe('Test Task')
expect(logContent.runs[0].prompt).toBe('echo test')
})
it('should disable non-recurring task after execution', async () => {
const task = await cronService.createTask({
cron: '* * * * *',
prompt: 'one-shot task',
recurring: false,
})
try {
await scheduler.executeTask(task)
} catch {
// CLI may not be available
}
// After execution, the task should be disabled
const tasks = await cronService.listTasks()
const updated = tasks.find((t) => t.id === task.id)
expect(updated?.enabled).toBe(false)
})
it('should NOT disable recurring task after execution', async () => {
const task = await cronService.createTask({
cron: '* * * * *',
prompt: 'recurring task',
recurring: true,
})
try {
await scheduler.executeTask(task)
} catch {
// CLI may not be available
}
const tasks = await cronService.listTasks()
const updated = tasks.find((t) => t.id === task.id)
// enabled should not have been set to false
expect(updated?.enabled).not.toBe(false)
})
it('should update lastFiredAt after execution', async () => {
const task = await cronService.createTask({
cron: '* * * * *',
prompt: 'fire test',
recurring: true,
})
const beforeExec = new Date().toISOString()
try {
await scheduler.executeTask(task)
} catch {
// CLI may not be available
}
const tasks = await cronService.listTasks()
const updated = tasks.find((t) => t.id === task.id)
expect(updated?.lastFiredAt).toBeDefined()
// lastFiredAt should be a valid ISO timestamp at or after beforeExec
expect(new Date(updated!.lastFiredAt!).getTime()).toBeGreaterThanOrEqual(
new Date(beforeExec).getTime() - 1000, // allow 1s tolerance
)
})
it('should skip disabled tasks during tick', async () => {
// Create a task matching every minute but disabled
const task = await cronService.createTask({
cron: '* * * * *',
prompt: 'should not run',
enabled: false,
recurring: true,
})
await scheduler.tick()
// No runs should be logged
const runs = await scheduler.getTaskRuns(task.id)
expect(runs).toHaveLength(0)
})
it('getTaskRuns should return runs sorted newest first', async () => {
const task = await cronService.createTask({
cron: '* * * * *',
prompt: 'multi run',
recurring: true,
})
// Execute twice
try {
await scheduler.executeTask(task)
} catch {
/* ignore */
}
try {
await scheduler.executeTask(task)
} catch {
/* ignore */
}
const runs = await scheduler.getTaskRuns(task.id)
expect(runs.length).toBeGreaterThanOrEqual(2)
// Should be sorted newest first
if (runs.length >= 2) {
expect(
new Date(runs[0].startedAt).getTime(),
).toBeGreaterThanOrEqual(new Date(runs[1].startedAt).getTime())
}
})
it('getRecentRuns should respect limit parameter', async () => {
const task = await cronService.createTask({
cron: '* * * * *',
prompt: 'limit test',
recurring: true,
})
// Execute 3 times
for (let i = 0; i < 3; i++) {
try {
await scheduler.executeTask(task)
} catch {
/* ignore */
}
}
const runs = await scheduler.getRecentRuns(2)
expect(runs.length).toBeLessThanOrEqual(2)
})
})
// βββ Execution log trimming ββββββββββββββββββββββββββββββββββββββββββββββββ
describe('Execution log trimming', () => {
let cronService: CronService
let scheduler: CronScheduler
beforeEach(async () => {
tmpDir = await createTmpDir()
process.env.CLAUDE_CONFIG_DIR = tmpDir
cronService = new CronService()
scheduler = new CronScheduler(cronService)
})
afterEach(async () => {
scheduler.stop()
if (originalConfigDir) {
process.env.CLAUDE_CONFIG_DIR = originalConfigDir
} else {
delete process.env.CLAUDE_CONFIG_DIR
}
await cleanupTmpDir(tmpDir)
})
it('should keep log entries within the max limit', async () => {
// Pre-populate the log file with 105 entries for a single task
const logPath = path.join(tmpDir, 'scheduled_tasks_log.json')
const runs: TaskRun[] = []
for (let i = 0; i < 105; i++) {
runs.push({
id: `run-${i}`,
taskId: 'task-1',
taskName: 'Test',
startedAt: new Date(Date.now() - (105 - i) * 1000).toISOString(),
completedAt: new Date(Date.now() - (105 - i) * 1000 + 100).toISOString(),
status: 'completed',
prompt: 'test',
exitCode: 0,
durationMs: 100,
})
}
await fs.writeFile(logPath, JSON.stringify({ runs }, null, 2), 'utf-8')
// Now execute one more task run β this triggers a trim
const task = await cronService.createTask({
cron: '* * * * *',
prompt: 'trigger trim',
recurring: true,
})
try {
await scheduler.executeTask(task)
} catch {
/* ignore */
}
// Read back the log
const logContent = JSON.parse(await fs.readFile(logPath, 'utf-8')) as {
runs: TaskRun[]
}
const task1Runs = logContent.runs.filter((r) => r.taskId === 'task-1')
// Should have been trimmed to at most 100
expect(task1Runs.length).toBeLessThanOrEqual(100)
})
})
// βββ Scheduled Tasks API with runs endpoints ββββββββββββββββββββββββββββββ
describe('Scheduled Tasks API β runs endpoints', () => {
let handleScheduledTasksApi: (
req: Request,
url: URL,
segments: string[],
) => Promise<Response>
beforeEach(async () => {
tmpDir = await createTmpDir()
process.env.CLAUDE_CONFIG_DIR = tmpDir
const mod = await import('../api/scheduled-tasks.js')
handleScheduledTasksApi = mod.handleScheduledTasksApi
})
afterEach(async () => {
if (originalConfigDir) {
process.env.CLAUDE_CONFIG_DIR = originalConfigDir
} else {
delete process.env.CLAUDE_CONFIG_DIR
}
await cleanupTmpDir(tmpDir)
})
it('GET /api/scheduled-tasks/runs should return empty runs', async () => {
const req = new Request('http://localhost/api/scheduled-tasks/runs', {
method: 'GET',
})
const url = new URL(req.url)
const resp = await handleScheduledTasksApi(req, url, [
'api',
'scheduled-tasks',
'runs',
])
const body = (await resp.json()) as { runs: unknown[] }
expect(resp.status).toBe(200)
expect(body.runs).toEqual([])
})
it('GET /api/scheduled-tasks/:id/runs should return empty runs for a task', async () => {
const req = new Request(
'http://localhost/api/scheduled-tasks/abc123/runs',
{ method: 'GET' },
)
const url = new URL(req.url)
const resp = await handleScheduledTasksApi(req, url, [
'api',
'scheduled-tasks',
'abc123',
'runs',
])
const body = (await resp.json()) as { runs: unknown[] }
expect(resp.status).toBe(200)
expect(body.runs).toEqual([])
})
it('GET /api/scheduled-tasks/runs should return runs from log', async () => {
// Write some runs to the log file
const logPath = path.join(tmpDir, 'scheduled_tasks_log.json')
const runs: TaskRun[] = [
{
id: 'run-1',
taskId: 'task-a',
taskName: 'Task A',
startedAt: new Date().toISOString(),
completedAt: new Date().toISOString(),
status: 'completed',
prompt: 'test prompt',
exitCode: 0,
durationMs: 500,
},
{
id: 'run-2',
taskId: 'task-b',
taskName: 'Task B',
startedAt: new Date().toISOString(),
completedAt: new Date().toISOString(),
status: 'failed',
prompt: 'another prompt',
error: 'some error',
exitCode: 1,
durationMs: 200,
},
]
await fs.writeFile(logPath, JSON.stringify({ runs }, null, 2), 'utf-8')
const req = new Request('http://localhost/api/scheduled-tasks/runs', {
method: 'GET',
})
const url = new URL(req.url)
const resp = await handleScheduledTasksApi(req, url, [
'api',
'scheduled-tasks',
'runs',
])
const body = (await resp.json()) as { runs: TaskRun[] }
expect(resp.status).toBe(200)
expect(body.runs).toHaveLength(2)
})
it('GET /api/scheduled-tasks/:id/runs should filter by task ID', async () => {
const logPath = path.join(tmpDir, 'scheduled_tasks_log.json')
const runs: TaskRun[] = [
{
id: 'run-1',
taskId: 'task-a',
taskName: 'Task A',
startedAt: new Date().toISOString(),
status: 'completed',
prompt: 'prompt a',
exitCode: 0,
},
{
id: 'run-2',
taskId: 'task-b',
taskName: 'Task B',
startedAt: new Date().toISOString(),
status: 'completed',
prompt: 'prompt b',
exitCode: 0,
},
]
await fs.writeFile(logPath, JSON.stringify({ runs }, null, 2), 'utf-8')
const req = new Request(
'http://localhost/api/scheduled-tasks/task-a/runs',
{ method: 'GET' },
)
const url = new URL(req.url)
const resp = await handleScheduledTasksApi(req, url, [
'api',
'scheduled-tasks',
'task-a',
'runs',
])
const body = (await resp.json()) as { runs: TaskRun[] }
expect(resp.status).toBe(200)
expect(body.runs).toHaveLength(1)
expect(body.runs[0].taskId).toBe('task-a')
})
})
|