-
Notifications
You must be signed in to change notification settings - Fork 1
/
schedule_test.go
95 lines (79 loc) · 2.42 KB
/
schedule_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package qstash
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestSchedule(t *testing.T) {
client := NewClientWithEnv()
// Create a schedule
scheduleId, err := client.Schedules().CreateJSON(ScheduleJSONOptions{
Cron: "1 1 1 1 1",
Destination: "https://example.com",
Body: map[string]any{
"ex_key": "ex_value",
},
})
assert.NoError(t, err)
assert.NotEmpty(t, scheduleId)
// Get a schedule
schedule, err := client.Schedules().Get(scheduleId)
assert.NoError(t, err)
assert.Equal(t, schedule.Id, scheduleId)
assert.Equal(t, schedule.Cron, "1 1 1 1 1")
assert.Equal(t, schedule.Destination, "https://example.com")
// List all schedules
schedules, err := client.Schedules().List()
assert.NoError(t, err)
assert.GreaterOrEqual(t, len(schedules), 1)
scheduleIds := make([]string, len(schedules))
for idx, s := range schedules {
scheduleIds[idx] = s.Id
}
assert.Contains(t, scheduleIds, scheduleId)
// Delete the schedule
err = client.Schedules().Delete(scheduleId)
assert.NoError(t, err)
schedules, err = client.Schedules().List()
assert.NoError(t, err)
scheduleIds = make([]string, len(schedules))
for idx, s := range schedules {
scheduleIds[idx] = s.Id
}
assert.NotContains(t, schedules, scheduleId)
}
func TestSchedulePauseAndResume(t *testing.T) {
client := NewClientWithEnv()
// Create a schedule
scheduleId, err := client.Schedules().CreateJSON(ScheduleJSONOptions{
Cron: "1 1 1 1 1",
Destination: "https://example.com",
Body: map[string]any{
"ex_key": "ex_value",
},
})
assert.NoError(t, err)
assert.NotEmpty(t, scheduleId)
// Get a schedule
schedule, err := client.Schedules().Get(scheduleId)
assert.NoError(t, err)
assert.Equal(t, schedule.Id, scheduleId)
assert.Equal(t, schedule.Cron, "1 1 1 1 1")
assert.Equal(t, schedule.Destination, "https://example.com")
assert.False(t, schedule.IsPaused)
// Pause the schedule
err = client.Schedules().Pause(scheduleId)
assert.NoError(t, err)
schedule, err = client.Schedules().Get(scheduleId)
assert.NoError(t, err)
assert.Equal(t, schedule.Id, scheduleId)
assert.True(t, schedule.IsPaused)
// Resume the schedule
err = client.Schedules().Resume(scheduleId)
assert.NoError(t, err)
schedule, err = client.Schedules().Get(scheduleId)
assert.NoError(t, err)
assert.Equal(t, schedule.Id, scheduleId)
assert.False(t, schedule.IsPaused)
err = client.Schedules().Delete(scheduleId)
assert.NoError(t, err)
}