forked from contraband/autopilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autopilot_test.go
297 lines (238 loc) · 7.7 KB
/
autopilot_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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
package main_test
import (
"errors"
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/concourse/autopilot"
"github.com/cloudfoundry/cli/plugin/fakes"
plugin_models "github.com/cloudfoundry/cli/plugin/models"
)
func TestAutopilot(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Autopilot Suite")
}
var _ = Describe("Flag Parsing", func() {
It("parses a complete set of args", func() {
appName, manifestPath, appPath, options, err := ParseArgs(
[]string{
"zero-downtime-push",
"appname",
"-f", "manifest-path",
"-p", "app-path",
"--keep-existing-app",
},
)
Expect(err).ToNot(HaveOccurred())
Expect(appName).To(Equal("appname"))
Expect(manifestPath).To(Equal("manifest-path"))
Expect(appPath).To(Equal("app-path"))
Expect(options.KeepExisting).To(Equal(true))
})
It("requires a manifest", func() {
_, _, _, _, err := ParseArgs(
[]string{
"zero-downtime-push",
"appname",
"-p", "app-path",
},
)
Expect(err).To(MatchError(ErrNoManifest))
})
})
var _ = Describe("Option defaults", func() {
It("properly sets default values for optional options", func() {
appName, manifestPath, appPath, options, err := ParseArgs(
[]string{
"zero-downtime-push",
"appname",
"-f", "manifest-path",
"-p", "app-path",
},
)
Expect(err).ToNot(HaveOccurred())
Expect(appName).To(Equal("appname"))
Expect(manifestPath).To(Equal("manifest-path"))
Expect(appPath).To(Equal("app-path"))
//Defaults:
Expect(options.KeepExisting).To(Equal(false))
})
})
var _ = Describe("ApplicationRepo", func() {
var (
cliConn *fakes.FakeCliConnection
repo *ApplicationRepo
)
BeforeEach(func() {
cliConn = &fakes.FakeCliConnection{}
repo = NewApplicationRepo(cliConn)
})
Describe("RenameApplication", func() {
It("renames the application", func() {
err := repo.RenameApplication("old-name", "new-name")
Expect(err).ToNot(HaveOccurred())
Expect(cliConn.CliCommandCallCount()).To(Equal(1))
args := cliConn.CliCommandArgsForCall(0)
Expect(args).To(Equal([]string{"rename", "old-name", "new-name"}))
})
It("returns an error if one occurs", func() {
cliConn.CliCommandReturns([]string{}, errors.New("no app"))
err := repo.RenameApplication("old-name", "new-name")
Expect(err).To(MatchError("no app"))
})
})
Describe("DoesAppExist", func() {
It("returns an error if the cli returns an error", func() {
cliConn.CliCommandWithoutTerminalOutputReturns([]string{}, errors.New("you shall not curl"))
_, err := repo.DoesAppExist("app-name")
Expect(err).To(MatchError("you shall not curl"))
})
It("returns an error if the cli response is invalid JSON", func() {
response := []string{
"}notjson{",
}
cliConn.CliCommandWithoutTerminalOutputReturns(response, nil)
_, err := repo.DoesAppExist("app-name")
Expect(err).To(HaveOccurred())
})
It("returns an error if the cli response doesn't contain total_results", func() {
response := []string{
`{"brutal_results":2}`,
}
cliConn.CliCommandWithoutTerminalOutputReturns(response, nil)
_, err := repo.DoesAppExist("app-name")
Expect(err).To(MatchError("Missing total_results from api response"))
})
It("returns an error if the cli response contains a non-number total_results", func() {
response := []string{
`{"total_results":"sandwich"}`,
}
cliConn.CliCommandWithoutTerminalOutputReturns(response, nil)
_, err := repo.DoesAppExist("app-name")
Expect(err).To(MatchError("total_results didn't have a number sandwich"))
})
It("returns true if the app exists", func() {
response := []string{
`{"total_results":1}`,
}
spaceGUID := "4"
cliConn.CliCommandWithoutTerminalOutputReturns(response, nil)
cliConn.GetCurrentSpaceReturns(
plugin_models.Space{
SpaceFields: plugin_models.SpaceFields{
Guid: spaceGUID,
},
},
nil,
)
result, err := repo.DoesAppExist("app-name")
Expect(cliConn.CliCommandWithoutTerminalOutputCallCount()).To(Equal(1))
args := cliConn.CliCommandWithoutTerminalOutputArgsForCall(0)
Expect(args).To(Equal([]string{"curl", "v2/apps?q=name:app-name&q=space_guid:4"}))
Expect(err).ToNot(HaveOccurred())
Expect(result).To(BeTrue())
})
It("returns false if the app does not exist", func() {
response := []string{
`{"total_results":0}`,
}
cliConn.CliCommandWithoutTerminalOutputReturns(response, nil)
result, err := repo.DoesAppExist("app-name")
Expect(err).ToNot(HaveOccurred())
Expect(result).To(BeFalse())
})
})
Describe("PushApplication", func() {
It("pushes an application with both a manifest and a path", func() {
err := repo.PushApplication("appName", "/path/to/a/manifest.yml", "/path/to/the/app")
Expect(err).ToNot(HaveOccurred())
Expect(cliConn.CliCommandCallCount()).To(Equal(1))
args := cliConn.CliCommandArgsForCall(0)
Expect(args).To(Equal([]string{
"push",
"appName",
"-f", "/path/to/a/manifest.yml",
"-p", "/path/to/the/app",
}))
})
It("pushes an application with only a manifest", func() {
err := repo.PushApplication("appName", "/path/to/a/manifest.yml", "")
Expect(err).ToNot(HaveOccurred())
Expect(cliConn.CliCommandCallCount()).To(Equal(1))
args := cliConn.CliCommandArgsForCall(0)
Expect(args).To(Equal([]string{
"push",
"appName",
"-f", "/path/to/a/manifest.yml",
}))
})
It("returns errors from the push", func() {
cliConn.CliCommandReturns([]string{}, errors.New("bad app"))
err := repo.PushApplication("appName", "/path/to/a/manifest.yml", "/path/to/the/app")
Expect(err).To(MatchError("bad app"))
})
})
Describe("DeleteApplication", func() {
It("deletes all trace of an application", func() {
err := repo.DeleteApplication("app-name")
Expect(err).ToNot(HaveOccurred())
Expect(cliConn.CliCommandCallCount()).To(Equal(1))
args := cliConn.CliCommandArgsForCall(0)
Expect(args).To(Equal([]string{
"delete", "app-name",
"-f",
}))
})
It("returns errors from the delete", func() {
cliConn.CliCommandReturns([]string{}, errors.New("bad app"))
err := repo.DeleteApplication("app-name")
Expect(err).To(MatchError("bad app"))
})
})
Describe("StopApplication", func() {
It("stops a running application", func() {
err := repo.StopApplication("app-name")
Expect(err).ToNot(HaveOccurred())
Expect(cliConn.CliCommandCallCount()).To(Equal(1))
args := cliConn.CliCommandArgsForCall(0)
Expect(args).To(Equal([]string{
"stop", "app-name",
}))
})
It("returns errors from the stop", func() {
cliConn.CliCommandReturns([]string{}, errors.New("bad app"))
err := repo.StopApplication("app-name")
Expect(err).To(MatchError("bad app"))
})
})
Describe("StartApplication", func() {
It("starts a stopped application", func() {
err := repo.StartApplication("app-name")
Expect(err).ToNot(HaveOccurred())
Expect(cliConn.CliCommandCallCount()).To(Equal(1))
args := cliConn.CliCommandArgsForCall(0)
Expect(args).To(Equal([]string{
"start", "app-name",
}))
})
It("returns errors from the start", func() {
cliConn.CliCommandReturns([]string{}, errors.New("bad app"))
err := repo.DeleteApplication("app-name")
Expect(err).To(MatchError("bad app"))
})
})
Describe("ListApplications", func() {
It("lists all the applications", func() {
err := repo.ListApplications()
Expect(err).ToNot(HaveOccurred())
Expect(cliConn.CliCommandCallCount()).To(Equal(1))
args := cliConn.CliCommandArgsForCall(0)
Expect(args).To(Equal([]string{"apps"}))
})
It("returns errors from the list", func() {
cliConn.CliCommandReturns([]string{}, errors.New("bad apps"))
err := repo.ListApplications()
Expect(err).To(MatchError("bad apps"))
})
})
})