This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
crons_test.go
193 lines (151 loc) · 6.95 KB
/
crons_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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
// Copyright (c) 2015 Ableton AG, Berlin. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package travis
import (
"context"
"fmt"
"net/http"
"reflect"
"testing"
)
const testCronId = 12345
func TestCronsService_Find(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/cron/%d", testCronId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"include": "cron.repository"})
fmt.Fprint(w, `{"id":12345,"interval":"weekly","dont_run_if_recent_build_exists":true,"active":true}`)
})
opt := CronOption{Include: []string{"cron.repository"}}
cron, _, err := client.Crons.Find(context.Background(), testCronId, &opt)
if err != nil {
t.Errorf("Cron.Find returned error: %v", err)
}
want := &Cron{Id: Uint(testCronId), Interval: String(CronIntervalWeekly), DontRunIfRecentBuildExists: Bool(true), Active: Bool(true)}
if !reflect.DeepEqual(cron, want) {
t.Errorf("Cron.Find returned %+v, want %+v", cron, want)
}
}
func TestCronsService_FindByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/branch/%s/cron", testRepoId, "master"), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"include": "cron.repository"})
fmt.Fprint(w, `{"id":12345,"interval":"weekly","dont_run_if_recent_build_exists":true,"active":true}`)
})
opt := CronOption{Include: []string{"cron.repository"}}
cron, _, err := client.Crons.FindByRepoId(context.Background(), testRepoId, "master", &opt)
if err != nil {
t.Errorf("Cron.FindByRepoId returned error: %v", err)
}
want := &Cron{Id: Uint(testCronId), Interval: String(CronIntervalWeekly), DontRunIfRecentBuildExists: Bool(true), Active: Bool(true)}
if !reflect.DeepEqual(cron, want) {
t.Errorf("Cron.FindByRepoId returned %+v, want %+v", cron, want)
}
}
func TestCronsService_FindByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/branch/%s/cron", testRepoSlug, "master"), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"include": "cron.repository"})
fmt.Fprint(w, `{"id":12345,"interval":"weekly","dont_run_if_recent_build_exists":true,"active":true}`)
})
opt := CronOption{Include: []string{"cron.repository"}}
cron, _, err := client.Crons.FindByRepoSlug(context.Background(), testRepoSlug, "master", &opt)
if err != nil {
t.Errorf("Cron.FindByRepoSlug returned error: %v", err)
}
want := &Cron{Id: Uint(testCronId), Interval: String(CronIntervalWeekly), DontRunIfRecentBuildExists: Bool(true), Active: Bool(true)}
if !reflect.DeepEqual(cron, want) {
t.Errorf("Cron.FindByRepoSlug returned %+v, want %+v", cron, want)
}
}
func TestCronsService_ListByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/crons", testRepoId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"limit": "5", "offset": "10"})
fmt.Fprint(w, `{"crons":[{"id":12345,"interval":"weekly","dont_run_if_recent_build_exists":true,"active":true}]}`)
})
opt := CronsOption{Limit: 5, Offset: 10}
crons, _, err := client.Crons.ListByRepoId(context.Background(), testRepoId, &opt)
if err != nil {
t.Errorf("Crons.FindByRepoId returned error: %v", err)
}
want := []*Cron{{Id: Uint(testCronId), Interval: String(CronIntervalWeekly), DontRunIfRecentBuildExists: Bool(true), Active: Bool(true)}}
if !reflect.DeepEqual(crons, want) {
t.Errorf("Crons.FindByRepoId returned %+v, want %+v", crons, want)
}
}
func TestCronsService_ListByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/crons", testRepoSlug), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"limit": "5", "offset": "10"})
fmt.Fprint(w, `{"crons":[{"id":12345,"interval":"weekly","dont_run_if_recent_build_exists":true,"active":true}]}`)
})
opt := CronsOption{Limit: 5, Offset: 10}
crons, _, err := client.Crons.ListByRepoSlug(context.Background(), testRepoSlug, &opt)
if err != nil {
t.Errorf("Crons.FindByRepoSlug returned error: %v", err)
}
want := []*Cron{{Id: Uint(testCronId), Interval: String(CronIntervalWeekly), DontRunIfRecentBuildExists: Bool(true), Active: Bool(true)}}
if !reflect.DeepEqual(crons, want) {
t.Errorf("Crons.FindByRepoSlug returned %+v, want %+v", crons, want)
}
}
func TestCronsService_CreateByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/branch/%s/cron", testRepoId, "master"), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPost)
testBody(t, r, `{"cron.interval":"weekly","cron.dont_run_if_recent_build_exists":true}`+"\n")
fmt.Fprint(w, `{"id":12345,"interval":"weekly","dont_run_if_recent_build_exists":true,"active":true}`)
})
opt := CronBody{Interval: CronIntervalWeekly, DontRunIfRecentBuildExists: true}
cron, _, err := client.Crons.CreateByRepoId(context.Background(), testRepoId, "master", &opt)
if err != nil {
t.Errorf("Cron.CreateByRepoId returned error: %v", err)
}
want := &Cron{Id: Uint(testCronId), Interval: String(CronIntervalWeekly), DontRunIfRecentBuildExists: Bool(true), Active: Bool(true)}
if !reflect.DeepEqual(cron, want) {
t.Errorf("Cron.CreateByRepoId returned %+v, want %+v", cron, want)
}
}
func TestCronsService_CreateByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/branch/%s/cron", testRepoSlug, "master"), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPost)
testBody(t, r, `{"cron.interval":"weekly","cron.dont_run_if_recent_build_exists":true}`+"\n")
fmt.Fprint(w, `{"id":12345,"interval":"weekly","dont_run_if_recent_build_exists":true,"active":true}`)
})
opt := CronBody{Interval: CronIntervalWeekly, DontRunIfRecentBuildExists: true}
cron, _, err := client.Crons.CreateByRepoSlug(context.Background(), testRepoSlug, "master", &opt)
if err != nil {
t.Errorf("Cron.CreateByRepoId returned error: %v", err)
}
want := &Cron{Id: Uint(testCronId), Interval: String(CronIntervalWeekly), DontRunIfRecentBuildExists: Bool(true), Active: Bool(true)}
if !reflect.DeepEqual(cron, want) {
t.Errorf("Cron.CreateByRepoId returned %+v, want %+v", cron, want)
}
}
func TestCronsService_Delete(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/cron/%d", testCronId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodDelete)
fmt.Fprint(w, `{}`)
})
_, err := client.Crons.Delete(context.Background(), testCronId)
if err != nil {
t.Errorf("Cron.Delete returned error: %v", err)
}
}