@elevasis/core 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/README.md +41 -41
- package/src/__tests__/publish.test.ts +18 -18
- package/src/__tests__/{template-foundations-compatibility.test.ts → template-core-compatibility.test.ts} +99 -99
- package/src/_gen/__tests__/__snapshots__/contracts.md.snap +1135 -1131
- package/src/_gen/__tests__/scaffold-contracts.test.ts +53 -53
- package/src/_gen/scaffold-contracts.ts +45 -45
- package/src/auth/multi-tenancy/credentials/README.md +38 -38
- package/src/auth/multi-tenancy/credentials/index.ts +6 -6
- package/src/auth/multi-tenancy/credentials/server/encryption.ts +39 -39
- package/src/auth/multi-tenancy/credentials/server/service.ts +60 -60
- package/src/auth/multi-tenancy/index.ts +17 -17
- package/src/auth/multi-tenancy/invitations/api-schemas.ts +107 -107
- package/src/auth/multi-tenancy/invitations/index.ts +37 -37
- package/src/auth/multi-tenancy/invitations/invitation.ts +86 -86
- package/src/auth/multi-tenancy/invitations/server/index.ts +25 -25
- package/src/auth/multi-tenancy/invitations/server/transforms.ts +24 -24
- package/src/auth/multi-tenancy/invitations/server/workos.ts +24 -24
- package/src/auth/multi-tenancy/invitations/supabase.ts +50 -50
- package/src/auth/multi-tenancy/memberships/api-schemas.ts +126 -126
- package/src/auth/multi-tenancy/memberships/index.ts +21 -21
- package/src/auth/multi-tenancy/memberships/membership.ts +138 -138
- package/src/auth/multi-tenancy/memberships/server/index.ts +15 -15
- package/src/auth/multi-tenancy/memberships/server/transforms.ts +32 -32
- package/src/auth/multi-tenancy/memberships/server/workos.ts +21 -21
- package/src/auth/multi-tenancy/memberships/supabase.ts +46 -46
- package/src/auth/multi-tenancy/organizations/api-schemas.ts +128 -128
- package/src/auth/multi-tenancy/organizations/index.ts +23 -23
- package/src/auth/multi-tenancy/organizations/organization.ts +24 -24
- package/src/auth/multi-tenancy/organizations/server/index.ts +10 -10
- package/src/auth/multi-tenancy/organizations/server/transforms.ts +35 -35
- package/src/auth/multi-tenancy/organizations/server/workos.ts +20 -20
- package/src/auth/multi-tenancy/types.ts +83 -83
- package/src/auth/multi-tenancy/users/api-schemas.ts +194 -194
- package/src/auth/multi-tenancy/users/index.ts +27 -27
- package/src/auth/multi-tenancy/users/server/index.ts +19 -19
- package/src/auth/multi-tenancy/users/server/transforms.ts +21 -21
- package/src/auth/multi-tenancy/users/server/workos.ts +16 -16
- package/src/auth/multi-tenancy/users/user.ts +65 -65
- package/src/business/README.md +52 -52
- package/src/business/__tests__/entities-published.test.ts +33 -33
- package/src/business/acquisition/api-schemas.ts +759 -759
- package/src/business/acquisition/index.ts +109 -109
- package/src/business/acquisition/types.ts +402 -402
- package/src/business/base-entities.test.ts +481 -481
- package/src/business/base-entities.ts +241 -241
- package/src/business/entities-published.ts +24 -24
- package/src/business/index.ts +15 -15
- package/src/business/pdf/browser/pdfmake-browser.ts +229 -229
- package/src/business/pdf/index.ts +10 -10
- package/src/business/pdf/server/index.ts +21 -21
- package/src/business/pdf/server/themes/default.ts +8 -8
- package/src/business/pdf/server/themes/index.ts +9 -9
- package/src/business/pdf/server/themes/types.ts +8 -8
- package/src/business/pdf/types.ts +272 -272
- package/src/business/projects/index.ts +2 -1
- package/src/business/projects/sse-events.ts +21 -0
- package/src/business/projects/types.ts +89 -89
- package/src/business/sales/api-schemas.ts +75 -75
- package/src/business/seo/__tests__/linking.test.ts +549 -549
- package/src/business/seo/__tests__/types.test.ts +404 -404
- package/src/business/seo/index.ts +2 -2
- package/src/business/seo/linking.ts +281 -281
- package/src/business/seo/types.ts +199 -199
- package/src/commands/queue/index.ts +3 -3
- package/src/commands/queue/schemas.test.ts +593 -593
- package/src/commands/queue/schemas.ts +125 -125
- package/src/commands/queue/sse-events.ts +61 -61
- package/src/commands/queue/types/action.ts +52 -52
- package/src/commands/queue/types/checkpoint.ts +44 -44
- package/src/commands/queue/types/index.ts +7 -7
- package/src/commands/queue/types/task.ts +116 -116
- package/src/commands/queue/types.ts +14 -14
- package/src/content/distribution-metadata.ts +61 -61
- package/src/content/index.ts +10 -10
- package/src/deployments/index.ts +22 -22
- package/src/execution/core/__tests__/archived-logs.test.ts +72 -72
- package/src/execution/core/index.ts +11 -11
- package/src/execution/core/runner-types.ts +80 -80
- package/src/execution/core/server/environment.ts +31 -31
- package/src/execution/core/sse-executions.ts +119 -119
- package/src/execution/core/types.ts +29 -29
- package/src/execution/engine/__tests__/fixtures/test-agents.ts +4 -4
- package/src/execution/engine/__tests__/timeout.test.ts +565 -565
- package/src/execution/engine/agent/__tests__/errors.test.ts +508 -508
- package/src/execution/engine/agent/actions/__tests__/processor.test.ts +531 -531
- package/src/execution/engine/agent/actions/executor.ts +205 -205
- package/src/execution/engine/agent/actions/navigate-knowledge-executor.ts +230 -230
- package/src/execution/engine/agent/actions/processor.ts +116 -116
- package/src/execution/engine/agent/actions/types.ts +70 -70
- package/src/execution/engine/agent/core/agent.ts +810 -810
- package/src/execution/engine/agent/core/types.ts +155 -155
- package/src/execution/engine/agent/errors.ts +251 -251
- package/src/execution/engine/agent/index.ts +78 -78
- package/src/execution/engine/agent/knowledge-map/types.ts +106 -106
- package/src/execution/engine/agent/knowledge-map/utils.ts +101 -101
- package/src/execution/engine/agent/memory/__tests__/manager.test.ts +754 -754
- package/src/execution/engine/agent/memory/domains.ts +99 -99
- package/src/execution/engine/agent/memory/manager.ts +365 -365
- package/src/execution/engine/agent/memory/processor.ts +66 -66
- package/src/execution/engine/agent/memory/types.ts +90 -90
- package/src/execution/engine/agent/memory/utils.ts +134 -134
- package/src/execution/engine/agent/observability/logging.ts +467 -467
- package/src/execution/engine/agent/observability/types.ts +64 -64
- package/src/execution/engine/agent/reasoning/adapters/agent-adapter-helpers.ts +349 -349
- package/src/execution/engine/agent/reasoning/processor.ts +92 -92
- package/src/execution/engine/agent/reasoning/prompt-sections/base-actions.ts +134 -134
- package/src/execution/engine/agent/reasoning/prompt-sections/completion.ts +49 -49
- package/src/execution/engine/agent/reasoning/prompt-sections/knowledge-map.ts +93 -93
- package/src/execution/engine/agent/reasoning/prompt-sections/memory.ts +65 -65
- package/src/execution/engine/agent/reasoning/prompt-sections/tools.ts +44 -44
- package/src/execution/engine/agent/reasoning/request-builder.ts +169 -169
- package/src/execution/engine/agent/reasoning/types.ts +18 -18
- package/src/execution/engine/base/errors.ts +118 -118
- package/src/execution/engine/base/index.ts +2 -2
- package/src/execution/engine/base/logging.ts +31 -31
- package/src/execution/engine/base/serialization.ts +324 -324
- package/src/execution/engine/base/types.ts +126 -126
- package/src/execution/engine/base/utils.ts +41 -41
- package/src/execution/engine/index.ts +434 -434
- package/src/execution/engine/interface/index.ts +1 -1
- package/src/execution/engine/interface/types.ts +62 -62
- package/src/execution/engine/llm/__tests__/model-info.test.ts +50 -50
- package/src/execution/engine/llm/__tests__/model-validation.test.ts +321 -321
- package/src/execution/engine/llm/__tests__/response-schema-validator.test.ts +115 -115
- package/src/execution/engine/llm/adapters/__tests__/adapter-factory.test.ts +375 -375
- package/src/execution/engine/llm/adapters/__tests__/anthropic-adapter.test.ts +463 -463
- package/src/execution/engine/llm/adapters/__tests__/anthropic.integration.test.ts +177 -177
- package/src/execution/engine/llm/adapters/__tests__/google-adapter.test.ts +722 -722
- package/src/execution/engine/llm/adapters/__tests__/google.integration.test.ts +376 -376
- package/src/execution/engine/llm/adapters/__tests__/openai-adapter.test.ts +551 -551
- package/src/execution/engine/llm/adapters/__tests__/openrouter-adapter.test.ts +563 -563
- package/src/execution/engine/llm/adapters/__tests__/openrouter.integration.test.ts +105 -105
- package/src/execution/engine/llm/adapters/__tests__/universal-adapter.test.ts +537 -537
- package/src/execution/engine/llm/adapters/circuit-breaker.ts +147 -147
- package/src/execution/engine/llm/adapters/index.ts +17 -17
- package/src/execution/engine/llm/adapters/mock-adapter.ts +116 -116
- package/src/execution/engine/llm/adapters/server/adapter-factory.ts +130 -130
- package/src/execution/engine/llm/adapters/server/anthropic.ts +137 -137
- package/src/execution/engine/llm/adapters/server/google.ts +283 -283
- package/src/execution/engine/llm/adapters/server/index.ts +12 -12
- package/src/execution/engine/llm/adapters/server/openai.ts +206 -206
- package/src/execution/engine/llm/adapters/server/openrouter.ts +235 -235
- package/src/execution/engine/llm/adapters/universal-adapter.ts +230 -230
- package/src/execution/engine/llm/errors.ts +186 -186
- package/src/execution/engine/llm/model-info.ts +332 -332
- package/src/execution/engine/llm/response-schema-validator.ts +113 -113
- package/src/execution/engine/llm/types.ts +86 -86
- package/src/execution/engine/test-utils/index.ts +6 -6
- package/src/execution/engine/test-utils/mocks.ts +56 -56
- package/src/execution/engine/tools/integration/base-integration-adapter.ts +50 -50
- package/src/execution/engine/tools/integration/index.ts +53 -53
- package/src/execution/engine/tools/integration/server/adapters/anymailfinder/anymailfinder-adapter.ts +73 -73
- package/src/execution/engine/tools/integration/server/adapters/anymailfinder/anymailfinder-tools.ts +209 -209
- package/src/execution/engine/tools/integration/server/adapters/anymailfinder/fetch/find-company-email/index.ts +82 -82
- package/src/execution/engine/tools/integration/server/adapters/anymailfinder/fetch/find-decision-maker-email/index.ts +122 -122
- package/src/execution/engine/tools/integration/server/adapters/anymailfinder/fetch/find-person-email/index.ts +89 -89
- package/src/execution/engine/tools/integration/server/adapters/anymailfinder/fetch/verify-email/index.ts +84 -84
- package/src/execution/engine/tools/integration/server/adapters/anymailfinder/index.ts +16 -16
- package/src/execution/engine/tools/integration/server/adapters/apify/__tests__/apify-run-actor.integration.test.ts +293 -293
- package/src/execution/engine/tools/integration/server/adapters/apify/apify-adapter.ts +100 -100
- package/src/execution/engine/tools/integration/server/adapters/apify/apify-tools.ts +217 -217
- package/src/execution/engine/tools/integration/server/adapters/apify/fetch/get-dataset-items/index.ts +92 -92
- package/src/execution/engine/tools/integration/server/adapters/apify/fetch/run-actor/index.ts +218 -218
- package/src/execution/engine/tools/integration/server/adapters/apify/fetch/start-actor/index.ts +87 -87
- package/src/execution/engine/tools/integration/server/adapters/apify/index.ts +11 -11
- package/src/execution/engine/tools/integration/server/adapters/attio/__tests__/attio-crud.integration.test.ts +361 -361
- package/src/execution/engine/tools/integration/server/adapters/attio/attio-adapter.ts +162 -162
- package/src/execution/engine/tools/integration/server/adapters/attio/attio-tools.ts +594 -594
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/create-attribute/index.ts +214 -214
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/create-note/index.ts +152 -152
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/create-record/index.ts +141 -141
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/delete-note/index.ts +86 -86
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/delete-record/index.ts +105 -105
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/get-record/index.ts +118 -118
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/list-attributes/index.ts +165 -165
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/list-notes/index.ts +96 -96
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/list-objects/index.ts +104 -104
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/list-records/index.ts +156 -156
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/update-attribute/index.ts +220 -220
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/update-record/index.ts +140 -140
- package/src/execution/engine/tools/integration/server/adapters/attio/fetch/utils/types.ts +146 -146
- package/src/execution/engine/tools/integration/server/adapters/attio/index.ts +31 -31
- package/src/execution/engine/tools/integration/server/adapters/gmail/gmail-adapter.ts +210 -210
- package/src/execution/engine/tools/integration/server/adapters/gmail/gmail-tools.ts +104 -104
- package/src/execution/engine/tools/integration/server/adapters/google-sheets/__tests__/google-sheets.integration.test.ts +261 -261
- package/src/execution/engine/tools/integration/server/adapters/google-sheets/google-sheets-adapter.ts +1189 -1189
- package/src/execution/engine/tools/integration/server/adapters/google-sheets/google-sheets-tools.ts +641 -641
- package/src/execution/engine/tools/integration/server/adapters/google-sheets/index.ts +18 -18
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/activate-campaign/index.ts +86 -86
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/add-to-campaign/__tests__/index.test.ts +289 -289
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/add-to-campaign/index.ts +154 -154
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/bulk-add-leads/__tests__/index.test.ts +325 -325
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/bulk-add-leads/index.ts +153 -153
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/bulk-delete-leads/index.ts +84 -84
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/create-campaign/index.ts +125 -125
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/create-inbox-test/index.ts +107 -107
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/delete-campaign/index.ts +85 -85
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/get-account-health/index.ts +91 -91
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/get-campaign/index.ts +92 -92
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/get-campaign-analytics/__tests__/index.test.ts +195 -195
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/get-campaign-analytics/index.ts +113 -113
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/get-daily-campaign-analytics/index.ts +104 -104
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/get-emails/index.ts +155 -155
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/get-step-analytics/__tests__/index.test.ts +196 -196
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/get-step-analytics/index.ts +102 -102
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/list-campaigns/__tests__/index.test.ts +189 -189
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/list-campaigns/index.ts +87 -87
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/list-leads/index.ts +112 -112
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/patch-lead/index.ts +76 -76
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/pause-campaign/index.ts +86 -86
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/remove-from-subsequence/index.ts +98 -98
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/send-reply/index.ts +126 -126
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/update-campaign/__tests__/index.test.ts +193 -193
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/update-campaign/index.ts +99 -99
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/update-interest-status/__tests__/index.test.ts +621 -621
- package/src/execution/engine/tools/integration/server/adapters/instantly/fetch/update-interest-status/index.ts +125 -125
- package/src/execution/engine/tools/integration/server/adapters/instantly/index.ts +29 -29
- package/src/execution/engine/tools/integration/server/adapters/instantly/instantly-adapter.ts +178 -178
- package/src/execution/engine/tools/integration/server/adapters/instantly/instantly-tools.ts +1473 -1473
- package/src/execution/engine/tools/integration/server/adapters/millionverifier/fetch/check-credits/index.ts +59 -59
- package/src/execution/engine/tools/integration/server/adapters/millionverifier/fetch/verify-email/index.ts +102 -102
- package/src/execution/engine/tools/integration/server/adapters/millionverifier/index.ts +17 -17
- package/src/execution/engine/tools/integration/server/adapters/millionverifier/millionverifier-adapter.ts +80 -80
- package/src/execution/engine/tools/integration/server/adapters/millionverifier/millionverifier-tools.ts +102 -102
- package/src/execution/engine/tools/integration/server/adapters/resend/fetch/get-email/index.ts +102 -102
- package/src/execution/engine/tools/integration/server/adapters/resend/fetch/send-email/index.ts +134 -134
- package/src/execution/engine/tools/integration/server/adapters/resend/fetch/utils/types.ts +75 -75
- package/src/execution/engine/tools/integration/server/adapters/resend/index.ts +27 -27
- package/src/execution/engine/tools/integration/server/adapters/resend/resend-adapter.ts +108 -108
- package/src/execution/engine/tools/integration/server/adapters/resend/resend-tools.ts +132 -132
- package/src/execution/engine/tools/integration/server/adapters/signature-api/fetch/create-envelope/index.ts +274 -274
- package/src/execution/engine/tools/integration/server/adapters/signature-api/fetch/download-document/index.ts +230 -230
- package/src/execution/engine/tools/integration/server/adapters/signature-api/fetch/get-envelope/index.ts +133 -133
- package/src/execution/engine/tools/integration/server/adapters/signature-api/fetch/void-envelope/index.ts +90 -90
- package/src/execution/engine/tools/integration/server/adapters/stripe/fetch/utils/types.ts +210 -210
- package/src/execution/engine/tools/integration/server/adapters/stripe/stripe-adapter.ts +517 -517
- package/src/execution/engine/tools/integration/server/adapters/stripe/stripe-tools.ts +309 -309
- package/src/execution/engine/tools/integration/server/adapters/tomba/fetch/domain-search/index.ts +133 -133
- package/src/execution/engine/tools/integration/server/adapters/tomba/fetch/email-finder/index.ts +122 -122
- package/src/execution/engine/tools/integration/server/adapters/tomba/fetch/email-verifier/index.ts +111 -111
- package/src/execution/engine/tools/integration/server/adapters/tomba/index.ts +11 -11
- package/src/execution/engine/tools/integration/server/adapters/tomba/tomba-adapter.ts +78 -78
- package/src/execution/engine/tools/integration/server/adapters/tomba/tomba-tools.ts +222 -222
- package/src/execution/engine/tools/integration/server/index.ts +61 -61
- package/src/execution/engine/tools/integration/service.ts +161 -161
- package/src/execution/engine/tools/integration/tool.ts +253 -253
- package/src/execution/engine/tools/integration/types/anymailfinder.ts +74 -74
- package/src/execution/engine/tools/integration/types/apify.ts +92 -92
- package/src/execution/engine/tools/integration/types/index.ts +19 -19
- package/src/execution/engine/tools/integration/types/instantly.ts +557 -557
- package/src/execution/engine/tools/integration/types/millionverifier.ts +56 -56
- package/src/execution/engine/tools/integration/types/stripe.ts +162 -162
- package/src/execution/engine/tools/integration/types/tomba.ts +94 -94
- package/src/execution/engine/tools/lead-service-types.ts +884 -884
- package/src/execution/engine/tools/llm/index.ts +11 -11
- package/src/execution/engine/tools/llm/server/index.ts +8 -8
- package/src/execution/engine/tools/llm/server/llm-call-tool.ts +118 -118
- package/src/execution/engine/tools/platform/__tests__/pdf.test.ts +441 -441
- package/src/execution/engine/tools/platform/acquisition/company-tools.ts +248 -248
- package/src/execution/engine/tools/platform/acquisition/contact-tools.ts +319 -319
- package/src/execution/engine/tools/platform/acquisition/index.ts +43 -43
- package/src/execution/engine/tools/platform/acquisition/list-tools.ts +148 -148
- package/src/execution/engine/tools/platform/acquisition/types.ts +260 -260
- package/src/execution/engine/tools/platform/email/index.ts +122 -122
- package/src/execution/engine/tools/platform/email/types.ts +96 -96
- package/src/execution/engine/tools/platform/index.ts +157 -157
- package/src/execution/engine/tools/platform/notification.ts +81 -81
- package/src/execution/engine/tools/platform/pdf/index.ts +110 -110
- package/src/execution/engine/tools/platform/pdf/types.ts +77 -77
- package/src/execution/engine/tools/platform/scheduler.ts +87 -87
- package/src/execution/engine/tools/platform/storage/index.ts +370 -370
- package/src/execution/engine/tools/platform/types.ts +148 -148
- package/src/execution/engine/tools/registry.ts +700 -699
- package/src/execution/engine/tools/tool-maps.ts +786 -786
- package/src/execution/engine/tools/types.ts +233 -233
- package/src/execution/engine/workflow/__tests__/errors.test.ts +139 -139
- package/src/execution/engine/workflow/errors.ts +63 -63
- package/src/execution/engine/workflow/helpers/index.ts +11 -11
- package/src/execution/engine/workflow/helpers/server/index.ts +8 -8
- package/src/execution/engine/workflow/helpers/server/llm-call.ts +93 -93
- package/src/execution/engine/workflow/index.ts +19 -19
- package/src/execution/engine/workflow/log-truncate.ts +26 -26
- package/src/execution/engine/workflow/logging.ts +191 -191
- package/src/execution/engine/workflow/types.ts +182 -182
- package/src/execution/engine/workflow/utils.ts +280 -280
- package/src/execution/engine/workflow/workflow.ts +168 -168
- package/src/execution/index.ts +3 -3
- package/src/execution/scheduler/__tests__/api-schemas.test.ts +733 -733
- package/src/execution/scheduler/__tests__/utils.test.ts +1009 -1009
- package/src/execution/scheduler/api-schemas.ts +296 -296
- package/src/execution/scheduler/index.ts +50 -50
- package/src/execution/scheduler/schemas.ts +264 -264
- package/src/execution/scheduler/types.ts +111 -111
- package/src/execution/scheduler/utils.ts +364 -364
- package/src/forms/index.ts +7 -7
- package/src/forms/schemas.ts +69 -69
- package/src/forms/types.ts +70 -70
- package/src/index.ts +71 -60
- package/src/integrations/credentials/__tests__/schemas.test.ts +82 -82
- package/src/integrations/credentials/__tests__/utils.test.ts +144 -144
- package/src/integrations/credentials/api-schemas.ts +143 -143
- package/src/integrations/credentials/index.ts +32 -32
- package/src/integrations/credentials/schemas.ts +164 -164
- package/src/integrations/credentials/utils.ts +59 -59
- package/src/integrations/oauth/__tests__/provider-registry.test.ts +59 -59
- package/src/integrations/oauth/api-schemas.ts +92 -92
- package/src/integrations/oauth/index.ts +19 -19
- package/src/integrations/oauth/provider-registry.ts +61 -61
- package/src/integrations/oauth/server/__tests__/refresh-concurrent.test.ts +183 -183
- package/src/integrations/oauth/server/__tests__/refresh.test.ts +577 -577
- package/src/integrations/oauth/server/credentials.ts +39 -39
- package/src/integrations/oauth/server/refresh.ts +214 -214
- package/src/integrations/oauth/types.ts +34 -34
- package/src/integrations/webhook-endpoints/__tests__/api-schemas.test.ts +318 -318
- package/src/integrations/webhook-endpoints/api-schemas.ts +102 -102
- package/src/integrations/webhook-endpoints/index.ts +28 -28
- package/src/integrations/webhook-endpoints/types.ts +51 -51
- package/src/operations/activities/api-schemas.ts +79 -79
- package/src/operations/activities/index.ts +9 -9
- package/src/operations/activities/sse-events.ts +30 -30
- package/src/operations/activities/types.ts +63 -63
- package/src/operations/debug-logs/client.ts +60 -60
- package/src/operations/debug-logs/debug-logger.ts +83 -83
- package/src/operations/debug-logs/index.ts +8 -8
- package/src/operations/debug-logs/server.ts +19 -19
- package/src/operations/debug-logs/types.ts +33 -33
- package/src/operations/index.ts +50 -50
- package/src/operations/notifications/api-schemas.ts +91 -91
- package/src/operations/notifications/index.ts +3 -3
- package/src/operations/notifications/sse-events.ts +21 -21
- package/src/operations/notifications/types.ts +47 -47
- package/src/operations/observability/__tests__/openrouter-cost-flow.test.ts +297 -297
- package/src/operations/observability/__tests__/utils.test.ts +54 -54
- package/src/operations/observability/ai-usage-collector.ts +64 -64
- package/src/operations/observability/index.ts +13 -13
- package/src/operations/observability/metrics-collector.ts +49 -49
- package/src/operations/observability/schemas.ts +39 -39
- package/src/operations/observability/types.ts +463 -463
- package/src/operations/observability/utils.ts +77 -77
- package/src/operations/sessions/__tests__/manager.test.ts +821 -821
- package/src/operations/sessions/index.ts +26 -26
- package/src/operations/sessions/server/manager.ts +90 -90
- package/src/operations/sessions/server/session.ts +180 -180
- package/src/operations/sessions/types.ts +98 -98
- package/src/operations/triggers/index.ts +12 -12
- package/src/operations/triggers/webhook/definitions/instantly-account-error.ts +44 -44
- package/src/operations/triggers/webhook/definitions/instantly-auto-reply-received.ts +51 -51
- package/src/operations/triggers/webhook/definitions/instantly-campaign-completed.ts +45 -45
- package/src/operations/triggers/webhook/definitions/instantly-email-bounced.ts +49 -49
- package/src/operations/triggers/webhook/definitions/instantly-lead-unsubscribed.ts +45 -45
- package/src/operations/triggers/webhook/definitions/instantly-reply-received.ts +54 -54
- package/src/operations/triggers/webhook/index.ts +35 -35
- package/src/operations/triggers/webhook/types.ts +74 -74
- package/src/organization-model/README.md +97 -97
- package/src/organization-model/__tests__/defaults.test.ts +175 -175
- package/src/organization-model/__tests__/domains/customers.test.ts +295 -295
- package/src/organization-model/__tests__/domains/goals.test.ts +479 -479
- package/src/organization-model/__tests__/domains/identity.test.ts +279 -279
- package/src/organization-model/__tests__/domains/navigation.test.ts +212 -212
- package/src/organization-model/__tests__/domains/offerings.test.ts +419 -419
- package/src/organization-model/__tests__/domains/operations.test.ts +203 -203
- package/src/organization-model/__tests__/domains/resource-mappings.test.ts +362 -362
- package/src/organization-model/__tests__/domains/roles.test.ts +347 -347
- package/src/organization-model/__tests__/domains/statuses.test.ts +243 -243
- package/src/organization-model/__tests__/foundation.test.ts +105 -105
- package/src/organization-model/__tests__/graph.test.ts +894 -894
- package/src/organization-model/__tests__/resolve.test.ts +690 -690
- package/src/organization-model/__tests__/schema.test.ts +407 -407
- package/src/organization-model/contracts.ts +14 -14
- package/src/organization-model/defaults.ts +148 -148
- package/src/organization-model/domains/branding.ts +22 -22
- package/src/organization-model/domains/customers.ts +75 -75
- package/src/organization-model/domains/features.ts +22 -22
- package/src/organization-model/domains/goals.ts +80 -80
- package/src/organization-model/domains/identity.ts +94 -94
- package/src/organization-model/domains/navigation.ts +391 -391
- package/src/organization-model/domains/offerings.ts +66 -66
- package/src/organization-model/domains/operations.ts +85 -85
- package/src/organization-model/domains/projects.ts +48 -48
- package/src/organization-model/domains/prospecting.ts +33 -33
- package/src/organization-model/domains/roles.ts +55 -55
- package/src/organization-model/domains/sales.ts +94 -94
- package/src/organization-model/domains/shared.ts +62 -62
- package/src/organization-model/domains/statuses.ts +130 -130
- package/src/organization-model/foundation.ts +97 -97
- package/src/organization-model/graph/build.ts +399 -399
- package/src/organization-model/graph/index.ts +4 -4
- package/src/organization-model/graph/schema.ts +48 -48
- package/src/organization-model/graph/types.ts +40 -40
- package/src/organization-model/index.ts +13 -13
- package/src/organization-model/organization-graph.mdx +272 -272
- package/src/organization-model/organization-model.mdx +320 -320
- package/src/organization-model/published.ts +85 -85
- package/src/organization-model/resolve.ts +66 -66
- package/src/organization-model/schema.ts +287 -287
- package/src/organization-model/types.ts +46 -46
- package/src/platform/api/index.ts +1 -1
- package/src/platform/api/types.ts +35 -35
- package/src/platform/constants/http.ts +37 -37
- package/src/platform/constants/index.ts +5 -5
- package/src/platform/constants/limits.ts +32 -32
- package/src/platform/constants/resilience.ts +51 -51
- package/src/platform/constants/timeouts.ts +20 -20
- package/src/platform/constants/versions.ts +3 -3
- package/src/platform/registry/__tests__/resource-registry-static.test.ts +347 -347
- package/src/platform/registry/__tests__/resource-registry.integration.test.ts +1028 -1028
- package/src/platform/registry/__tests__/resource-registry.list-executable.test.ts +393 -393
- package/src/platform/registry/__tests__/resource-registry.test.ts +2005 -2005
- package/src/platform/registry/__tests__/serialization.test.ts +1127 -1127
- package/src/platform/registry/command-view.ts +180 -180
- package/src/platform/registry/domains.ts +165 -165
- package/src/platform/registry/index.ts +93 -93
- package/src/platform/registry/reserved.ts +24 -24
- package/src/platform/registry/resource-metadata.ts +59 -59
- package/src/platform/registry/resource-registry.command-queue-groups.test.ts +129 -129
- package/src/platform/registry/resource-registry.ts +876 -876
- package/src/platform/registry/serialization.ts +273 -273
- package/src/platform/registry/serialized-types.ts +231 -231
- package/src/platform/registry/stats-types.ts +66 -66
- package/src/platform/registry/types.ts +404 -404
- package/src/platform/registry/validation.ts +513 -513
- package/src/platform/resilience/__tests__/rate-limiter.test.ts +471 -471
- package/src/platform/resilience/circuit-breaker.ts +164 -164
- package/src/platform/resilience/errors.ts +68 -68
- package/src/platform/resilience/http-error-mapper.ts +129 -129
- package/src/platform/resilience/index.ts +93 -93
- package/src/platform/resilience/rate-limiter-types.ts +46 -46
- package/src/platform/resilience/rate-limiter.ts +140 -140
- package/src/platform/resilience/retry.ts +89 -89
- package/src/platform/resilience/timeout.ts +63 -63
- package/src/platform/sse/events.ts +37 -34
- package/src/platform/sse/index.ts +7 -7
- package/src/platform/utils/__tests__/validation.test.ts +1083 -1083
- package/src/platform/utils/currency.ts +96 -96
- package/src/platform/utils/debounce.ts +52 -52
- package/src/platform/utils/error.ts +41 -41
- package/src/platform/utils/hmac.test.ts +97 -97
- package/src/platform/utils/index.ts +32 -32
- package/src/platform/utils/server/betterstack-logger.ts +210 -210
- package/src/platform/utils/server/hmac.ts +44 -44
- package/src/platform/utils/server/unsubscribe.ts +111 -111
- package/src/platform/utils/token-counter.ts +96 -96
- package/src/platform/utils/validation.ts +425 -425
- package/src/projects/api-schemas.ts +268 -268
- package/src/published.ts +1 -1
- package/src/reference/_generated/contracts.md +611 -607
- package/src/reference/glossary.md +105 -105
- package/src/requests/__tests__/api-schemas.test.ts +277 -277
- package/src/requests/api-schemas.ts +83 -83
- package/src/requests/index.ts +1 -1
- package/src/scaffold-registry/__tests__/index.test.ts +17 -0
- package/src/scaffold-registry/__tests__/schema.test.ts +329 -230
- package/src/scaffold-registry/index.ts +205 -189
- package/src/scaffold-registry/schema.ts +196 -128
- package/src/server.ts +272 -272
- package/src/supabase/database.types.ts +2719 -2719
- package/src/supabase/helpers.ts +20 -20
- package/src/supabase/index.ts +52 -52
- package/src/supabase/server/client.ts +58 -58
- package/src/test-utils/README.md +38 -38
- package/src/test-utils/browser-mocks.ts +54 -54
- package/src/test-utils/fixtures/api-keys.ts +52 -52
- package/src/test-utils/fixtures/index.ts +4 -4
- package/src/test-utils/fixtures/memberships.ts +80 -80
- package/src/test-utils/fixtures/organizations.ts +69 -69
- package/src/test-utils/fixtures/users.ts +79 -79
- package/src/test-utils/index.ts +11 -11
- package/src/test-utils/mocks/index.ts +2 -2
- package/src/test-utils/mocks/supabase.ts +142 -142
- package/src/test-utils/mocks/workos.ts +108 -108
- package/src/test-utils/rls/RLSTestContext.ts +556 -556
- package/src/test-utils/rls/index.ts +1 -1
|
@@ -1,1009 +1,1009 @@
|
|
|
1
|
-
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest'
|
|
2
|
-
import {
|
|
3
|
-
parseOffset,
|
|
4
|
-
applyOffset,
|
|
5
|
-
computeRetryNextRunAt,
|
|
6
|
-
computeNextRunAt,
|
|
7
|
-
getCurrentPayload,
|
|
8
|
-
getCurrentItemLabel,
|
|
9
|
-
isScheduleComplete,
|
|
10
|
-
getTotalSteps,
|
|
11
|
-
isValidOffset
|
|
12
|
-
} from '../utils'
|
|
13
|
-
import type { TaskScheduleConfig } from '../types'
|
|
14
|
-
|
|
15
|
-
describe('parseOffset', () => {
|
|
16
|
-
it('parses positive day offset', () => {
|
|
17
|
-
expect(parseOffset('+3d')).toEqual({ value: 3, unit: 'd' })
|
|
18
|
-
})
|
|
19
|
-
|
|
20
|
-
it('parses negative day offset', () => {
|
|
21
|
-
expect(parseOffset('-14d')).toEqual({ value: -14, unit: 'd' })
|
|
22
|
-
})
|
|
23
|
-
|
|
24
|
-
it('parses positive hour offset', () => {
|
|
25
|
-
expect(parseOffset('+2h')).toEqual({ value: 2, unit: 'h' })
|
|
26
|
-
})
|
|
27
|
-
|
|
28
|
-
it('parses negative hour offset', () => {
|
|
29
|
-
expect(parseOffset('-2h')).toEqual({ value: -2, unit: 'h' })
|
|
30
|
-
})
|
|
31
|
-
|
|
32
|
-
it('parses positive minute offset', () => {
|
|
33
|
-
expect(parseOffset('+30m')).toEqual({ value: 30, unit: 'm' })
|
|
34
|
-
})
|
|
35
|
-
|
|
36
|
-
it('parses negative minute offset', () => {
|
|
37
|
-
expect(parseOffset('-45m')).toEqual({ value: -45, unit: 'm' })
|
|
38
|
-
})
|
|
39
|
-
|
|
40
|
-
it('parses single digit offsets', () => {
|
|
41
|
-
expect(parseOffset('+1d')).toEqual({ value: 1, unit: 'd' })
|
|
42
|
-
expect(parseOffset('-1h')).toEqual({ value: -1, unit: 'h' })
|
|
43
|
-
expect(parseOffset('+5m')).toEqual({ value: 5, unit: 'm' })
|
|
44
|
-
})
|
|
45
|
-
|
|
46
|
-
it('parses large offsets', () => {
|
|
47
|
-
expect(parseOffset('+365d')).toEqual({ value: 365, unit: 'd' })
|
|
48
|
-
expect(parseOffset('-1000h')).toEqual({ value: -1000, unit: 'h' })
|
|
49
|
-
expect(parseOffset('+9999m')).toEqual({ value: 9999, unit: 'm' })
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
it('throws on invalid format - no sign', () => {
|
|
53
|
-
expect(() => parseOffset('3d')).toThrow('Invalid offset format')
|
|
54
|
-
})
|
|
55
|
-
|
|
56
|
-
it('throws on invalid format - invalid unit', () => {
|
|
57
|
-
expect(() => parseOffset('+3w')).toThrow('Invalid offset format')
|
|
58
|
-
})
|
|
59
|
-
|
|
60
|
-
it('throws on invalid format - invalid unit s', () => {
|
|
61
|
-
expect(() => parseOffset('+30s')).toThrow('Invalid offset format')
|
|
62
|
-
})
|
|
63
|
-
|
|
64
|
-
it('throws on invalid format - non-numeric', () => {
|
|
65
|
-
expect(() => parseOffset('+abcd')).toThrow('Invalid offset format')
|
|
66
|
-
})
|
|
67
|
-
|
|
68
|
-
it('throws on invalid format - spelled out', () => {
|
|
69
|
-
expect(() => parseOffset('3 days')).toThrow('Invalid offset format')
|
|
70
|
-
})
|
|
71
|
-
|
|
72
|
-
it('throws on empty string', () => {
|
|
73
|
-
expect(() => parseOffset('')).toThrow('Invalid offset format')
|
|
74
|
-
})
|
|
75
|
-
|
|
76
|
-
it('throws on whitespace', () => {
|
|
77
|
-
expect(() => parseOffset(' +3d ')).toThrow('Invalid offset format')
|
|
78
|
-
})
|
|
79
|
-
|
|
80
|
-
it('throws on decimal values', () => {
|
|
81
|
-
expect(() => parseOffset('+3.5d')).toThrow('Invalid offset format')
|
|
82
|
-
})
|
|
83
|
-
})
|
|
84
|
-
|
|
85
|
-
describe('applyOffset', () => {
|
|
86
|
-
const anchor = new Date('2026-01-15T10:00:00Z')
|
|
87
|
-
|
|
88
|
-
it('applies positive day offset', () => {
|
|
89
|
-
const result = applyOffset(anchor, '+3d')
|
|
90
|
-
expect(result.toISOString()).toBe('2026-01-18T10:00:00.000Z')
|
|
91
|
-
})
|
|
92
|
-
|
|
93
|
-
it('applies negative day offset', () => {
|
|
94
|
-
const result = applyOffset(anchor, '-7d')
|
|
95
|
-
expect(result.toISOString()).toBe('2026-01-08T10:00:00.000Z')
|
|
96
|
-
})
|
|
97
|
-
|
|
98
|
-
it('applies positive hour offset', () => {
|
|
99
|
-
const result = applyOffset(anchor, '+5h')
|
|
100
|
-
expect(result.toISOString()).toBe('2026-01-15T15:00:00.000Z')
|
|
101
|
-
})
|
|
102
|
-
|
|
103
|
-
it('applies negative hour offset', () => {
|
|
104
|
-
const result = applyOffset(anchor, '-2h')
|
|
105
|
-
expect(result.toISOString()).toBe('2026-01-15T08:00:00.000Z')
|
|
106
|
-
})
|
|
107
|
-
|
|
108
|
-
it('applies positive minute offset', () => {
|
|
109
|
-
const result = applyOffset(anchor, '+30m')
|
|
110
|
-
expect(result.toISOString()).toBe('2026-01-15T10:30:00.000Z')
|
|
111
|
-
})
|
|
112
|
-
|
|
113
|
-
it('applies negative minute offset', () => {
|
|
114
|
-
const result = applyOffset(anchor, '-45m')
|
|
115
|
-
expect(result.toISOString()).toBe('2026-01-15T09:15:00.000Z')
|
|
116
|
-
})
|
|
117
|
-
|
|
118
|
-
it('does not mutate original date', () => {
|
|
119
|
-
const original = new Date('2026-01-15T10:00:00Z')
|
|
120
|
-
applyOffset(original, '+3d')
|
|
121
|
-
expect(original.toISOString()).toBe('2026-01-15T10:00:00.000Z')
|
|
122
|
-
})
|
|
123
|
-
|
|
124
|
-
it('handles month boundary crossing (forward)', () => {
|
|
125
|
-
const endOfMonth = new Date('2026-01-31T12:00:00Z')
|
|
126
|
-
const result = applyOffset(endOfMonth, '+3d')
|
|
127
|
-
expect(result.toISOString()).toBe('2026-02-03T12:00:00.000Z')
|
|
128
|
-
})
|
|
129
|
-
|
|
130
|
-
it('handles month boundary crossing (backward)', () => {
|
|
131
|
-
const startOfMonth = new Date('2026-02-01T12:00:00Z')
|
|
132
|
-
const result = applyOffset(startOfMonth, '-3d')
|
|
133
|
-
expect(result.toISOString()).toBe('2026-01-29T12:00:00.000Z')
|
|
134
|
-
})
|
|
135
|
-
|
|
136
|
-
it('handles year boundary crossing', () => {
|
|
137
|
-
const endOfYear = new Date('2025-12-30T12:00:00Z')
|
|
138
|
-
const result = applyOffset(endOfYear, '+5d')
|
|
139
|
-
expect(result.toISOString()).toBe('2026-01-04T12:00:00.000Z')
|
|
140
|
-
})
|
|
141
|
-
|
|
142
|
-
it('handles hour overflow into next day', () => {
|
|
143
|
-
const lateNight = new Date('2026-01-15T22:00:00Z')
|
|
144
|
-
const result = applyOffset(lateNight, '+5h')
|
|
145
|
-
expect(result.toISOString()).toBe('2026-01-16T03:00:00.000Z')
|
|
146
|
-
})
|
|
147
|
-
|
|
148
|
-
it('handles minute overflow into next hour', () => {
|
|
149
|
-
const nearHour = new Date('2026-01-15T10:45:00Z')
|
|
150
|
-
const result = applyOffset(nearHour, '+30m')
|
|
151
|
-
expect(result.toISOString()).toBe('2026-01-15T11:15:00.000Z')
|
|
152
|
-
})
|
|
153
|
-
|
|
154
|
-
it('handles large day offset', () => {
|
|
155
|
-
const result = applyOffset(anchor, '+365d')
|
|
156
|
-
expect(result.toISOString()).toBe('2027-01-15T10:00:00.000Z')
|
|
157
|
-
})
|
|
158
|
-
})
|
|
159
|
-
|
|
160
|
-
describe('computeRetryNextRunAt', () => {
|
|
161
|
-
it('computes 1 minute delay for retry 0', () => {
|
|
162
|
-
const before = new Date()
|
|
163
|
-
const result = computeRetryNextRunAt(0)
|
|
164
|
-
const after = new Date()
|
|
165
|
-
|
|
166
|
-
// (0 + 1)^2 = 1 minute
|
|
167
|
-
const expectedMinDelay = 1 * 60 * 1000 // 1 minute in ms
|
|
168
|
-
const diff = result.getTime() - before.getTime()
|
|
169
|
-
|
|
170
|
-
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100) // Allow 100ms tolerance
|
|
171
|
-
expect(diff).toBeLessThanOrEqual(expectedMinDelay + (after.getTime() - before.getTime()) + 100)
|
|
172
|
-
})
|
|
173
|
-
|
|
174
|
-
it('computes 4 minute delay for retry 1', () => {
|
|
175
|
-
const before = new Date()
|
|
176
|
-
const result = computeRetryNextRunAt(1)
|
|
177
|
-
|
|
178
|
-
// (1 + 1)^2 = 4 minutes
|
|
179
|
-
const expectedMinDelay = 4 * 60 * 1000 // 4 minutes in ms
|
|
180
|
-
const diff = result.getTime() - before.getTime()
|
|
181
|
-
|
|
182
|
-
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100)
|
|
183
|
-
expect(diff).toBeLessThanOrEqual(expectedMinDelay + 1000) // Allow 1s tolerance
|
|
184
|
-
})
|
|
185
|
-
|
|
186
|
-
it('computes 9 minute delay for retry 2', () => {
|
|
187
|
-
const before = new Date()
|
|
188
|
-
const result = computeRetryNextRunAt(2)
|
|
189
|
-
|
|
190
|
-
// (2 + 1)^2 = 9 minutes
|
|
191
|
-
const expectedMinDelay = 9 * 60 * 1000 // 9 minutes in ms
|
|
192
|
-
const diff = result.getTime() - before.getTime()
|
|
193
|
-
|
|
194
|
-
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100)
|
|
195
|
-
expect(diff).toBeLessThanOrEqual(expectedMinDelay + 1000)
|
|
196
|
-
})
|
|
197
|
-
|
|
198
|
-
it('computes 16 minute delay for retry 3', () => {
|
|
199
|
-
const before = new Date()
|
|
200
|
-
const result = computeRetryNextRunAt(3)
|
|
201
|
-
|
|
202
|
-
// (3 + 1)^2 = 16 minutes
|
|
203
|
-
const expectedMinDelay = 16 * 60 * 1000 // 16 minutes in ms
|
|
204
|
-
const diff = result.getTime() - before.getTime()
|
|
205
|
-
|
|
206
|
-
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100)
|
|
207
|
-
expect(diff).toBeLessThanOrEqual(expectedMinDelay + 1000)
|
|
208
|
-
})
|
|
209
|
-
|
|
210
|
-
it('computes 25 minute delay for retry 4', () => {
|
|
211
|
-
const before = new Date()
|
|
212
|
-
const result = computeRetryNextRunAt(4)
|
|
213
|
-
|
|
214
|
-
// (4 + 1)^2 = 25 minutes
|
|
215
|
-
const expectedMinDelay = 25 * 60 * 1000 // 25 minutes in ms
|
|
216
|
-
const diff = result.getTime() - before.getTime()
|
|
217
|
-
|
|
218
|
-
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100)
|
|
219
|
-
expect(diff).toBeLessThanOrEqual(expectedMinDelay + 1000)
|
|
220
|
-
})
|
|
221
|
-
|
|
222
|
-
it('returns a Date object', () => {
|
|
223
|
-
const result = computeRetryNextRunAt(0)
|
|
224
|
-
expect(result).toBeInstanceOf(Date)
|
|
225
|
-
})
|
|
226
|
-
|
|
227
|
-
it('returns a future date', () => {
|
|
228
|
-
const now = new Date()
|
|
229
|
-
const result = computeRetryNextRunAt(0)
|
|
230
|
-
expect(result.getTime()).toBeGreaterThan(now.getTime())
|
|
231
|
-
})
|
|
232
|
-
})
|
|
233
|
-
|
|
234
|
-
describe('computeNextRunAt', () => {
|
|
235
|
-
describe('relative schedule', () => {
|
|
236
|
-
const config: TaskScheduleConfig = {
|
|
237
|
-
type: 'relative',
|
|
238
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
239
|
-
items: [
|
|
240
|
-
{ offset: '+1d', payload: {} },
|
|
241
|
-
{ offset: '+3d', payload: {} },
|
|
242
|
-
{ offset: '+7d', payload: {} }
|
|
243
|
-
]
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
it('computes first step correctly', () => {
|
|
247
|
-
const result = computeNextRunAt(config, 0)
|
|
248
|
-
expect(result?.toISOString()).toBe('2026-01-16T10:00:00.000Z')
|
|
249
|
-
})
|
|
250
|
-
|
|
251
|
-
it('computes second step correctly', () => {
|
|
252
|
-
const result = computeNextRunAt(config, 1)
|
|
253
|
-
expect(result?.toISOString()).toBe('2026-01-18T10:00:00.000Z')
|
|
254
|
-
})
|
|
255
|
-
|
|
256
|
-
it('computes third step correctly', () => {
|
|
257
|
-
const result = computeNextRunAt(config, 2)
|
|
258
|
-
expect(result?.toISOString()).toBe('2026-01-22T10:00:00.000Z')
|
|
259
|
-
})
|
|
260
|
-
|
|
261
|
-
it('returns null when sequence complete', () => {
|
|
262
|
-
const result = computeNextRunAt(config, 3)
|
|
263
|
-
expect(result).toBeNull()
|
|
264
|
-
})
|
|
265
|
-
|
|
266
|
-
it('returns null for step beyond sequence', () => {
|
|
267
|
-
const result = computeNextRunAt(config, 10)
|
|
268
|
-
expect(result).toBeNull()
|
|
269
|
-
})
|
|
270
|
-
|
|
271
|
-
it('handles negative offsets', () => {
|
|
272
|
-
const countdownConfig: TaskScheduleConfig = {
|
|
273
|
-
type: 'relative',
|
|
274
|
-
anchorAt: '2026-06-01T00:00:00Z',
|
|
275
|
-
items: [
|
|
276
|
-
{ offset: '-7d', payload: {} },
|
|
277
|
-
{ offset: '-1d', payload: {} }
|
|
278
|
-
]
|
|
279
|
-
}
|
|
280
|
-
expect(computeNextRunAt(countdownConfig, 0)?.toISOString()).toBe('2026-05-25T00:00:00.000Z')
|
|
281
|
-
expect(computeNextRunAt(countdownConfig, 1)?.toISOString()).toBe('2026-05-31T00:00:00.000Z')
|
|
282
|
-
})
|
|
283
|
-
})
|
|
284
|
-
|
|
285
|
-
describe('absolute schedule', () => {
|
|
286
|
-
const config: TaskScheduleConfig = {
|
|
287
|
-
type: 'absolute',
|
|
288
|
-
items: [
|
|
289
|
-
{ runAt: '2026-01-15T09:00:00Z', payload: {} },
|
|
290
|
-
{ runAt: '2026-02-01T09:00:00Z', payload: {} },
|
|
291
|
-
{ runAt: '2026-03-15T14:30:00Z', payload: {} }
|
|
292
|
-
]
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
it('returns first item datetime', () => {
|
|
296
|
-
const result = computeNextRunAt(config, 0)
|
|
297
|
-
expect(result?.toISOString()).toBe('2026-01-15T09:00:00.000Z')
|
|
298
|
-
})
|
|
299
|
-
|
|
300
|
-
it('returns second item datetime', () => {
|
|
301
|
-
const result = computeNextRunAt(config, 1)
|
|
302
|
-
expect(result?.toISOString()).toBe('2026-02-01T09:00:00.000Z')
|
|
303
|
-
})
|
|
304
|
-
|
|
305
|
-
it('returns third item datetime', () => {
|
|
306
|
-
const result = computeNextRunAt(config, 2)
|
|
307
|
-
expect(result?.toISOString()).toBe('2026-03-15T14:30:00.000Z')
|
|
308
|
-
})
|
|
309
|
-
|
|
310
|
-
it('returns null when sequence complete', () => {
|
|
311
|
-
const result = computeNextRunAt(config, 3)
|
|
312
|
-
expect(result).toBeNull()
|
|
313
|
-
})
|
|
314
|
-
|
|
315
|
-
it('returns null for step beyond sequence', () => {
|
|
316
|
-
const result = computeNextRunAt(config, 100)
|
|
317
|
-
expect(result).toBeNull()
|
|
318
|
-
})
|
|
319
|
-
})
|
|
320
|
-
|
|
321
|
-
describe('recurring schedule', () => {
|
|
322
|
-
it('computes next run for daily interval-based schedule', () => {
|
|
323
|
-
const config: TaskScheduleConfig = {
|
|
324
|
-
type: 'recurring',
|
|
325
|
-
interval: 'daily',
|
|
326
|
-
time: '09:00',
|
|
327
|
-
timezone: 'UTC',
|
|
328
|
-
payload: {}
|
|
329
|
-
}
|
|
330
|
-
// Test that it returns a date (exact value depends on current time)
|
|
331
|
-
const result = computeNextRunAt(config, 0)
|
|
332
|
-
expect(result).toBeInstanceOf(Date)
|
|
333
|
-
})
|
|
334
|
-
|
|
335
|
-
it('computes next run for weekly interval-based schedule', () => {
|
|
336
|
-
const config: TaskScheduleConfig = {
|
|
337
|
-
type: 'recurring',
|
|
338
|
-
interval: 'weekly',
|
|
339
|
-
time: '14:30',
|
|
340
|
-
timezone: 'UTC',
|
|
341
|
-
payload: {}
|
|
342
|
-
}
|
|
343
|
-
const result = computeNextRunAt(config, 0)
|
|
344
|
-
expect(result).toBeInstanceOf(Date)
|
|
345
|
-
})
|
|
346
|
-
|
|
347
|
-
it('computes next run for monthly interval-based schedule', () => {
|
|
348
|
-
const config: TaskScheduleConfig = {
|
|
349
|
-
type: 'recurring',
|
|
350
|
-
interval: 'monthly',
|
|
351
|
-
time: '08:00',
|
|
352
|
-
timezone: 'UTC',
|
|
353
|
-
payload: {}
|
|
354
|
-
}
|
|
355
|
-
const result = computeNextRunAt(config, 0)
|
|
356
|
-
expect(result).toBeInstanceOf(Date)
|
|
357
|
-
})
|
|
358
|
-
|
|
359
|
-
it('returns null if endAt has passed', () => {
|
|
360
|
-
const config: TaskScheduleConfig = {
|
|
361
|
-
type: 'recurring',
|
|
362
|
-
interval: 'daily',
|
|
363
|
-
time: '09:00',
|
|
364
|
-
timezone: 'UTC',
|
|
365
|
-
payload: {},
|
|
366
|
-
endAt: '2020-01-01T00:00:00Z' // Past date
|
|
367
|
-
}
|
|
368
|
-
const result = computeNextRunAt(config, 0, new Date('2025-01-01'))
|
|
369
|
-
expect(result).toBeNull()
|
|
370
|
-
})
|
|
371
|
-
|
|
372
|
-
it('returns next run when before endAt', () => {
|
|
373
|
-
const config: TaskScheduleConfig = {
|
|
374
|
-
type: 'recurring',
|
|
375
|
-
interval: 'daily',
|
|
376
|
-
time: '09:00',
|
|
377
|
-
timezone: 'UTC',
|
|
378
|
-
payload: {},
|
|
379
|
-
endAt: '2030-01-01T00:00:00Z' // Future date
|
|
380
|
-
}
|
|
381
|
-
const result = computeNextRunAt(config, 0, new Date('2025-01-01T08:00:00Z'))
|
|
382
|
-
expect(result).toBeInstanceOf(Date)
|
|
383
|
-
})
|
|
384
|
-
|
|
385
|
-
it('computes next run for cron expression', () => {
|
|
386
|
-
const config: TaskScheduleConfig = {
|
|
387
|
-
type: 'recurring',
|
|
388
|
-
cron: '0 9 * * 1',
|
|
389
|
-
timezone: 'UTC',
|
|
390
|
-
payload: {}
|
|
391
|
-
}
|
|
392
|
-
// Wednesday Jan 15, 2025 at 10:00 UTC → next Monday at 09:00 UTC = Jan 20
|
|
393
|
-
const fromTime = new Date('2025-01-15T10:00:00Z')
|
|
394
|
-
const result = computeNextRunAt(config, 0, fromTime)
|
|
395
|
-
expect(result).toBeInstanceOf(Date)
|
|
396
|
-
expect(result!.toISOString()).toBe('2025-01-20T09:00:00.000Z')
|
|
397
|
-
})
|
|
398
|
-
|
|
399
|
-
it('computes next run for multi-time cron (3x daily)', () => {
|
|
400
|
-
const config: TaskScheduleConfig = {
|
|
401
|
-
type: 'recurring',
|
|
402
|
-
cron: '0 4,16,22 * * *',
|
|
403
|
-
timezone: 'UTC',
|
|
404
|
-
payload: {}
|
|
405
|
-
}
|
|
406
|
-
// At 05:00 UTC → next is 16:00 same day
|
|
407
|
-
const result1 = computeNextRunAt(config, 0, new Date('2025-03-25T05:00:00Z'))
|
|
408
|
-
expect(result1!.toISOString()).toBe('2025-03-25T16:00:00.000Z')
|
|
409
|
-
|
|
410
|
-
// At 17:00 UTC → next is 22:00 same day
|
|
411
|
-
const result2 = computeNextRunAt(config, 0, new Date('2025-03-25T17:00:00Z'))
|
|
412
|
-
expect(result2!.toISOString()).toBe('2025-03-25T22:00:00.000Z')
|
|
413
|
-
|
|
414
|
-
// At 23:00 UTC → next is 04:00 next day
|
|
415
|
-
const result3 = computeNextRunAt(config, 0, new Date('2025-03-25T23:00:00Z'))
|
|
416
|
-
expect(result3!.toISOString()).toBe('2025-03-26T04:00:00.000Z')
|
|
417
|
-
})
|
|
418
|
-
|
|
419
|
-
it('respects timezone for cron expression', () => {
|
|
420
|
-
const config: TaskScheduleConfig = {
|
|
421
|
-
type: 'recurring',
|
|
422
|
-
cron: '0 9 * * *',
|
|
423
|
-
timezone: 'America/New_York',
|
|
424
|
-
payload: {}
|
|
425
|
-
}
|
|
426
|
-
// 12:00 UTC on Jan 15 = 07:00 EST → next 09:00 EST = 14:00 UTC
|
|
427
|
-
const fromTime = new Date('2025-01-15T12:00:00Z')
|
|
428
|
-
const result = computeNextRunAt(config, 0, fromTime)
|
|
429
|
-
expect(result).toBeInstanceOf(Date)
|
|
430
|
-
expect(result!.toISOString()).toBe('2025-01-15T14:00:00.000Z')
|
|
431
|
-
})
|
|
432
|
-
|
|
433
|
-
it('returns null for cron when endAt has passed', () => {
|
|
434
|
-
const config: TaskScheduleConfig = {
|
|
435
|
-
type: 'recurring',
|
|
436
|
-
cron: '0 9 * * *',
|
|
437
|
-
timezone: 'UTC',
|
|
438
|
-
payload: {},
|
|
439
|
-
endAt: '2025-01-10T00:00:00Z'
|
|
440
|
-
}
|
|
441
|
-
const result = computeNextRunAt(config, 0, new Date('2025-01-15T08:00:00Z'))
|
|
442
|
-
expect(result).toBeNull()
|
|
443
|
-
})
|
|
444
|
-
|
|
445
|
-
it('returns null for cron when next run exceeds endAt', () => {
|
|
446
|
-
const config: TaskScheduleConfig = {
|
|
447
|
-
type: 'recurring',
|
|
448
|
-
cron: '0 9 * * *',
|
|
449
|
-
timezone: 'UTC',
|
|
450
|
-
payload: {},
|
|
451
|
-
endAt: '2025-01-16T08:00:00Z'
|
|
452
|
-
}
|
|
453
|
-
// At 10:00 Jan 15 → next would be 09:00 Jan 16, but endAt is 08:00 Jan 16
|
|
454
|
-
const result = computeNextRunAt(config, 0, new Date('2025-01-15T10:00:00Z'))
|
|
455
|
-
expect(result).toBeNull()
|
|
456
|
-
})
|
|
457
|
-
|
|
458
|
-
describe('timezone handling', () => {
|
|
459
|
-
it('converts time correctly for America/New_York timezone', () => {
|
|
460
|
-
// Schedule at 09:00 New York time
|
|
461
|
-
const config: TaskScheduleConfig = {
|
|
462
|
-
type: 'recurring',
|
|
463
|
-
interval: 'daily',
|
|
464
|
-
time: '09:00',
|
|
465
|
-
timezone: 'America/New_York',
|
|
466
|
-
payload: {}
|
|
467
|
-
}
|
|
468
|
-
// Test at 12:00 UTC on Jan 15, 2026 (07:00 EST)
|
|
469
|
-
// 09:00 EST = 14:00 UTC (EST is UTC-5 in winter)
|
|
470
|
-
const fromTime = new Date('2026-01-15T12:00:00Z')
|
|
471
|
-
const result = computeNextRunAt(config, 0, fromTime)
|
|
472
|
-
|
|
473
|
-
expect(result).toBeInstanceOf(Date)
|
|
474
|
-
// The result should be 14:00 UTC (09:00 EST)
|
|
475
|
-
expect(result?.getUTCHours()).toBe(14)
|
|
476
|
-
expect(result?.getUTCMinutes()).toBe(0)
|
|
477
|
-
})
|
|
478
|
-
|
|
479
|
-
it('converts time correctly for Europe/London timezone', () => {
|
|
480
|
-
// Schedule at 10:00 London time
|
|
481
|
-
const config: TaskScheduleConfig = {
|
|
482
|
-
type: 'recurring',
|
|
483
|
-
interval: 'daily',
|
|
484
|
-
time: '10:00',
|
|
485
|
-
timezone: 'Europe/London',
|
|
486
|
-
payload: {}
|
|
487
|
-
}
|
|
488
|
-
// Test at 08:00 UTC on Jan 15, 2026 (08:00 GMT in winter, no DST)
|
|
489
|
-
// 10:00 GMT = 10:00 UTC
|
|
490
|
-
const fromTime = new Date('2026-01-15T08:00:00Z')
|
|
491
|
-
const result = computeNextRunAt(config, 0, fromTime)
|
|
492
|
-
|
|
493
|
-
expect(result).toBeInstanceOf(Date)
|
|
494
|
-
// The result should be 10:00 UTC (10:00 GMT)
|
|
495
|
-
expect(result?.getUTCHours()).toBe(10)
|
|
496
|
-
expect(result?.getUTCMinutes()).toBe(0)
|
|
497
|
-
})
|
|
498
|
-
|
|
499
|
-
it('converts time correctly for Asia/Tokyo timezone', () => {
|
|
500
|
-
// Schedule at 09:00 Tokyo time
|
|
501
|
-
const config: TaskScheduleConfig = {
|
|
502
|
-
type: 'recurring',
|
|
503
|
-
interval: 'daily',
|
|
504
|
-
time: '09:00',
|
|
505
|
-
timezone: 'Asia/Tokyo',
|
|
506
|
-
payload: {}
|
|
507
|
-
}
|
|
508
|
-
// Test at 22:00 UTC on Jan 15, 2026 (07:00 JST next day)
|
|
509
|
-
// 09:00 JST = 00:00 UTC (JST is UTC+9)
|
|
510
|
-
const fromTime = new Date('2026-01-15T22:00:00Z')
|
|
511
|
-
const result = computeNextRunAt(config, 0, fromTime)
|
|
512
|
-
|
|
513
|
-
expect(result).toBeInstanceOf(Date)
|
|
514
|
-
// The result should be 00:00 UTC on Jan 16 (09:00 JST)
|
|
515
|
-
expect(result?.getUTCHours()).toBe(0)
|
|
516
|
-
expect(result?.getUTCMinutes()).toBe(0)
|
|
517
|
-
expect(result?.getUTCDate()).toBe(16)
|
|
518
|
-
})
|
|
519
|
-
|
|
520
|
-
it('defaults to UTC when timezone not provided', () => {
|
|
521
|
-
const config: TaskScheduleConfig = {
|
|
522
|
-
type: 'recurring',
|
|
523
|
-
interval: 'daily',
|
|
524
|
-
time: '09:00',
|
|
525
|
-
timezone: 'UTC',
|
|
526
|
-
payload: {}
|
|
527
|
-
}
|
|
528
|
-
// Test at 08:00 UTC
|
|
529
|
-
const fromTime = new Date('2026-01-15T08:00:00Z')
|
|
530
|
-
const result = computeNextRunAt(config, 0, fromTime)
|
|
531
|
-
|
|
532
|
-
expect(result).toBeInstanceOf(Date)
|
|
533
|
-
// Should return 09:00 UTC same day
|
|
534
|
-
expect(result?.getUTCHours()).toBe(9)
|
|
535
|
-
expect(result?.getUTCMinutes()).toBe(0)
|
|
536
|
-
expect(result?.getUTCDate()).toBe(15)
|
|
537
|
-
})
|
|
538
|
-
|
|
539
|
-
it('moves to next day if time has passed in timezone', () => {
|
|
540
|
-
// Schedule at 09:00 New York time
|
|
541
|
-
const config: TaskScheduleConfig = {
|
|
542
|
-
type: 'recurring',
|
|
543
|
-
interval: 'daily',
|
|
544
|
-
time: '09:00',
|
|
545
|
-
timezone: 'America/New_York',
|
|
546
|
-
payload: {}
|
|
547
|
-
}
|
|
548
|
-
// Test at 16:00 UTC on Jan 15, 2026 (11:00 EST - after scheduled time)
|
|
549
|
-
// Should schedule for 09:00 EST next day = 14:00 UTC Jan 16
|
|
550
|
-
const fromTime = new Date('2026-01-15T16:00:00Z')
|
|
551
|
-
const result = computeNextRunAt(config, 0, fromTime)
|
|
552
|
-
|
|
553
|
-
expect(result).toBeInstanceOf(Date)
|
|
554
|
-
expect(result?.getUTCHours()).toBe(14)
|
|
555
|
-
expect(result?.getUTCDate()).toBe(16)
|
|
556
|
-
})
|
|
557
|
-
|
|
558
|
-
describe('with fake timers', () => {
|
|
559
|
-
beforeEach(() => {
|
|
560
|
-
vi.useFakeTimers()
|
|
561
|
-
})
|
|
562
|
-
|
|
563
|
-
afterEach(() => {
|
|
564
|
-
vi.useRealTimers()
|
|
565
|
-
})
|
|
566
|
-
|
|
567
|
-
it('computes next run in America/New_York timezone with deterministic time', () => {
|
|
568
|
-
// Set system time to 2026-01-15T13:00:00Z (8 AM EST)
|
|
569
|
-
vi.setSystemTime(new Date('2026-01-15T13:00:00Z'))
|
|
570
|
-
|
|
571
|
-
const config: TaskScheduleConfig = {
|
|
572
|
-
type: 'recurring',
|
|
573
|
-
interval: 'daily',
|
|
574
|
-
time: '09:00', // 9 AM in New York
|
|
575
|
-
timezone: 'America/New_York',
|
|
576
|
-
payload: {}
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
// 9 AM EST = 14:00 UTC (during standard time, EST is UTC-5)
|
|
580
|
-
const result = computeNextRunAt(config, 0)
|
|
581
|
-
expect(result?.toISOString()).toBe('2026-01-15T14:00:00.000Z')
|
|
582
|
-
})
|
|
583
|
-
|
|
584
|
-
it('computes next run in Europe/London timezone with deterministic time', () => {
|
|
585
|
-
// Set system time to 2026-01-15T08:30:00Z (8:30 AM GMT)
|
|
586
|
-
vi.setSystemTime(new Date('2026-01-15T08:30:00Z'))
|
|
587
|
-
|
|
588
|
-
const config: TaskScheduleConfig = {
|
|
589
|
-
type: 'recurring',
|
|
590
|
-
interval: 'daily',
|
|
591
|
-
time: '10:00', // 10 AM in London
|
|
592
|
-
timezone: 'Europe/London',
|
|
593
|
-
payload: {}
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
// 10 AM GMT = 10:00 UTC (during winter, no DST offset)
|
|
597
|
-
const result = computeNextRunAt(config, 0)
|
|
598
|
-
expect(result?.toISOString()).toBe('2026-01-15T10:00:00.000Z')
|
|
599
|
-
})
|
|
600
|
-
|
|
601
|
-
it('handles DST transition for America/New_York (spring forward)', () => {
|
|
602
|
-
// March 8, 2026 is when DST starts in the US (clocks spring forward at 2 AM)
|
|
603
|
-
// Set time to just before DST transition
|
|
604
|
-
vi.setSystemTime(new Date('2026-03-08T06:00:00Z')) // 1 AM EST
|
|
605
|
-
|
|
606
|
-
const config: TaskScheduleConfig = {
|
|
607
|
-
type: 'recurring',
|
|
608
|
-
interval: 'daily',
|
|
609
|
-
time: '09:00', // 9 AM in New York
|
|
610
|
-
timezone: 'America/New_York',
|
|
611
|
-
payload: {}
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
// After DST, 9 AM EDT = 13:00 UTC (EDT is UTC-4)
|
|
615
|
-
const result = computeNextRunAt(config, 0)
|
|
616
|
-
expect(result?.toISOString()).toBe('2026-03-08T13:00:00.000Z')
|
|
617
|
-
})
|
|
618
|
-
|
|
619
|
-
it('handles DST transition for America/New_York (fall back)', () => {
|
|
620
|
-
// November 1, 2026 is when DST ends in the US (clocks fall back at 2 AM)
|
|
621
|
-
// Set time to just after DST ends
|
|
622
|
-
vi.setSystemTime(new Date('2026-11-01T07:00:00Z')) // 2 AM EST (after fall back)
|
|
623
|
-
|
|
624
|
-
const config: TaskScheduleConfig = {
|
|
625
|
-
type: 'recurring',
|
|
626
|
-
interval: 'daily',
|
|
627
|
-
time: '09:00', // 9 AM in New York
|
|
628
|
-
timezone: 'America/New_York',
|
|
629
|
-
payload: {}
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
// After DST ends, 9 AM EST = 14:00 UTC (EST is UTC-5)
|
|
633
|
-
const result = computeNextRunAt(config, 0)
|
|
634
|
-
expect(result?.toISOString()).toBe('2026-11-01T14:00:00.000Z')
|
|
635
|
-
})
|
|
636
|
-
|
|
637
|
-
it('defaults to UTC behavior when timezone is set to UTC', () => {
|
|
638
|
-
// Set system time to 2026-01-15T07:30:00Z
|
|
639
|
-
vi.setSystemTime(new Date('2026-01-15T07:30:00Z'))
|
|
640
|
-
|
|
641
|
-
const config: TaskScheduleConfig = {
|
|
642
|
-
type: 'recurring',
|
|
643
|
-
interval: 'daily',
|
|
644
|
-
time: '09:00',
|
|
645
|
-
timezone: 'UTC',
|
|
646
|
-
payload: {}
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
// 9 AM UTC should be exactly 09:00:00Z
|
|
650
|
-
const result = computeNextRunAt(config, 0)
|
|
651
|
-
expect(result?.toISOString()).toBe('2026-01-15T09:00:00.000Z')
|
|
652
|
-
})
|
|
653
|
-
|
|
654
|
-
it('stores result as UTC regardless of input timezone', () => {
|
|
655
|
-
vi.setSystemTime(new Date('2026-01-15T00:00:00Z'))
|
|
656
|
-
|
|
657
|
-
const config: TaskScheduleConfig = {
|
|
658
|
-
type: 'recurring',
|
|
659
|
-
interval: 'daily',
|
|
660
|
-
time: '15:00', // 3 PM in Tokyo
|
|
661
|
-
timezone: 'Asia/Tokyo',
|
|
662
|
-
payload: {}
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
// 15:00 JST = 06:00 UTC (JST is UTC+9)
|
|
666
|
-
const result = computeNextRunAt(config, 0)
|
|
667
|
-
|
|
668
|
-
// Verify the result is stored as a proper UTC ISO string
|
|
669
|
-
expect(result?.toISOString()).toBe('2026-01-15T06:00:00.000Z')
|
|
670
|
-
// Verify it's a Date object that can be used directly
|
|
671
|
-
expect(result).toBeInstanceOf(Date)
|
|
672
|
-
expect(result?.getUTCHours()).toBe(6)
|
|
673
|
-
expect(result?.getUTCMinutes()).toBe(0)
|
|
674
|
-
})
|
|
675
|
-
})
|
|
676
|
-
})
|
|
677
|
-
})
|
|
678
|
-
})
|
|
679
|
-
|
|
680
|
-
describe('getCurrentPayload', () => {
|
|
681
|
-
it('returns payload for recurring schedule', () => {
|
|
682
|
-
const config: TaskScheduleConfig = {
|
|
683
|
-
type: 'recurring',
|
|
684
|
-
interval: 'daily',
|
|
685
|
-
time: '09:00',
|
|
686
|
-
timezone: 'UTC',
|
|
687
|
-
payload: { key: 'value', reportType: 'daily' }
|
|
688
|
-
}
|
|
689
|
-
expect(getCurrentPayload(config, 0)).toEqual({ key: 'value', reportType: 'daily' })
|
|
690
|
-
// Recurring schedules always return the same payload regardless of step
|
|
691
|
-
expect(getCurrentPayload(config, 100)).toEqual({ key: 'value', reportType: 'daily' })
|
|
692
|
-
})
|
|
693
|
-
|
|
694
|
-
it('returns correct item payload for relative schedule', () => {
|
|
695
|
-
const config: TaskScheduleConfig = {
|
|
696
|
-
type: 'relative',
|
|
697
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
698
|
-
items: [
|
|
699
|
-
{ offset: '+1d', payload: { step: 1, tone: 'friendly' } },
|
|
700
|
-
{ offset: '+3d', payload: { step: 2, tone: 'casual' } },
|
|
701
|
-
{ offset: '+7d', payload: { step: 3, tone: 'urgent' } }
|
|
702
|
-
]
|
|
703
|
-
}
|
|
704
|
-
expect(getCurrentPayload(config, 0)).toEqual({ step: 1, tone: 'friendly' })
|
|
705
|
-
expect(getCurrentPayload(config, 1)).toEqual({ step: 2, tone: 'casual' })
|
|
706
|
-
expect(getCurrentPayload(config, 2)).toEqual({ step: 3, tone: 'urgent' })
|
|
707
|
-
})
|
|
708
|
-
|
|
709
|
-
it('returns correct item payload for absolute schedule', () => {
|
|
710
|
-
const config: TaskScheduleConfig = {
|
|
711
|
-
type: 'absolute',
|
|
712
|
-
items: [
|
|
713
|
-
{ runAt: '2026-01-15T09:00:00Z', payload: { phase: 'alpha' } },
|
|
714
|
-
{ runAt: '2026-02-01T09:00:00Z', payload: { phase: 'beta' } }
|
|
715
|
-
]
|
|
716
|
-
}
|
|
717
|
-
expect(getCurrentPayload(config, 0)).toEqual({ phase: 'alpha' })
|
|
718
|
-
expect(getCurrentPayload(config, 1)).toEqual({ phase: 'beta' })
|
|
719
|
-
})
|
|
720
|
-
|
|
721
|
-
it('returns null for completed relative sequence', () => {
|
|
722
|
-
const config: TaskScheduleConfig = {
|
|
723
|
-
type: 'relative',
|
|
724
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
725
|
-
items: [{ offset: '+1d', payload: { test: true } }]
|
|
726
|
-
}
|
|
727
|
-
expect(getCurrentPayload(config, 1)).toBeNull()
|
|
728
|
-
expect(getCurrentPayload(config, 10)).toBeNull()
|
|
729
|
-
})
|
|
730
|
-
|
|
731
|
-
it('returns null for completed absolute sequence', () => {
|
|
732
|
-
const config: TaskScheduleConfig = {
|
|
733
|
-
type: 'absolute',
|
|
734
|
-
items: [{ runAt: '2026-01-15T09:00:00Z', payload: { test: true } }]
|
|
735
|
-
}
|
|
736
|
-
expect(getCurrentPayload(config, 1)).toBeNull()
|
|
737
|
-
expect(getCurrentPayload(config, 10)).toBeNull()
|
|
738
|
-
})
|
|
739
|
-
|
|
740
|
-
it('handles empty payload object', () => {
|
|
741
|
-
const config: TaskScheduleConfig = {
|
|
742
|
-
type: 'relative',
|
|
743
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
744
|
-
items: [{ offset: '+1d', payload: {} }]
|
|
745
|
-
}
|
|
746
|
-
expect(getCurrentPayload(config, 0)).toEqual({})
|
|
747
|
-
})
|
|
748
|
-
})
|
|
749
|
-
|
|
750
|
-
describe('getCurrentItemLabel', () => {
|
|
751
|
-
it('returns undefined for recurring schedule', () => {
|
|
752
|
-
const config: TaskScheduleConfig = {
|
|
753
|
-
type: 'recurring',
|
|
754
|
-
interval: 'daily',
|
|
755
|
-
time: '09:00',
|
|
756
|
-
timezone: 'UTC',
|
|
757
|
-
payload: {}
|
|
758
|
-
}
|
|
759
|
-
expect(getCurrentItemLabel(config, 0)).toBeUndefined()
|
|
760
|
-
expect(getCurrentItemLabel(config, 100)).toBeUndefined()
|
|
761
|
-
})
|
|
762
|
-
|
|
763
|
-
it('returns label for relative schedule item', () => {
|
|
764
|
-
const config: TaskScheduleConfig = {
|
|
765
|
-
type: 'relative',
|
|
766
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
767
|
-
items: [
|
|
768
|
-
{ offset: '+1d', payload: {}, label: 'Thank you email' },
|
|
769
|
-
{ offset: '+3d', payload: {}, label: 'Follow up' },
|
|
770
|
-
{ offset: '+7d', payload: {} } // No label
|
|
771
|
-
]
|
|
772
|
-
}
|
|
773
|
-
expect(getCurrentItemLabel(config, 0)).toBe('Thank you email')
|
|
774
|
-
expect(getCurrentItemLabel(config, 1)).toBe('Follow up')
|
|
775
|
-
expect(getCurrentItemLabel(config, 2)).toBeUndefined()
|
|
776
|
-
})
|
|
777
|
-
|
|
778
|
-
it('returns label for absolute schedule item', () => {
|
|
779
|
-
const config: TaskScheduleConfig = {
|
|
780
|
-
type: 'absolute',
|
|
781
|
-
items: [
|
|
782
|
-
{ runAt: '2026-01-15T09:00:00Z', payload: {}, label: 'Phase 1 Launch' },
|
|
783
|
-
{ runAt: '2026-02-01T09:00:00Z', payload: {} } // No label
|
|
784
|
-
]
|
|
785
|
-
}
|
|
786
|
-
expect(getCurrentItemLabel(config, 0)).toBe('Phase 1 Launch')
|
|
787
|
-
expect(getCurrentItemLabel(config, 1)).toBeUndefined()
|
|
788
|
-
})
|
|
789
|
-
|
|
790
|
-
it('returns undefined for out of range step in relative schedule', () => {
|
|
791
|
-
const config: TaskScheduleConfig = {
|
|
792
|
-
type: 'relative',
|
|
793
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
794
|
-
items: [{ offset: '+1d', payload: {}, label: 'Test' }]
|
|
795
|
-
}
|
|
796
|
-
expect(getCurrentItemLabel(config, 1)).toBeUndefined()
|
|
797
|
-
expect(getCurrentItemLabel(config, 10)).toBeUndefined()
|
|
798
|
-
})
|
|
799
|
-
|
|
800
|
-
it('returns undefined for out of range step in absolute schedule', () => {
|
|
801
|
-
const config: TaskScheduleConfig = {
|
|
802
|
-
type: 'absolute',
|
|
803
|
-
items: [{ runAt: '2026-01-15T09:00:00Z', payload: {}, label: 'Test' }]
|
|
804
|
-
}
|
|
805
|
-
expect(getCurrentItemLabel(config, 1)).toBeUndefined()
|
|
806
|
-
})
|
|
807
|
-
})
|
|
808
|
-
|
|
809
|
-
describe('isScheduleComplete', () => {
|
|
810
|
-
it('returns false for indefinite recurring schedule', () => {
|
|
811
|
-
const config: TaskScheduleConfig = {
|
|
812
|
-
type: 'recurring',
|
|
813
|
-
interval: 'daily',
|
|
814
|
-
time: '09:00',
|
|
815
|
-
timezone: 'UTC',
|
|
816
|
-
payload: {}
|
|
817
|
-
}
|
|
818
|
-
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
819
|
-
expect(isScheduleComplete(config, 100)).toBe(false)
|
|
820
|
-
expect(isScheduleComplete(config, 1000)).toBe(false)
|
|
821
|
-
})
|
|
822
|
-
|
|
823
|
-
it('returns false for recurring with null endAt', () => {
|
|
824
|
-
const config: TaskScheduleConfig = {
|
|
825
|
-
type: 'recurring',
|
|
826
|
-
interval: 'daily',
|
|
827
|
-
time: '09:00',
|
|
828
|
-
timezone: 'UTC',
|
|
829
|
-
payload: {},
|
|
830
|
-
endAt: null
|
|
831
|
-
}
|
|
832
|
-
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
833
|
-
})
|
|
834
|
-
|
|
835
|
-
it('returns true when relative sequence is complete', () => {
|
|
836
|
-
const config: TaskScheduleConfig = {
|
|
837
|
-
type: 'relative',
|
|
838
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
839
|
-
items: [
|
|
840
|
-
{ offset: '+1d', payload: {} },
|
|
841
|
-
{ offset: '+3d', payload: {} }
|
|
842
|
-
]
|
|
843
|
-
}
|
|
844
|
-
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
845
|
-
expect(isScheduleComplete(config, 1)).toBe(false)
|
|
846
|
-
expect(isScheduleComplete(config, 2)).toBe(true)
|
|
847
|
-
expect(isScheduleComplete(config, 10)).toBe(true)
|
|
848
|
-
})
|
|
849
|
-
|
|
850
|
-
it('returns true when absolute sequence is complete', () => {
|
|
851
|
-
const config: TaskScheduleConfig = {
|
|
852
|
-
type: 'absolute',
|
|
853
|
-
items: [
|
|
854
|
-
{ runAt: '2026-01-15T09:00:00Z', payload: {} },
|
|
855
|
-
{ runAt: '2026-02-01T09:00:00Z', payload: {} }
|
|
856
|
-
]
|
|
857
|
-
}
|
|
858
|
-
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
859
|
-
expect(isScheduleComplete(config, 1)).toBe(false)
|
|
860
|
-
expect(isScheduleComplete(config, 2)).toBe(true)
|
|
861
|
-
})
|
|
862
|
-
|
|
863
|
-
it('returns true for single-item relative sequence at step 1', () => {
|
|
864
|
-
const config: TaskScheduleConfig = {
|
|
865
|
-
type: 'relative',
|
|
866
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
867
|
-
items: [{ offset: '+1d', payload: {} }]
|
|
868
|
-
}
|
|
869
|
-
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
870
|
-
expect(isScheduleComplete(config, 1)).toBe(true)
|
|
871
|
-
})
|
|
872
|
-
|
|
873
|
-
it('returns true for single-item absolute sequence at step 1', () => {
|
|
874
|
-
const config: TaskScheduleConfig = {
|
|
875
|
-
type: 'absolute',
|
|
876
|
-
items: [{ runAt: '2026-01-15T09:00:00Z', payload: {} }]
|
|
877
|
-
}
|
|
878
|
-
expect(isScheduleComplete(config, 1)).toBe(true)
|
|
879
|
-
})
|
|
880
|
-
|
|
881
|
-
// Note: Testing recurring with endAt in the past is time-dependent
|
|
882
|
-
// In production, this would compare endAt against current time
|
|
883
|
-
it('handles recurring schedule with future endAt', () => {
|
|
884
|
-
const config: TaskScheduleConfig = {
|
|
885
|
-
type: 'recurring',
|
|
886
|
-
interval: 'daily',
|
|
887
|
-
time: '09:00',
|
|
888
|
-
timezone: 'UTC',
|
|
889
|
-
payload: {},
|
|
890
|
-
endAt: '2099-12-31T23:59:59Z' // Far future
|
|
891
|
-
}
|
|
892
|
-
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
893
|
-
})
|
|
894
|
-
})
|
|
895
|
-
|
|
896
|
-
describe('getTotalSteps', () => {
|
|
897
|
-
it('returns null for recurring schedule (indefinite)', () => {
|
|
898
|
-
const config: TaskScheduleConfig = {
|
|
899
|
-
type: 'recurring',
|
|
900
|
-
interval: 'daily',
|
|
901
|
-
time: '09:00',
|
|
902
|
-
timezone: 'UTC',
|
|
903
|
-
payload: {}
|
|
904
|
-
}
|
|
905
|
-
expect(getTotalSteps(config)).toBeNull()
|
|
906
|
-
})
|
|
907
|
-
|
|
908
|
-
it('returns null for recurring schedule with endAt', () => {
|
|
909
|
-
const config: TaskScheduleConfig = {
|
|
910
|
-
type: 'recurring',
|
|
911
|
-
interval: 'daily',
|
|
912
|
-
time: '09:00',
|
|
913
|
-
timezone: 'UTC',
|
|
914
|
-
payload: {},
|
|
915
|
-
endAt: '2026-12-31T23:59:59Z'
|
|
916
|
-
}
|
|
917
|
-
// Even with endAt, we don't compute total steps for recurring
|
|
918
|
-
expect(getTotalSteps(config)).toBeNull()
|
|
919
|
-
})
|
|
920
|
-
|
|
921
|
-
it('returns correct count for relative schedule', () => {
|
|
922
|
-
const config: TaskScheduleConfig = {
|
|
923
|
-
type: 'relative',
|
|
924
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
925
|
-
items: [
|
|
926
|
-
{ offset: '+1d', payload: {} },
|
|
927
|
-
{ offset: '+3d', payload: {} },
|
|
928
|
-
{ offset: '+7d', payload: {} }
|
|
929
|
-
]
|
|
930
|
-
}
|
|
931
|
-
expect(getTotalSteps(config)).toBe(3)
|
|
932
|
-
})
|
|
933
|
-
|
|
934
|
-
it('returns correct count for absolute schedule', () => {
|
|
935
|
-
const config: TaskScheduleConfig = {
|
|
936
|
-
type: 'absolute',
|
|
937
|
-
items: [
|
|
938
|
-
{ runAt: '2026-01-15T09:00:00Z', payload: {} },
|
|
939
|
-
{ runAt: '2026-02-01T09:00:00Z', payload: {} }
|
|
940
|
-
]
|
|
941
|
-
}
|
|
942
|
-
expect(getTotalSteps(config)).toBe(2)
|
|
943
|
-
})
|
|
944
|
-
|
|
945
|
-
it('returns 1 for single-item schedule', () => {
|
|
946
|
-
const relativeConfig: TaskScheduleConfig = {
|
|
947
|
-
type: 'relative',
|
|
948
|
-
anchorAt: '2026-01-15T10:00:00Z',
|
|
949
|
-
items: [{ offset: '+1d', payload: {} }]
|
|
950
|
-
}
|
|
951
|
-
const absoluteConfig: TaskScheduleConfig = {
|
|
952
|
-
type: 'absolute',
|
|
953
|
-
items: [{ runAt: '2026-01-15T09:00:00Z', payload: {} }]
|
|
954
|
-
}
|
|
955
|
-
expect(getTotalSteps(relativeConfig)).toBe(1)
|
|
956
|
-
expect(getTotalSteps(absoluteConfig)).toBe(1)
|
|
957
|
-
})
|
|
958
|
-
})
|
|
959
|
-
|
|
960
|
-
describe('isValidOffset', () => {
|
|
961
|
-
it('returns true for valid day offset', () => {
|
|
962
|
-
expect(isValidOffset('+3d')).toBe(true)
|
|
963
|
-
expect(isValidOffset('-14d')).toBe(true)
|
|
964
|
-
expect(isValidOffset('+365d')).toBe(true)
|
|
965
|
-
})
|
|
966
|
-
|
|
967
|
-
it('returns true for valid hour offset', () => {
|
|
968
|
-
expect(isValidOffset('+2h')).toBe(true)
|
|
969
|
-
expect(isValidOffset('-24h')).toBe(true)
|
|
970
|
-
})
|
|
971
|
-
|
|
972
|
-
it('returns true for valid minute offset', () => {
|
|
973
|
-
expect(isValidOffset('+30m')).toBe(true)
|
|
974
|
-
expect(isValidOffset('-45m')).toBe(true)
|
|
975
|
-
})
|
|
976
|
-
|
|
977
|
-
it('returns false for missing sign', () => {
|
|
978
|
-
expect(isValidOffset('3d')).toBe(false)
|
|
979
|
-
expect(isValidOffset('2h')).toBe(false)
|
|
980
|
-
})
|
|
981
|
-
|
|
982
|
-
it('returns false for invalid unit', () => {
|
|
983
|
-
expect(isValidOffset('+3w')).toBe(false)
|
|
984
|
-
expect(isValidOffset('+30s')).toBe(false)
|
|
985
|
-
expect(isValidOffset('+1y')).toBe(false)
|
|
986
|
-
})
|
|
987
|
-
|
|
988
|
-
it('returns false for non-numeric value', () => {
|
|
989
|
-
expect(isValidOffset('+abcd')).toBe(false)
|
|
990
|
-
})
|
|
991
|
-
|
|
992
|
-
it('returns false for empty string', () => {
|
|
993
|
-
expect(isValidOffset('')).toBe(false)
|
|
994
|
-
})
|
|
995
|
-
|
|
996
|
-
it('returns false for spelled out offset', () => {
|
|
997
|
-
expect(isValidOffset('3 days')).toBe(false)
|
|
998
|
-
expect(isValidOffset('+3 days')).toBe(false)
|
|
999
|
-
})
|
|
1000
|
-
|
|
1001
|
-
it('returns false for decimal values', () => {
|
|
1002
|
-
expect(isValidOffset('+3.5d')).toBe(false)
|
|
1003
|
-
})
|
|
1004
|
-
|
|
1005
|
-
it('returns false for whitespace', () => {
|
|
1006
|
-
expect(isValidOffset(' +3d')).toBe(false)
|
|
1007
|
-
expect(isValidOffset('+3d ')).toBe(false)
|
|
1008
|
-
})
|
|
1009
|
-
})
|
|
1
|
+
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest'
|
|
2
|
+
import {
|
|
3
|
+
parseOffset,
|
|
4
|
+
applyOffset,
|
|
5
|
+
computeRetryNextRunAt,
|
|
6
|
+
computeNextRunAt,
|
|
7
|
+
getCurrentPayload,
|
|
8
|
+
getCurrentItemLabel,
|
|
9
|
+
isScheduleComplete,
|
|
10
|
+
getTotalSteps,
|
|
11
|
+
isValidOffset
|
|
12
|
+
} from '../utils'
|
|
13
|
+
import type { TaskScheduleConfig } from '../types'
|
|
14
|
+
|
|
15
|
+
describe('parseOffset', () => {
|
|
16
|
+
it('parses positive day offset', () => {
|
|
17
|
+
expect(parseOffset('+3d')).toEqual({ value: 3, unit: 'd' })
|
|
18
|
+
})
|
|
19
|
+
|
|
20
|
+
it('parses negative day offset', () => {
|
|
21
|
+
expect(parseOffset('-14d')).toEqual({ value: -14, unit: 'd' })
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
it('parses positive hour offset', () => {
|
|
25
|
+
expect(parseOffset('+2h')).toEqual({ value: 2, unit: 'h' })
|
|
26
|
+
})
|
|
27
|
+
|
|
28
|
+
it('parses negative hour offset', () => {
|
|
29
|
+
expect(parseOffset('-2h')).toEqual({ value: -2, unit: 'h' })
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
it('parses positive minute offset', () => {
|
|
33
|
+
expect(parseOffset('+30m')).toEqual({ value: 30, unit: 'm' })
|
|
34
|
+
})
|
|
35
|
+
|
|
36
|
+
it('parses negative minute offset', () => {
|
|
37
|
+
expect(parseOffset('-45m')).toEqual({ value: -45, unit: 'm' })
|
|
38
|
+
})
|
|
39
|
+
|
|
40
|
+
it('parses single digit offsets', () => {
|
|
41
|
+
expect(parseOffset('+1d')).toEqual({ value: 1, unit: 'd' })
|
|
42
|
+
expect(parseOffset('-1h')).toEqual({ value: -1, unit: 'h' })
|
|
43
|
+
expect(parseOffset('+5m')).toEqual({ value: 5, unit: 'm' })
|
|
44
|
+
})
|
|
45
|
+
|
|
46
|
+
it('parses large offsets', () => {
|
|
47
|
+
expect(parseOffset('+365d')).toEqual({ value: 365, unit: 'd' })
|
|
48
|
+
expect(parseOffset('-1000h')).toEqual({ value: -1000, unit: 'h' })
|
|
49
|
+
expect(parseOffset('+9999m')).toEqual({ value: 9999, unit: 'm' })
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
it('throws on invalid format - no sign', () => {
|
|
53
|
+
expect(() => parseOffset('3d')).toThrow('Invalid offset format')
|
|
54
|
+
})
|
|
55
|
+
|
|
56
|
+
it('throws on invalid format - invalid unit', () => {
|
|
57
|
+
expect(() => parseOffset('+3w')).toThrow('Invalid offset format')
|
|
58
|
+
})
|
|
59
|
+
|
|
60
|
+
it('throws on invalid format - invalid unit s', () => {
|
|
61
|
+
expect(() => parseOffset('+30s')).toThrow('Invalid offset format')
|
|
62
|
+
})
|
|
63
|
+
|
|
64
|
+
it('throws on invalid format - non-numeric', () => {
|
|
65
|
+
expect(() => parseOffset('+abcd')).toThrow('Invalid offset format')
|
|
66
|
+
})
|
|
67
|
+
|
|
68
|
+
it('throws on invalid format - spelled out', () => {
|
|
69
|
+
expect(() => parseOffset('3 days')).toThrow('Invalid offset format')
|
|
70
|
+
})
|
|
71
|
+
|
|
72
|
+
it('throws on empty string', () => {
|
|
73
|
+
expect(() => parseOffset('')).toThrow('Invalid offset format')
|
|
74
|
+
})
|
|
75
|
+
|
|
76
|
+
it('throws on whitespace', () => {
|
|
77
|
+
expect(() => parseOffset(' +3d ')).toThrow('Invalid offset format')
|
|
78
|
+
})
|
|
79
|
+
|
|
80
|
+
it('throws on decimal values', () => {
|
|
81
|
+
expect(() => parseOffset('+3.5d')).toThrow('Invalid offset format')
|
|
82
|
+
})
|
|
83
|
+
})
|
|
84
|
+
|
|
85
|
+
describe('applyOffset', () => {
|
|
86
|
+
const anchor = new Date('2026-01-15T10:00:00Z')
|
|
87
|
+
|
|
88
|
+
it('applies positive day offset', () => {
|
|
89
|
+
const result = applyOffset(anchor, '+3d')
|
|
90
|
+
expect(result.toISOString()).toBe('2026-01-18T10:00:00.000Z')
|
|
91
|
+
})
|
|
92
|
+
|
|
93
|
+
it('applies negative day offset', () => {
|
|
94
|
+
const result = applyOffset(anchor, '-7d')
|
|
95
|
+
expect(result.toISOString()).toBe('2026-01-08T10:00:00.000Z')
|
|
96
|
+
})
|
|
97
|
+
|
|
98
|
+
it('applies positive hour offset', () => {
|
|
99
|
+
const result = applyOffset(anchor, '+5h')
|
|
100
|
+
expect(result.toISOString()).toBe('2026-01-15T15:00:00.000Z')
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
it('applies negative hour offset', () => {
|
|
104
|
+
const result = applyOffset(anchor, '-2h')
|
|
105
|
+
expect(result.toISOString()).toBe('2026-01-15T08:00:00.000Z')
|
|
106
|
+
})
|
|
107
|
+
|
|
108
|
+
it('applies positive minute offset', () => {
|
|
109
|
+
const result = applyOffset(anchor, '+30m')
|
|
110
|
+
expect(result.toISOString()).toBe('2026-01-15T10:30:00.000Z')
|
|
111
|
+
})
|
|
112
|
+
|
|
113
|
+
it('applies negative minute offset', () => {
|
|
114
|
+
const result = applyOffset(anchor, '-45m')
|
|
115
|
+
expect(result.toISOString()).toBe('2026-01-15T09:15:00.000Z')
|
|
116
|
+
})
|
|
117
|
+
|
|
118
|
+
it('does not mutate original date', () => {
|
|
119
|
+
const original = new Date('2026-01-15T10:00:00Z')
|
|
120
|
+
applyOffset(original, '+3d')
|
|
121
|
+
expect(original.toISOString()).toBe('2026-01-15T10:00:00.000Z')
|
|
122
|
+
})
|
|
123
|
+
|
|
124
|
+
it('handles month boundary crossing (forward)', () => {
|
|
125
|
+
const endOfMonth = new Date('2026-01-31T12:00:00Z')
|
|
126
|
+
const result = applyOffset(endOfMonth, '+3d')
|
|
127
|
+
expect(result.toISOString()).toBe('2026-02-03T12:00:00.000Z')
|
|
128
|
+
})
|
|
129
|
+
|
|
130
|
+
it('handles month boundary crossing (backward)', () => {
|
|
131
|
+
const startOfMonth = new Date('2026-02-01T12:00:00Z')
|
|
132
|
+
const result = applyOffset(startOfMonth, '-3d')
|
|
133
|
+
expect(result.toISOString()).toBe('2026-01-29T12:00:00.000Z')
|
|
134
|
+
})
|
|
135
|
+
|
|
136
|
+
it('handles year boundary crossing', () => {
|
|
137
|
+
const endOfYear = new Date('2025-12-30T12:00:00Z')
|
|
138
|
+
const result = applyOffset(endOfYear, '+5d')
|
|
139
|
+
expect(result.toISOString()).toBe('2026-01-04T12:00:00.000Z')
|
|
140
|
+
})
|
|
141
|
+
|
|
142
|
+
it('handles hour overflow into next day', () => {
|
|
143
|
+
const lateNight = new Date('2026-01-15T22:00:00Z')
|
|
144
|
+
const result = applyOffset(lateNight, '+5h')
|
|
145
|
+
expect(result.toISOString()).toBe('2026-01-16T03:00:00.000Z')
|
|
146
|
+
})
|
|
147
|
+
|
|
148
|
+
it('handles minute overflow into next hour', () => {
|
|
149
|
+
const nearHour = new Date('2026-01-15T10:45:00Z')
|
|
150
|
+
const result = applyOffset(nearHour, '+30m')
|
|
151
|
+
expect(result.toISOString()).toBe('2026-01-15T11:15:00.000Z')
|
|
152
|
+
})
|
|
153
|
+
|
|
154
|
+
it('handles large day offset', () => {
|
|
155
|
+
const result = applyOffset(anchor, '+365d')
|
|
156
|
+
expect(result.toISOString()).toBe('2027-01-15T10:00:00.000Z')
|
|
157
|
+
})
|
|
158
|
+
})
|
|
159
|
+
|
|
160
|
+
describe('computeRetryNextRunAt', () => {
|
|
161
|
+
it('computes 1 minute delay for retry 0', () => {
|
|
162
|
+
const before = new Date()
|
|
163
|
+
const result = computeRetryNextRunAt(0)
|
|
164
|
+
const after = new Date()
|
|
165
|
+
|
|
166
|
+
// (0 + 1)^2 = 1 minute
|
|
167
|
+
const expectedMinDelay = 1 * 60 * 1000 // 1 minute in ms
|
|
168
|
+
const diff = result.getTime() - before.getTime()
|
|
169
|
+
|
|
170
|
+
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100) // Allow 100ms tolerance
|
|
171
|
+
expect(diff).toBeLessThanOrEqual(expectedMinDelay + (after.getTime() - before.getTime()) + 100)
|
|
172
|
+
})
|
|
173
|
+
|
|
174
|
+
it('computes 4 minute delay for retry 1', () => {
|
|
175
|
+
const before = new Date()
|
|
176
|
+
const result = computeRetryNextRunAt(1)
|
|
177
|
+
|
|
178
|
+
// (1 + 1)^2 = 4 minutes
|
|
179
|
+
const expectedMinDelay = 4 * 60 * 1000 // 4 minutes in ms
|
|
180
|
+
const diff = result.getTime() - before.getTime()
|
|
181
|
+
|
|
182
|
+
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100)
|
|
183
|
+
expect(diff).toBeLessThanOrEqual(expectedMinDelay + 1000) // Allow 1s tolerance
|
|
184
|
+
})
|
|
185
|
+
|
|
186
|
+
it('computes 9 minute delay for retry 2', () => {
|
|
187
|
+
const before = new Date()
|
|
188
|
+
const result = computeRetryNextRunAt(2)
|
|
189
|
+
|
|
190
|
+
// (2 + 1)^2 = 9 minutes
|
|
191
|
+
const expectedMinDelay = 9 * 60 * 1000 // 9 minutes in ms
|
|
192
|
+
const diff = result.getTime() - before.getTime()
|
|
193
|
+
|
|
194
|
+
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100)
|
|
195
|
+
expect(diff).toBeLessThanOrEqual(expectedMinDelay + 1000)
|
|
196
|
+
})
|
|
197
|
+
|
|
198
|
+
it('computes 16 minute delay for retry 3', () => {
|
|
199
|
+
const before = new Date()
|
|
200
|
+
const result = computeRetryNextRunAt(3)
|
|
201
|
+
|
|
202
|
+
// (3 + 1)^2 = 16 minutes
|
|
203
|
+
const expectedMinDelay = 16 * 60 * 1000 // 16 minutes in ms
|
|
204
|
+
const diff = result.getTime() - before.getTime()
|
|
205
|
+
|
|
206
|
+
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100)
|
|
207
|
+
expect(diff).toBeLessThanOrEqual(expectedMinDelay + 1000)
|
|
208
|
+
})
|
|
209
|
+
|
|
210
|
+
it('computes 25 minute delay for retry 4', () => {
|
|
211
|
+
const before = new Date()
|
|
212
|
+
const result = computeRetryNextRunAt(4)
|
|
213
|
+
|
|
214
|
+
// (4 + 1)^2 = 25 minutes
|
|
215
|
+
const expectedMinDelay = 25 * 60 * 1000 // 25 minutes in ms
|
|
216
|
+
const diff = result.getTime() - before.getTime()
|
|
217
|
+
|
|
218
|
+
expect(diff).toBeGreaterThanOrEqual(expectedMinDelay - 100)
|
|
219
|
+
expect(diff).toBeLessThanOrEqual(expectedMinDelay + 1000)
|
|
220
|
+
})
|
|
221
|
+
|
|
222
|
+
it('returns a Date object', () => {
|
|
223
|
+
const result = computeRetryNextRunAt(0)
|
|
224
|
+
expect(result).toBeInstanceOf(Date)
|
|
225
|
+
})
|
|
226
|
+
|
|
227
|
+
it('returns a future date', () => {
|
|
228
|
+
const now = new Date()
|
|
229
|
+
const result = computeRetryNextRunAt(0)
|
|
230
|
+
expect(result.getTime()).toBeGreaterThan(now.getTime())
|
|
231
|
+
})
|
|
232
|
+
})
|
|
233
|
+
|
|
234
|
+
describe('computeNextRunAt', () => {
|
|
235
|
+
describe('relative schedule', () => {
|
|
236
|
+
const config: TaskScheduleConfig = {
|
|
237
|
+
type: 'relative',
|
|
238
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
239
|
+
items: [
|
|
240
|
+
{ offset: '+1d', payload: {} },
|
|
241
|
+
{ offset: '+3d', payload: {} },
|
|
242
|
+
{ offset: '+7d', payload: {} }
|
|
243
|
+
]
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
it('computes first step correctly', () => {
|
|
247
|
+
const result = computeNextRunAt(config, 0)
|
|
248
|
+
expect(result?.toISOString()).toBe('2026-01-16T10:00:00.000Z')
|
|
249
|
+
})
|
|
250
|
+
|
|
251
|
+
it('computes second step correctly', () => {
|
|
252
|
+
const result = computeNextRunAt(config, 1)
|
|
253
|
+
expect(result?.toISOString()).toBe('2026-01-18T10:00:00.000Z')
|
|
254
|
+
})
|
|
255
|
+
|
|
256
|
+
it('computes third step correctly', () => {
|
|
257
|
+
const result = computeNextRunAt(config, 2)
|
|
258
|
+
expect(result?.toISOString()).toBe('2026-01-22T10:00:00.000Z')
|
|
259
|
+
})
|
|
260
|
+
|
|
261
|
+
it('returns null when sequence complete', () => {
|
|
262
|
+
const result = computeNextRunAt(config, 3)
|
|
263
|
+
expect(result).toBeNull()
|
|
264
|
+
})
|
|
265
|
+
|
|
266
|
+
it('returns null for step beyond sequence', () => {
|
|
267
|
+
const result = computeNextRunAt(config, 10)
|
|
268
|
+
expect(result).toBeNull()
|
|
269
|
+
})
|
|
270
|
+
|
|
271
|
+
it('handles negative offsets', () => {
|
|
272
|
+
const countdownConfig: TaskScheduleConfig = {
|
|
273
|
+
type: 'relative',
|
|
274
|
+
anchorAt: '2026-06-01T00:00:00Z',
|
|
275
|
+
items: [
|
|
276
|
+
{ offset: '-7d', payload: {} },
|
|
277
|
+
{ offset: '-1d', payload: {} }
|
|
278
|
+
]
|
|
279
|
+
}
|
|
280
|
+
expect(computeNextRunAt(countdownConfig, 0)?.toISOString()).toBe('2026-05-25T00:00:00.000Z')
|
|
281
|
+
expect(computeNextRunAt(countdownConfig, 1)?.toISOString()).toBe('2026-05-31T00:00:00.000Z')
|
|
282
|
+
})
|
|
283
|
+
})
|
|
284
|
+
|
|
285
|
+
describe('absolute schedule', () => {
|
|
286
|
+
const config: TaskScheduleConfig = {
|
|
287
|
+
type: 'absolute',
|
|
288
|
+
items: [
|
|
289
|
+
{ runAt: '2026-01-15T09:00:00Z', payload: {} },
|
|
290
|
+
{ runAt: '2026-02-01T09:00:00Z', payload: {} },
|
|
291
|
+
{ runAt: '2026-03-15T14:30:00Z', payload: {} }
|
|
292
|
+
]
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
it('returns first item datetime', () => {
|
|
296
|
+
const result = computeNextRunAt(config, 0)
|
|
297
|
+
expect(result?.toISOString()).toBe('2026-01-15T09:00:00.000Z')
|
|
298
|
+
})
|
|
299
|
+
|
|
300
|
+
it('returns second item datetime', () => {
|
|
301
|
+
const result = computeNextRunAt(config, 1)
|
|
302
|
+
expect(result?.toISOString()).toBe('2026-02-01T09:00:00.000Z')
|
|
303
|
+
})
|
|
304
|
+
|
|
305
|
+
it('returns third item datetime', () => {
|
|
306
|
+
const result = computeNextRunAt(config, 2)
|
|
307
|
+
expect(result?.toISOString()).toBe('2026-03-15T14:30:00.000Z')
|
|
308
|
+
})
|
|
309
|
+
|
|
310
|
+
it('returns null when sequence complete', () => {
|
|
311
|
+
const result = computeNextRunAt(config, 3)
|
|
312
|
+
expect(result).toBeNull()
|
|
313
|
+
})
|
|
314
|
+
|
|
315
|
+
it('returns null for step beyond sequence', () => {
|
|
316
|
+
const result = computeNextRunAt(config, 100)
|
|
317
|
+
expect(result).toBeNull()
|
|
318
|
+
})
|
|
319
|
+
})
|
|
320
|
+
|
|
321
|
+
describe('recurring schedule', () => {
|
|
322
|
+
it('computes next run for daily interval-based schedule', () => {
|
|
323
|
+
const config: TaskScheduleConfig = {
|
|
324
|
+
type: 'recurring',
|
|
325
|
+
interval: 'daily',
|
|
326
|
+
time: '09:00',
|
|
327
|
+
timezone: 'UTC',
|
|
328
|
+
payload: {}
|
|
329
|
+
}
|
|
330
|
+
// Test that it returns a date (exact value depends on current time)
|
|
331
|
+
const result = computeNextRunAt(config, 0)
|
|
332
|
+
expect(result).toBeInstanceOf(Date)
|
|
333
|
+
})
|
|
334
|
+
|
|
335
|
+
it('computes next run for weekly interval-based schedule', () => {
|
|
336
|
+
const config: TaskScheduleConfig = {
|
|
337
|
+
type: 'recurring',
|
|
338
|
+
interval: 'weekly',
|
|
339
|
+
time: '14:30',
|
|
340
|
+
timezone: 'UTC',
|
|
341
|
+
payload: {}
|
|
342
|
+
}
|
|
343
|
+
const result = computeNextRunAt(config, 0)
|
|
344
|
+
expect(result).toBeInstanceOf(Date)
|
|
345
|
+
})
|
|
346
|
+
|
|
347
|
+
it('computes next run for monthly interval-based schedule', () => {
|
|
348
|
+
const config: TaskScheduleConfig = {
|
|
349
|
+
type: 'recurring',
|
|
350
|
+
interval: 'monthly',
|
|
351
|
+
time: '08:00',
|
|
352
|
+
timezone: 'UTC',
|
|
353
|
+
payload: {}
|
|
354
|
+
}
|
|
355
|
+
const result = computeNextRunAt(config, 0)
|
|
356
|
+
expect(result).toBeInstanceOf(Date)
|
|
357
|
+
})
|
|
358
|
+
|
|
359
|
+
it('returns null if endAt has passed', () => {
|
|
360
|
+
const config: TaskScheduleConfig = {
|
|
361
|
+
type: 'recurring',
|
|
362
|
+
interval: 'daily',
|
|
363
|
+
time: '09:00',
|
|
364
|
+
timezone: 'UTC',
|
|
365
|
+
payload: {},
|
|
366
|
+
endAt: '2020-01-01T00:00:00Z' // Past date
|
|
367
|
+
}
|
|
368
|
+
const result = computeNextRunAt(config, 0, new Date('2025-01-01'))
|
|
369
|
+
expect(result).toBeNull()
|
|
370
|
+
})
|
|
371
|
+
|
|
372
|
+
it('returns next run when before endAt', () => {
|
|
373
|
+
const config: TaskScheduleConfig = {
|
|
374
|
+
type: 'recurring',
|
|
375
|
+
interval: 'daily',
|
|
376
|
+
time: '09:00',
|
|
377
|
+
timezone: 'UTC',
|
|
378
|
+
payload: {},
|
|
379
|
+
endAt: '2030-01-01T00:00:00Z' // Future date
|
|
380
|
+
}
|
|
381
|
+
const result = computeNextRunAt(config, 0, new Date('2025-01-01T08:00:00Z'))
|
|
382
|
+
expect(result).toBeInstanceOf(Date)
|
|
383
|
+
})
|
|
384
|
+
|
|
385
|
+
it('computes next run for cron expression', () => {
|
|
386
|
+
const config: TaskScheduleConfig = {
|
|
387
|
+
type: 'recurring',
|
|
388
|
+
cron: '0 9 * * 1',
|
|
389
|
+
timezone: 'UTC',
|
|
390
|
+
payload: {}
|
|
391
|
+
}
|
|
392
|
+
// Wednesday Jan 15, 2025 at 10:00 UTC → next Monday at 09:00 UTC = Jan 20
|
|
393
|
+
const fromTime = new Date('2025-01-15T10:00:00Z')
|
|
394
|
+
const result = computeNextRunAt(config, 0, fromTime)
|
|
395
|
+
expect(result).toBeInstanceOf(Date)
|
|
396
|
+
expect(result!.toISOString()).toBe('2025-01-20T09:00:00.000Z')
|
|
397
|
+
})
|
|
398
|
+
|
|
399
|
+
it('computes next run for multi-time cron (3x daily)', () => {
|
|
400
|
+
const config: TaskScheduleConfig = {
|
|
401
|
+
type: 'recurring',
|
|
402
|
+
cron: '0 4,16,22 * * *',
|
|
403
|
+
timezone: 'UTC',
|
|
404
|
+
payload: {}
|
|
405
|
+
}
|
|
406
|
+
// At 05:00 UTC → next is 16:00 same day
|
|
407
|
+
const result1 = computeNextRunAt(config, 0, new Date('2025-03-25T05:00:00Z'))
|
|
408
|
+
expect(result1!.toISOString()).toBe('2025-03-25T16:00:00.000Z')
|
|
409
|
+
|
|
410
|
+
// At 17:00 UTC → next is 22:00 same day
|
|
411
|
+
const result2 = computeNextRunAt(config, 0, new Date('2025-03-25T17:00:00Z'))
|
|
412
|
+
expect(result2!.toISOString()).toBe('2025-03-25T22:00:00.000Z')
|
|
413
|
+
|
|
414
|
+
// At 23:00 UTC → next is 04:00 next day
|
|
415
|
+
const result3 = computeNextRunAt(config, 0, new Date('2025-03-25T23:00:00Z'))
|
|
416
|
+
expect(result3!.toISOString()).toBe('2025-03-26T04:00:00.000Z')
|
|
417
|
+
})
|
|
418
|
+
|
|
419
|
+
it('respects timezone for cron expression', () => {
|
|
420
|
+
const config: TaskScheduleConfig = {
|
|
421
|
+
type: 'recurring',
|
|
422
|
+
cron: '0 9 * * *',
|
|
423
|
+
timezone: 'America/New_York',
|
|
424
|
+
payload: {}
|
|
425
|
+
}
|
|
426
|
+
// 12:00 UTC on Jan 15 = 07:00 EST → next 09:00 EST = 14:00 UTC
|
|
427
|
+
const fromTime = new Date('2025-01-15T12:00:00Z')
|
|
428
|
+
const result = computeNextRunAt(config, 0, fromTime)
|
|
429
|
+
expect(result).toBeInstanceOf(Date)
|
|
430
|
+
expect(result!.toISOString()).toBe('2025-01-15T14:00:00.000Z')
|
|
431
|
+
})
|
|
432
|
+
|
|
433
|
+
it('returns null for cron when endAt has passed', () => {
|
|
434
|
+
const config: TaskScheduleConfig = {
|
|
435
|
+
type: 'recurring',
|
|
436
|
+
cron: '0 9 * * *',
|
|
437
|
+
timezone: 'UTC',
|
|
438
|
+
payload: {},
|
|
439
|
+
endAt: '2025-01-10T00:00:00Z'
|
|
440
|
+
}
|
|
441
|
+
const result = computeNextRunAt(config, 0, new Date('2025-01-15T08:00:00Z'))
|
|
442
|
+
expect(result).toBeNull()
|
|
443
|
+
})
|
|
444
|
+
|
|
445
|
+
it('returns null for cron when next run exceeds endAt', () => {
|
|
446
|
+
const config: TaskScheduleConfig = {
|
|
447
|
+
type: 'recurring',
|
|
448
|
+
cron: '0 9 * * *',
|
|
449
|
+
timezone: 'UTC',
|
|
450
|
+
payload: {},
|
|
451
|
+
endAt: '2025-01-16T08:00:00Z'
|
|
452
|
+
}
|
|
453
|
+
// At 10:00 Jan 15 → next would be 09:00 Jan 16, but endAt is 08:00 Jan 16
|
|
454
|
+
const result = computeNextRunAt(config, 0, new Date('2025-01-15T10:00:00Z'))
|
|
455
|
+
expect(result).toBeNull()
|
|
456
|
+
})
|
|
457
|
+
|
|
458
|
+
describe('timezone handling', () => {
|
|
459
|
+
it('converts time correctly for America/New_York timezone', () => {
|
|
460
|
+
// Schedule at 09:00 New York time
|
|
461
|
+
const config: TaskScheduleConfig = {
|
|
462
|
+
type: 'recurring',
|
|
463
|
+
interval: 'daily',
|
|
464
|
+
time: '09:00',
|
|
465
|
+
timezone: 'America/New_York',
|
|
466
|
+
payload: {}
|
|
467
|
+
}
|
|
468
|
+
// Test at 12:00 UTC on Jan 15, 2026 (07:00 EST)
|
|
469
|
+
// 09:00 EST = 14:00 UTC (EST is UTC-5 in winter)
|
|
470
|
+
const fromTime = new Date('2026-01-15T12:00:00Z')
|
|
471
|
+
const result = computeNextRunAt(config, 0, fromTime)
|
|
472
|
+
|
|
473
|
+
expect(result).toBeInstanceOf(Date)
|
|
474
|
+
// The result should be 14:00 UTC (09:00 EST)
|
|
475
|
+
expect(result?.getUTCHours()).toBe(14)
|
|
476
|
+
expect(result?.getUTCMinutes()).toBe(0)
|
|
477
|
+
})
|
|
478
|
+
|
|
479
|
+
it('converts time correctly for Europe/London timezone', () => {
|
|
480
|
+
// Schedule at 10:00 London time
|
|
481
|
+
const config: TaskScheduleConfig = {
|
|
482
|
+
type: 'recurring',
|
|
483
|
+
interval: 'daily',
|
|
484
|
+
time: '10:00',
|
|
485
|
+
timezone: 'Europe/London',
|
|
486
|
+
payload: {}
|
|
487
|
+
}
|
|
488
|
+
// Test at 08:00 UTC on Jan 15, 2026 (08:00 GMT in winter, no DST)
|
|
489
|
+
// 10:00 GMT = 10:00 UTC
|
|
490
|
+
const fromTime = new Date('2026-01-15T08:00:00Z')
|
|
491
|
+
const result = computeNextRunAt(config, 0, fromTime)
|
|
492
|
+
|
|
493
|
+
expect(result).toBeInstanceOf(Date)
|
|
494
|
+
// The result should be 10:00 UTC (10:00 GMT)
|
|
495
|
+
expect(result?.getUTCHours()).toBe(10)
|
|
496
|
+
expect(result?.getUTCMinutes()).toBe(0)
|
|
497
|
+
})
|
|
498
|
+
|
|
499
|
+
it('converts time correctly for Asia/Tokyo timezone', () => {
|
|
500
|
+
// Schedule at 09:00 Tokyo time
|
|
501
|
+
const config: TaskScheduleConfig = {
|
|
502
|
+
type: 'recurring',
|
|
503
|
+
interval: 'daily',
|
|
504
|
+
time: '09:00',
|
|
505
|
+
timezone: 'Asia/Tokyo',
|
|
506
|
+
payload: {}
|
|
507
|
+
}
|
|
508
|
+
// Test at 22:00 UTC on Jan 15, 2026 (07:00 JST next day)
|
|
509
|
+
// 09:00 JST = 00:00 UTC (JST is UTC+9)
|
|
510
|
+
const fromTime = new Date('2026-01-15T22:00:00Z')
|
|
511
|
+
const result = computeNextRunAt(config, 0, fromTime)
|
|
512
|
+
|
|
513
|
+
expect(result).toBeInstanceOf(Date)
|
|
514
|
+
// The result should be 00:00 UTC on Jan 16 (09:00 JST)
|
|
515
|
+
expect(result?.getUTCHours()).toBe(0)
|
|
516
|
+
expect(result?.getUTCMinutes()).toBe(0)
|
|
517
|
+
expect(result?.getUTCDate()).toBe(16)
|
|
518
|
+
})
|
|
519
|
+
|
|
520
|
+
it('defaults to UTC when timezone not provided', () => {
|
|
521
|
+
const config: TaskScheduleConfig = {
|
|
522
|
+
type: 'recurring',
|
|
523
|
+
interval: 'daily',
|
|
524
|
+
time: '09:00',
|
|
525
|
+
timezone: 'UTC',
|
|
526
|
+
payload: {}
|
|
527
|
+
}
|
|
528
|
+
// Test at 08:00 UTC
|
|
529
|
+
const fromTime = new Date('2026-01-15T08:00:00Z')
|
|
530
|
+
const result = computeNextRunAt(config, 0, fromTime)
|
|
531
|
+
|
|
532
|
+
expect(result).toBeInstanceOf(Date)
|
|
533
|
+
// Should return 09:00 UTC same day
|
|
534
|
+
expect(result?.getUTCHours()).toBe(9)
|
|
535
|
+
expect(result?.getUTCMinutes()).toBe(0)
|
|
536
|
+
expect(result?.getUTCDate()).toBe(15)
|
|
537
|
+
})
|
|
538
|
+
|
|
539
|
+
it('moves to next day if time has passed in timezone', () => {
|
|
540
|
+
// Schedule at 09:00 New York time
|
|
541
|
+
const config: TaskScheduleConfig = {
|
|
542
|
+
type: 'recurring',
|
|
543
|
+
interval: 'daily',
|
|
544
|
+
time: '09:00',
|
|
545
|
+
timezone: 'America/New_York',
|
|
546
|
+
payload: {}
|
|
547
|
+
}
|
|
548
|
+
// Test at 16:00 UTC on Jan 15, 2026 (11:00 EST - after scheduled time)
|
|
549
|
+
// Should schedule for 09:00 EST next day = 14:00 UTC Jan 16
|
|
550
|
+
const fromTime = new Date('2026-01-15T16:00:00Z')
|
|
551
|
+
const result = computeNextRunAt(config, 0, fromTime)
|
|
552
|
+
|
|
553
|
+
expect(result).toBeInstanceOf(Date)
|
|
554
|
+
expect(result?.getUTCHours()).toBe(14)
|
|
555
|
+
expect(result?.getUTCDate()).toBe(16)
|
|
556
|
+
})
|
|
557
|
+
|
|
558
|
+
describe('with fake timers', () => {
|
|
559
|
+
beforeEach(() => {
|
|
560
|
+
vi.useFakeTimers()
|
|
561
|
+
})
|
|
562
|
+
|
|
563
|
+
afterEach(() => {
|
|
564
|
+
vi.useRealTimers()
|
|
565
|
+
})
|
|
566
|
+
|
|
567
|
+
it('computes next run in America/New_York timezone with deterministic time', () => {
|
|
568
|
+
// Set system time to 2026-01-15T13:00:00Z (8 AM EST)
|
|
569
|
+
vi.setSystemTime(new Date('2026-01-15T13:00:00Z'))
|
|
570
|
+
|
|
571
|
+
const config: TaskScheduleConfig = {
|
|
572
|
+
type: 'recurring',
|
|
573
|
+
interval: 'daily',
|
|
574
|
+
time: '09:00', // 9 AM in New York
|
|
575
|
+
timezone: 'America/New_York',
|
|
576
|
+
payload: {}
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
// 9 AM EST = 14:00 UTC (during standard time, EST is UTC-5)
|
|
580
|
+
const result = computeNextRunAt(config, 0)
|
|
581
|
+
expect(result?.toISOString()).toBe('2026-01-15T14:00:00.000Z')
|
|
582
|
+
})
|
|
583
|
+
|
|
584
|
+
it('computes next run in Europe/London timezone with deterministic time', () => {
|
|
585
|
+
// Set system time to 2026-01-15T08:30:00Z (8:30 AM GMT)
|
|
586
|
+
vi.setSystemTime(new Date('2026-01-15T08:30:00Z'))
|
|
587
|
+
|
|
588
|
+
const config: TaskScheduleConfig = {
|
|
589
|
+
type: 'recurring',
|
|
590
|
+
interval: 'daily',
|
|
591
|
+
time: '10:00', // 10 AM in London
|
|
592
|
+
timezone: 'Europe/London',
|
|
593
|
+
payload: {}
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
// 10 AM GMT = 10:00 UTC (during winter, no DST offset)
|
|
597
|
+
const result = computeNextRunAt(config, 0)
|
|
598
|
+
expect(result?.toISOString()).toBe('2026-01-15T10:00:00.000Z')
|
|
599
|
+
})
|
|
600
|
+
|
|
601
|
+
it('handles DST transition for America/New_York (spring forward)', () => {
|
|
602
|
+
// March 8, 2026 is when DST starts in the US (clocks spring forward at 2 AM)
|
|
603
|
+
// Set time to just before DST transition
|
|
604
|
+
vi.setSystemTime(new Date('2026-03-08T06:00:00Z')) // 1 AM EST
|
|
605
|
+
|
|
606
|
+
const config: TaskScheduleConfig = {
|
|
607
|
+
type: 'recurring',
|
|
608
|
+
interval: 'daily',
|
|
609
|
+
time: '09:00', // 9 AM in New York
|
|
610
|
+
timezone: 'America/New_York',
|
|
611
|
+
payload: {}
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
// After DST, 9 AM EDT = 13:00 UTC (EDT is UTC-4)
|
|
615
|
+
const result = computeNextRunAt(config, 0)
|
|
616
|
+
expect(result?.toISOString()).toBe('2026-03-08T13:00:00.000Z')
|
|
617
|
+
})
|
|
618
|
+
|
|
619
|
+
it('handles DST transition for America/New_York (fall back)', () => {
|
|
620
|
+
// November 1, 2026 is when DST ends in the US (clocks fall back at 2 AM)
|
|
621
|
+
// Set time to just after DST ends
|
|
622
|
+
vi.setSystemTime(new Date('2026-11-01T07:00:00Z')) // 2 AM EST (after fall back)
|
|
623
|
+
|
|
624
|
+
const config: TaskScheduleConfig = {
|
|
625
|
+
type: 'recurring',
|
|
626
|
+
interval: 'daily',
|
|
627
|
+
time: '09:00', // 9 AM in New York
|
|
628
|
+
timezone: 'America/New_York',
|
|
629
|
+
payload: {}
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
// After DST ends, 9 AM EST = 14:00 UTC (EST is UTC-5)
|
|
633
|
+
const result = computeNextRunAt(config, 0)
|
|
634
|
+
expect(result?.toISOString()).toBe('2026-11-01T14:00:00.000Z')
|
|
635
|
+
})
|
|
636
|
+
|
|
637
|
+
it('defaults to UTC behavior when timezone is set to UTC', () => {
|
|
638
|
+
// Set system time to 2026-01-15T07:30:00Z
|
|
639
|
+
vi.setSystemTime(new Date('2026-01-15T07:30:00Z'))
|
|
640
|
+
|
|
641
|
+
const config: TaskScheduleConfig = {
|
|
642
|
+
type: 'recurring',
|
|
643
|
+
interval: 'daily',
|
|
644
|
+
time: '09:00',
|
|
645
|
+
timezone: 'UTC',
|
|
646
|
+
payload: {}
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
// 9 AM UTC should be exactly 09:00:00Z
|
|
650
|
+
const result = computeNextRunAt(config, 0)
|
|
651
|
+
expect(result?.toISOString()).toBe('2026-01-15T09:00:00.000Z')
|
|
652
|
+
})
|
|
653
|
+
|
|
654
|
+
it('stores result as UTC regardless of input timezone', () => {
|
|
655
|
+
vi.setSystemTime(new Date('2026-01-15T00:00:00Z'))
|
|
656
|
+
|
|
657
|
+
const config: TaskScheduleConfig = {
|
|
658
|
+
type: 'recurring',
|
|
659
|
+
interval: 'daily',
|
|
660
|
+
time: '15:00', // 3 PM in Tokyo
|
|
661
|
+
timezone: 'Asia/Tokyo',
|
|
662
|
+
payload: {}
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
// 15:00 JST = 06:00 UTC (JST is UTC+9)
|
|
666
|
+
const result = computeNextRunAt(config, 0)
|
|
667
|
+
|
|
668
|
+
// Verify the result is stored as a proper UTC ISO string
|
|
669
|
+
expect(result?.toISOString()).toBe('2026-01-15T06:00:00.000Z')
|
|
670
|
+
// Verify it's a Date object that can be used directly
|
|
671
|
+
expect(result).toBeInstanceOf(Date)
|
|
672
|
+
expect(result?.getUTCHours()).toBe(6)
|
|
673
|
+
expect(result?.getUTCMinutes()).toBe(0)
|
|
674
|
+
})
|
|
675
|
+
})
|
|
676
|
+
})
|
|
677
|
+
})
|
|
678
|
+
})
|
|
679
|
+
|
|
680
|
+
describe('getCurrentPayload', () => {
|
|
681
|
+
it('returns payload for recurring schedule', () => {
|
|
682
|
+
const config: TaskScheduleConfig = {
|
|
683
|
+
type: 'recurring',
|
|
684
|
+
interval: 'daily',
|
|
685
|
+
time: '09:00',
|
|
686
|
+
timezone: 'UTC',
|
|
687
|
+
payload: { key: 'value', reportType: 'daily' }
|
|
688
|
+
}
|
|
689
|
+
expect(getCurrentPayload(config, 0)).toEqual({ key: 'value', reportType: 'daily' })
|
|
690
|
+
// Recurring schedules always return the same payload regardless of step
|
|
691
|
+
expect(getCurrentPayload(config, 100)).toEqual({ key: 'value', reportType: 'daily' })
|
|
692
|
+
})
|
|
693
|
+
|
|
694
|
+
it('returns correct item payload for relative schedule', () => {
|
|
695
|
+
const config: TaskScheduleConfig = {
|
|
696
|
+
type: 'relative',
|
|
697
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
698
|
+
items: [
|
|
699
|
+
{ offset: '+1d', payload: { step: 1, tone: 'friendly' } },
|
|
700
|
+
{ offset: '+3d', payload: { step: 2, tone: 'casual' } },
|
|
701
|
+
{ offset: '+7d', payload: { step: 3, tone: 'urgent' } }
|
|
702
|
+
]
|
|
703
|
+
}
|
|
704
|
+
expect(getCurrentPayload(config, 0)).toEqual({ step: 1, tone: 'friendly' })
|
|
705
|
+
expect(getCurrentPayload(config, 1)).toEqual({ step: 2, tone: 'casual' })
|
|
706
|
+
expect(getCurrentPayload(config, 2)).toEqual({ step: 3, tone: 'urgent' })
|
|
707
|
+
})
|
|
708
|
+
|
|
709
|
+
it('returns correct item payload for absolute schedule', () => {
|
|
710
|
+
const config: TaskScheduleConfig = {
|
|
711
|
+
type: 'absolute',
|
|
712
|
+
items: [
|
|
713
|
+
{ runAt: '2026-01-15T09:00:00Z', payload: { phase: 'alpha' } },
|
|
714
|
+
{ runAt: '2026-02-01T09:00:00Z', payload: { phase: 'beta' } }
|
|
715
|
+
]
|
|
716
|
+
}
|
|
717
|
+
expect(getCurrentPayload(config, 0)).toEqual({ phase: 'alpha' })
|
|
718
|
+
expect(getCurrentPayload(config, 1)).toEqual({ phase: 'beta' })
|
|
719
|
+
})
|
|
720
|
+
|
|
721
|
+
it('returns null for completed relative sequence', () => {
|
|
722
|
+
const config: TaskScheduleConfig = {
|
|
723
|
+
type: 'relative',
|
|
724
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
725
|
+
items: [{ offset: '+1d', payload: { test: true } }]
|
|
726
|
+
}
|
|
727
|
+
expect(getCurrentPayload(config, 1)).toBeNull()
|
|
728
|
+
expect(getCurrentPayload(config, 10)).toBeNull()
|
|
729
|
+
})
|
|
730
|
+
|
|
731
|
+
it('returns null for completed absolute sequence', () => {
|
|
732
|
+
const config: TaskScheduleConfig = {
|
|
733
|
+
type: 'absolute',
|
|
734
|
+
items: [{ runAt: '2026-01-15T09:00:00Z', payload: { test: true } }]
|
|
735
|
+
}
|
|
736
|
+
expect(getCurrentPayload(config, 1)).toBeNull()
|
|
737
|
+
expect(getCurrentPayload(config, 10)).toBeNull()
|
|
738
|
+
})
|
|
739
|
+
|
|
740
|
+
it('handles empty payload object', () => {
|
|
741
|
+
const config: TaskScheduleConfig = {
|
|
742
|
+
type: 'relative',
|
|
743
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
744
|
+
items: [{ offset: '+1d', payload: {} }]
|
|
745
|
+
}
|
|
746
|
+
expect(getCurrentPayload(config, 0)).toEqual({})
|
|
747
|
+
})
|
|
748
|
+
})
|
|
749
|
+
|
|
750
|
+
describe('getCurrentItemLabel', () => {
|
|
751
|
+
it('returns undefined for recurring schedule', () => {
|
|
752
|
+
const config: TaskScheduleConfig = {
|
|
753
|
+
type: 'recurring',
|
|
754
|
+
interval: 'daily',
|
|
755
|
+
time: '09:00',
|
|
756
|
+
timezone: 'UTC',
|
|
757
|
+
payload: {}
|
|
758
|
+
}
|
|
759
|
+
expect(getCurrentItemLabel(config, 0)).toBeUndefined()
|
|
760
|
+
expect(getCurrentItemLabel(config, 100)).toBeUndefined()
|
|
761
|
+
})
|
|
762
|
+
|
|
763
|
+
it('returns label for relative schedule item', () => {
|
|
764
|
+
const config: TaskScheduleConfig = {
|
|
765
|
+
type: 'relative',
|
|
766
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
767
|
+
items: [
|
|
768
|
+
{ offset: '+1d', payload: {}, label: 'Thank you email' },
|
|
769
|
+
{ offset: '+3d', payload: {}, label: 'Follow up' },
|
|
770
|
+
{ offset: '+7d', payload: {} } // No label
|
|
771
|
+
]
|
|
772
|
+
}
|
|
773
|
+
expect(getCurrentItemLabel(config, 0)).toBe('Thank you email')
|
|
774
|
+
expect(getCurrentItemLabel(config, 1)).toBe('Follow up')
|
|
775
|
+
expect(getCurrentItemLabel(config, 2)).toBeUndefined()
|
|
776
|
+
})
|
|
777
|
+
|
|
778
|
+
it('returns label for absolute schedule item', () => {
|
|
779
|
+
const config: TaskScheduleConfig = {
|
|
780
|
+
type: 'absolute',
|
|
781
|
+
items: [
|
|
782
|
+
{ runAt: '2026-01-15T09:00:00Z', payload: {}, label: 'Phase 1 Launch' },
|
|
783
|
+
{ runAt: '2026-02-01T09:00:00Z', payload: {} } // No label
|
|
784
|
+
]
|
|
785
|
+
}
|
|
786
|
+
expect(getCurrentItemLabel(config, 0)).toBe('Phase 1 Launch')
|
|
787
|
+
expect(getCurrentItemLabel(config, 1)).toBeUndefined()
|
|
788
|
+
})
|
|
789
|
+
|
|
790
|
+
it('returns undefined for out of range step in relative schedule', () => {
|
|
791
|
+
const config: TaskScheduleConfig = {
|
|
792
|
+
type: 'relative',
|
|
793
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
794
|
+
items: [{ offset: '+1d', payload: {}, label: 'Test' }]
|
|
795
|
+
}
|
|
796
|
+
expect(getCurrentItemLabel(config, 1)).toBeUndefined()
|
|
797
|
+
expect(getCurrentItemLabel(config, 10)).toBeUndefined()
|
|
798
|
+
})
|
|
799
|
+
|
|
800
|
+
it('returns undefined for out of range step in absolute schedule', () => {
|
|
801
|
+
const config: TaskScheduleConfig = {
|
|
802
|
+
type: 'absolute',
|
|
803
|
+
items: [{ runAt: '2026-01-15T09:00:00Z', payload: {}, label: 'Test' }]
|
|
804
|
+
}
|
|
805
|
+
expect(getCurrentItemLabel(config, 1)).toBeUndefined()
|
|
806
|
+
})
|
|
807
|
+
})
|
|
808
|
+
|
|
809
|
+
describe('isScheduleComplete', () => {
|
|
810
|
+
it('returns false for indefinite recurring schedule', () => {
|
|
811
|
+
const config: TaskScheduleConfig = {
|
|
812
|
+
type: 'recurring',
|
|
813
|
+
interval: 'daily',
|
|
814
|
+
time: '09:00',
|
|
815
|
+
timezone: 'UTC',
|
|
816
|
+
payload: {}
|
|
817
|
+
}
|
|
818
|
+
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
819
|
+
expect(isScheduleComplete(config, 100)).toBe(false)
|
|
820
|
+
expect(isScheduleComplete(config, 1000)).toBe(false)
|
|
821
|
+
})
|
|
822
|
+
|
|
823
|
+
it('returns false for recurring with null endAt', () => {
|
|
824
|
+
const config: TaskScheduleConfig = {
|
|
825
|
+
type: 'recurring',
|
|
826
|
+
interval: 'daily',
|
|
827
|
+
time: '09:00',
|
|
828
|
+
timezone: 'UTC',
|
|
829
|
+
payload: {},
|
|
830
|
+
endAt: null
|
|
831
|
+
}
|
|
832
|
+
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
833
|
+
})
|
|
834
|
+
|
|
835
|
+
it('returns true when relative sequence is complete', () => {
|
|
836
|
+
const config: TaskScheduleConfig = {
|
|
837
|
+
type: 'relative',
|
|
838
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
839
|
+
items: [
|
|
840
|
+
{ offset: '+1d', payload: {} },
|
|
841
|
+
{ offset: '+3d', payload: {} }
|
|
842
|
+
]
|
|
843
|
+
}
|
|
844
|
+
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
845
|
+
expect(isScheduleComplete(config, 1)).toBe(false)
|
|
846
|
+
expect(isScheduleComplete(config, 2)).toBe(true)
|
|
847
|
+
expect(isScheduleComplete(config, 10)).toBe(true)
|
|
848
|
+
})
|
|
849
|
+
|
|
850
|
+
it('returns true when absolute sequence is complete', () => {
|
|
851
|
+
const config: TaskScheduleConfig = {
|
|
852
|
+
type: 'absolute',
|
|
853
|
+
items: [
|
|
854
|
+
{ runAt: '2026-01-15T09:00:00Z', payload: {} },
|
|
855
|
+
{ runAt: '2026-02-01T09:00:00Z', payload: {} }
|
|
856
|
+
]
|
|
857
|
+
}
|
|
858
|
+
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
859
|
+
expect(isScheduleComplete(config, 1)).toBe(false)
|
|
860
|
+
expect(isScheduleComplete(config, 2)).toBe(true)
|
|
861
|
+
})
|
|
862
|
+
|
|
863
|
+
it('returns true for single-item relative sequence at step 1', () => {
|
|
864
|
+
const config: TaskScheduleConfig = {
|
|
865
|
+
type: 'relative',
|
|
866
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
867
|
+
items: [{ offset: '+1d', payload: {} }]
|
|
868
|
+
}
|
|
869
|
+
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
870
|
+
expect(isScheduleComplete(config, 1)).toBe(true)
|
|
871
|
+
})
|
|
872
|
+
|
|
873
|
+
it('returns true for single-item absolute sequence at step 1', () => {
|
|
874
|
+
const config: TaskScheduleConfig = {
|
|
875
|
+
type: 'absolute',
|
|
876
|
+
items: [{ runAt: '2026-01-15T09:00:00Z', payload: {} }]
|
|
877
|
+
}
|
|
878
|
+
expect(isScheduleComplete(config, 1)).toBe(true)
|
|
879
|
+
})
|
|
880
|
+
|
|
881
|
+
// Note: Testing recurring with endAt in the past is time-dependent
|
|
882
|
+
// In production, this would compare endAt against current time
|
|
883
|
+
it('handles recurring schedule with future endAt', () => {
|
|
884
|
+
const config: TaskScheduleConfig = {
|
|
885
|
+
type: 'recurring',
|
|
886
|
+
interval: 'daily',
|
|
887
|
+
time: '09:00',
|
|
888
|
+
timezone: 'UTC',
|
|
889
|
+
payload: {},
|
|
890
|
+
endAt: '2099-12-31T23:59:59Z' // Far future
|
|
891
|
+
}
|
|
892
|
+
expect(isScheduleComplete(config, 0)).toBe(false)
|
|
893
|
+
})
|
|
894
|
+
})
|
|
895
|
+
|
|
896
|
+
describe('getTotalSteps', () => {
|
|
897
|
+
it('returns null for recurring schedule (indefinite)', () => {
|
|
898
|
+
const config: TaskScheduleConfig = {
|
|
899
|
+
type: 'recurring',
|
|
900
|
+
interval: 'daily',
|
|
901
|
+
time: '09:00',
|
|
902
|
+
timezone: 'UTC',
|
|
903
|
+
payload: {}
|
|
904
|
+
}
|
|
905
|
+
expect(getTotalSteps(config)).toBeNull()
|
|
906
|
+
})
|
|
907
|
+
|
|
908
|
+
it('returns null for recurring schedule with endAt', () => {
|
|
909
|
+
const config: TaskScheduleConfig = {
|
|
910
|
+
type: 'recurring',
|
|
911
|
+
interval: 'daily',
|
|
912
|
+
time: '09:00',
|
|
913
|
+
timezone: 'UTC',
|
|
914
|
+
payload: {},
|
|
915
|
+
endAt: '2026-12-31T23:59:59Z'
|
|
916
|
+
}
|
|
917
|
+
// Even with endAt, we don't compute total steps for recurring
|
|
918
|
+
expect(getTotalSteps(config)).toBeNull()
|
|
919
|
+
})
|
|
920
|
+
|
|
921
|
+
it('returns correct count for relative schedule', () => {
|
|
922
|
+
const config: TaskScheduleConfig = {
|
|
923
|
+
type: 'relative',
|
|
924
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
925
|
+
items: [
|
|
926
|
+
{ offset: '+1d', payload: {} },
|
|
927
|
+
{ offset: '+3d', payload: {} },
|
|
928
|
+
{ offset: '+7d', payload: {} }
|
|
929
|
+
]
|
|
930
|
+
}
|
|
931
|
+
expect(getTotalSteps(config)).toBe(3)
|
|
932
|
+
})
|
|
933
|
+
|
|
934
|
+
it('returns correct count for absolute schedule', () => {
|
|
935
|
+
const config: TaskScheduleConfig = {
|
|
936
|
+
type: 'absolute',
|
|
937
|
+
items: [
|
|
938
|
+
{ runAt: '2026-01-15T09:00:00Z', payload: {} },
|
|
939
|
+
{ runAt: '2026-02-01T09:00:00Z', payload: {} }
|
|
940
|
+
]
|
|
941
|
+
}
|
|
942
|
+
expect(getTotalSteps(config)).toBe(2)
|
|
943
|
+
})
|
|
944
|
+
|
|
945
|
+
it('returns 1 for single-item schedule', () => {
|
|
946
|
+
const relativeConfig: TaskScheduleConfig = {
|
|
947
|
+
type: 'relative',
|
|
948
|
+
anchorAt: '2026-01-15T10:00:00Z',
|
|
949
|
+
items: [{ offset: '+1d', payload: {} }]
|
|
950
|
+
}
|
|
951
|
+
const absoluteConfig: TaskScheduleConfig = {
|
|
952
|
+
type: 'absolute',
|
|
953
|
+
items: [{ runAt: '2026-01-15T09:00:00Z', payload: {} }]
|
|
954
|
+
}
|
|
955
|
+
expect(getTotalSteps(relativeConfig)).toBe(1)
|
|
956
|
+
expect(getTotalSteps(absoluteConfig)).toBe(1)
|
|
957
|
+
})
|
|
958
|
+
})
|
|
959
|
+
|
|
960
|
+
describe('isValidOffset', () => {
|
|
961
|
+
it('returns true for valid day offset', () => {
|
|
962
|
+
expect(isValidOffset('+3d')).toBe(true)
|
|
963
|
+
expect(isValidOffset('-14d')).toBe(true)
|
|
964
|
+
expect(isValidOffset('+365d')).toBe(true)
|
|
965
|
+
})
|
|
966
|
+
|
|
967
|
+
it('returns true for valid hour offset', () => {
|
|
968
|
+
expect(isValidOffset('+2h')).toBe(true)
|
|
969
|
+
expect(isValidOffset('-24h')).toBe(true)
|
|
970
|
+
})
|
|
971
|
+
|
|
972
|
+
it('returns true for valid minute offset', () => {
|
|
973
|
+
expect(isValidOffset('+30m')).toBe(true)
|
|
974
|
+
expect(isValidOffset('-45m')).toBe(true)
|
|
975
|
+
})
|
|
976
|
+
|
|
977
|
+
it('returns false for missing sign', () => {
|
|
978
|
+
expect(isValidOffset('3d')).toBe(false)
|
|
979
|
+
expect(isValidOffset('2h')).toBe(false)
|
|
980
|
+
})
|
|
981
|
+
|
|
982
|
+
it('returns false for invalid unit', () => {
|
|
983
|
+
expect(isValidOffset('+3w')).toBe(false)
|
|
984
|
+
expect(isValidOffset('+30s')).toBe(false)
|
|
985
|
+
expect(isValidOffset('+1y')).toBe(false)
|
|
986
|
+
})
|
|
987
|
+
|
|
988
|
+
it('returns false for non-numeric value', () => {
|
|
989
|
+
expect(isValidOffset('+abcd')).toBe(false)
|
|
990
|
+
})
|
|
991
|
+
|
|
992
|
+
it('returns false for empty string', () => {
|
|
993
|
+
expect(isValidOffset('')).toBe(false)
|
|
994
|
+
})
|
|
995
|
+
|
|
996
|
+
it('returns false for spelled out offset', () => {
|
|
997
|
+
expect(isValidOffset('3 days')).toBe(false)
|
|
998
|
+
expect(isValidOffset('+3 days')).toBe(false)
|
|
999
|
+
})
|
|
1000
|
+
|
|
1001
|
+
it('returns false for decimal values', () => {
|
|
1002
|
+
expect(isValidOffset('+3.5d')).toBe(false)
|
|
1003
|
+
})
|
|
1004
|
+
|
|
1005
|
+
it('returns false for whitespace', () => {
|
|
1006
|
+
expect(isValidOffset(' +3d')).toBe(false)
|
|
1007
|
+
expect(isValidOffset('+3d ')).toBe(false)
|
|
1008
|
+
})
|
|
1009
|
+
})
|