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
/
env_vars_test.go
224 lines (173 loc) · 8.24 KB
/
env_vars_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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
// 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 testEnvVarId = "test-12345-absde"
func TestEnvVarsService_FindByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/env_var/%s", testRepoId, testEnvVarId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
fmt.Fprint(w, `{"id":"test-12345-absde","name":"TEST","value":"test","public":false,"branch":"foo"}`)
})
envVar, _, err := client.EnvVars.FindByRepoId(context.Background(), testRepoId, testEnvVarId)
if err != nil {
t.Errorf("EnvVars.FindByRepoId returned error: %v", err)
}
want := &EnvVar{Id: String(testEnvVarId), Name: String("TEST"), Value: String("test"), Public: Bool(false), Branch: String("foo")}
if !reflect.DeepEqual(envVar, want) {
t.Errorf("EnvVars.FindByRepoId returned %+v, want %+v", envVar, want)
}
}
func TestEnvVarsService_FindByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/env_var/%s", testRepoSlug, testEnvVarId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
fmt.Fprint(w, `{"id":"test-12345-absde","name":"TEST","value":"test","public":false,"branch":"foo"}`)
})
envVar, _, err := client.EnvVars.FindByRepoSlug(context.Background(), testRepoSlug, testEnvVarId)
if err != nil {
t.Errorf("EnvVar.FindByRepoSlug returned error: %v", err)
}
want := &EnvVar{Id: String(testEnvVarId), Name: String("TEST"), Value: String("test"), Public: Bool(false), Branch: String("foo")}
if !reflect.DeepEqual(envVar, want) {
t.Errorf("EnvVars.FindByRepoSlug returned %+v, want %+v", envVar, want)
}
}
func TestEnvVarsService_ListByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/env_vars", testRepoId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
fmt.Fprint(w, `{"env_vars": [{"id":"test-12345-absde","name":"TEST","value":"test","public":false,"branch":"foo"}]}`)
})
envVar, _, err := client.EnvVars.ListByRepoId(context.Background(), testRepoId)
if err != nil {
t.Errorf("EnvVars.FindByRepoId returned error: %v", err)
}
want := []*EnvVar{{Id: String(testEnvVarId), Name: String("TEST"), Value: String("test"), Public: Bool(false), Branch: String("foo")}}
if !reflect.DeepEqual(envVar, want) {
t.Errorf("EnvVars.FindByRepoId returned %+v, want %+v", envVar, want)
}
}
func TestEnvVarsService_ListByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/env_vars", testRepoSlug), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
fmt.Fprint(w, `{"env_vars": [{"id":"test-12345-absde","name":"TEST","value":"test","public":false,"branch":"foo"}]}`)
})
envVar, _, err := client.EnvVars.ListByRepoSlug(context.Background(), testRepoSlug)
if err != nil {
t.Errorf("EnvVars.FindByRepoSlug returned error: %v", err)
}
want := []*EnvVar{{Id: String(testEnvVarId), Name: String("TEST"), Value: String("test"), Public: Bool(false), Branch: String("foo")}}
if !reflect.DeepEqual(envVar, want) {
t.Errorf("EnvVars.FindByRepoSlug returned %+v, want %+v", envVar, want)
}
}
func TestEnvVarsService_CreateByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/env_vars", testRepoId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPost)
testBody(t, r, `{"env_var.name":"TEST","env_var.value":"test","env_var.public":false,"env_var.branch":"foo"}`+"\n")
fmt.Fprint(w, `{"id":"test-12345-absde","name":"TEST","value":"test","public":false,"branch":"foo"}`)
})
opt := EnvVarBody{Name: "TEST", Value: "test", Public: false, Branch: "foo"}
envVar, _, err := client.EnvVars.CreateByRepoId(context.Background(), testRepoId, &opt)
if err != nil {
t.Errorf("EnvVars.CreateByRepoId returned error: %v", err)
}
want := &EnvVar{Id: String(testEnvVarId), Name: String("TEST"), Value: String("test"), Public: Bool(false), Branch: String("foo")}
if !reflect.DeepEqual(envVar, want) {
t.Errorf("EnvVars.CreateByRepoId returned %+v, want %+v", envVar, want)
}
}
func TestEnvVarsService_CreateByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/env_vars", testRepoSlug), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPost)
testBody(t, r, `{"env_var.name":"TEST","env_var.value":"test","env_var.public":false}`+"\n")
fmt.Fprint(w, `{"id":"test-12345-absde","name":"TEST","value":"test","public":false,"branch":"foo"}`)
})
opt := EnvVarBody{Name: "TEST", Value: "test", Public: false}
envVar, _, err := client.EnvVars.CreateByRepoSlug(context.Background(), testRepoSlug, &opt)
if err != nil {
t.Errorf("EnvVars.CreateByRepoSlug returned error: %v", err)
}
want := &EnvVar{Id: String(testEnvVarId), Name: String("TEST"), Value: String("test"), Public: Bool(false), Branch: String("foo")}
if !reflect.DeepEqual(envVar, want) {
t.Errorf("EnvVars.CreateByRepoSlug returned %+v, want %+v", envVar, want)
}
}
func TestEnvVarsService_UpdateByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/env_var/%s", testRepoId, testEnvVarId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPatch)
testBody(t, r, `{"env_var.name":"TEST","env_var.value":"test","env_var.public":false,"env_var.branch":"foo"}`+"\n")
fmt.Fprint(w, `{"id":"test-12345-absde","name":"TEST","value":"test","public":false,"branch":"foo"}`)
})
envVar := EnvVarBody{Name: "TEST", Value: "test", Public: false, Branch: "foo"}
e, _, err := client.EnvVars.UpdateByRepoId(context.Background(), testRepoId, testEnvVarId, &envVar)
if err != nil {
t.Errorf("EnvVar.UpdateByRepoId returned error: %v", err)
}
want := &EnvVar{Id: String(testEnvVarId), Name: String("TEST"), Value: String("test"), Public: Bool(false), Branch: String("foo")}
if !reflect.DeepEqual(e, want) {
t.Errorf("EnvVars.UpdateByRepoId returned %+v, want %+v", envVar, want)
}
}
func TestEnvVarsService_UpdateByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/env_var/%s", testRepoSlug, testEnvVarId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPatch)
testBody(t, r, `{"env_var.name":"TEST","env_var.value":"test","env_var.public":false,"env_var.branch":"foo"}`+"\n")
fmt.Fprint(w, `{"id":"test-12345-absde","name":"TEST","value":"test","public":false,"branch":"foo"}`)
})
envVar := EnvVarBody{Name: "TEST", Value: "test", Public: false, Branch: "foo"}
e, _, err := client.EnvVars.UpdateByRepoSlug(context.Background(), testRepoSlug, testEnvVarId, &envVar)
if err != nil {
t.Errorf("EnvVars.UpdateByRepoSlug returned error: %v", err)
}
want := &EnvVar{Id: String(testEnvVarId), Name: String("TEST"), Value: String("test"), Public: Bool(false), Branch: String("foo")}
if !reflect.DeepEqual(e, want) {
t.Errorf("EnvVars.UpdateByRepoSlug returned %+v, want %+v", e, want)
}
}
func TestEnvVarsService_DeleteByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/env_var/%s", testRepoId, testEnvVarId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodDelete)
fmt.Fprint(w, `{}`)
})
_, err := client.EnvVars.DeleteByRepoId(context.Background(), testRepoId, testEnvVarId)
if err != nil {
t.Errorf("EnvVars.DeleteByRepoId returned error: %v", err)
}
}
func TestEnvVarsService_DeleteByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/env_var/%s", testRepoSlug, testEnvVarId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodDelete)
fmt.Fprint(w, `{}`)
})
_, err := client.EnvVars.DeleteByRepoSlug(context.Background(), testRepoSlug, testEnvVarId)
if err != nil {
t.Errorf("EnvVars.DeleteByRepoSlug returned error: %v", err)
}
}