forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.go
390 lines (316 loc) · 10.7 KB
/
app.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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
package helpers
import (
"archive/zip"
"fmt"
"io"
"io/ioutil"
"math/rand"
"os"
"path/filepath"
"strings"
"github.com/onsi/gomega/gbytes"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gexec"
"gopkg.in/yaml.v2"
)
// CreateApp creates an empty app in CloudController with no package or droplet
func CreateApp(app string) {
Eventually(CF("create-app", app)).Should(Exit(0))
}
// QuickDeleteApp deletes the app with the given name, if provided, using
// 'cf curl /v3/app... -X DELETE'.
func QuickDeleteApp(appName string) {
guid := AppGUID(appName)
url := fmt.Sprintf("/v3/apps/%s", guid)
session := CF("curl", "-X", "DELETE", url)
Eventually(session).Should(Exit(0))
}
// WithHelloWorldApp creates a simple application to use with your CLI command
// (typically CF Push). When pushing, be aware of specifying '-b
// staticfile_buildpack" so that your app will correctly start up with the
// proper buildpack.
func WithHelloWorldApp(f func(dir string)) {
dir := TempDirAbsolutePath("", "simple-app")
defer os.RemoveAll(dir)
tempfile := filepath.Join(dir, "index.html")
err := ioutil.WriteFile(tempfile, []byte(fmt.Sprintf("hello world %d", rand.Int())), 0666)
Expect(err).ToNot(HaveOccurred())
err = ioutil.WriteFile(filepath.Join(dir, "Staticfile"), nil, 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
// WithMultiEndpointApp creates a simple application to use with your CLI command
// (typically CF Push). It has multiple endpoints which are helpful when testing
// http healthchecks.
func WithMultiEndpointApp(f func(dir string)) {
dir := TempDirAbsolutePath("", "simple-app")
defer os.RemoveAll(dir)
tempfile := filepath.Join(dir, "index.html")
err := ioutil.WriteFile(tempfile, []byte(fmt.Sprintf("hello world %d", rand.Int())), 0666)
Expect(err).ToNot(HaveOccurred())
tempfile = filepath.Join(dir, "other_endpoint.html")
err = ioutil.WriteFile(tempfile, []byte("other endpoint"), 0666)
Expect(err).ToNot(HaveOccurred())
tempfile = filepath.Join(dir, "third_endpoint.html")
err = ioutil.WriteFile(tempfile, []byte("third endpoint"), 0666)
Expect(err).ToNot(HaveOccurred())
err = ioutil.WriteFile(filepath.Join(dir, "Staticfile"), nil, 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
func WithSidecarApp(f func(dir string), appName string) {
withSidecarManifest := func(dir string) {
err := ioutil.WriteFile(filepath.Join(dir, "manifest.yml"), []byte(fmt.Sprintf(`---
applications:
- name: %s
sidecars:
- name: sidecar_name
process_types: [web]
command: sleep infinity`,
appName)), 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
WithHelloWorldApp(withSidecarManifest)
}
func WithTaskApp(f func(dir string), appName string) {
withTaskManifest := func(dir string) {
err := ioutil.WriteFile(filepath.Join(dir, "manifest.yml"), []byte(fmt.Sprintf(`---
applications:
- name: %s
processes:
- type: task
command: echo hi`,
appName)), 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
WithHelloWorldApp(withTaskManifest)
}
// WithNoResourceMatchedApp creates a simple application to use with your CLI
// command (typically CF Push). When pushing, be aware of specifying '-b
// staticfile_buildpack" so that your app will correctly start up with the
// proper buildpack.
func WithNoResourceMatchedApp(f func(dir string)) {
dir := TempDirAbsolutePath("", "simple-app")
defer os.RemoveAll(dir)
tempfile := filepath.Join(dir, "index.html")
err := ioutil.WriteFile(tempfile, []byte(fmt.Sprintf("hello world %s", strings.Repeat("a", 65*1024))), 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
// WithMultiBuildpackApp creates a multi-buildpack application to use with the CF push command.
func WithMultiBuildpackApp(f func(dir string)) {
f("../../assets/go_calls_ruby")
}
// WithProcfileApp creates an application to use with your CLI command
// that contains Procfile defining web and worker processes.
func WithProcfileApp(f func(dir string)) {
dir := TempDirAbsolutePath("", "simple-ruby-app")
defer os.RemoveAll(dir)
err := ioutil.WriteFile(filepath.Join(dir, "Procfile"), []byte(`---
web: ruby -run -e httpd . -p $PORT
console: bundle exec irb`,
), 0666)
Expect(err).ToNot(HaveOccurred())
//TODO: Remove the ruby version once bundler issue(https://github.com/rubygems/rubygems/issues/6280)
// is solved
err = ioutil.WriteFile(filepath.Join(dir, "Gemfile"), []byte(`source 'http://rubygems.org'
ruby '~> 3.0'
gem 'irb'
gem 'webrick'`,
), 0666)
Expect(err).ToNot(HaveOccurred())
err = ioutil.WriteFile(filepath.Join(dir, "Gemfile.lock"), []byte(`
GEM
remote: http://rubygems.org/
specs:
io-console (0.6.0)
irb (1.6.4)
reline (>= 0.3.0)
reline (0.3.3)
io-console (~> 0.5)
webrick (1.8.1)
PLATFORMS
ruby
DEPENDENCIES
irb
webrick
`,
), 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
// WithCrashingApp creates an application to use with your CLI command
// that will not successfully start its `web` process
func WithCrashingApp(f func(dir string)) {
dir := TempDirAbsolutePath("", "crashing-ruby-app")
defer os.RemoveAll(dir)
err := ioutil.WriteFile(filepath.Join(dir, "Procfile"), []byte(`---
web: bogus bogus`,
), 0666)
Expect(err).ToNot(HaveOccurred())
err = ioutil.WriteFile(filepath.Join(dir, "Gemfile"), nil, 0666)
Expect(err).ToNot(HaveOccurred())
err = ioutil.WriteFile(filepath.Join(dir, "Gemfile.lock"), []byte(`
GEM
specs:
PLATFORMS
ruby
DEPENDENCIES
BUNDLED WITH
2.1.4
`), 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
// WithBananaPantsApp creates a simple application to use with your CLI command
// (typically CF Push). When pushing, be aware of specifying '-b
// staticfile_buildpack" so that your app will correctly start up with the
// proper buildpack.
func WithBananaPantsApp(f func(dir string)) {
dir := TempDirAbsolutePath("", "simple-app")
defer os.RemoveAll(dir)
tempfile := filepath.Join(dir, "index.html")
err := ioutil.WriteFile(tempfile, []byte("Banana Pants"), 0666)
Expect(err).ToNot(HaveOccurred())
err = ioutil.WriteFile(filepath.Join(dir, "Staticfile"), nil, 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
func WithEmptyFilesApp(f func(dir string)) {
dir := TempDirAbsolutePath("", "simple-app")
defer os.RemoveAll(dir)
tempfile := filepath.Join(dir, "index.html")
err := ioutil.WriteFile(tempfile, nil, 0666)
Expect(err).ToNot(HaveOccurred())
err = ioutil.WriteFile(filepath.Join(dir, "Staticfile"), nil, 0666)
Expect(err).ToNot(HaveOccurred())
f(dir)
}
// AppGUID returns the GUID for an app in the currently targeted space.
func AppGUID(appName string) string {
session := CF("app", appName, "--guid")
Eventually(session).Should(Exit(0))
return strings.TrimSpace(string(session.Out.Contents()))
}
// AppJSON returns the JSON representation of an app by name.
func AppJSON(appName string) string {
appGUID := AppGUID(appName)
session := CF("curl", fmt.Sprintf("/v3/apps/%s", appGUID))
Eventually(session).Should(Exit(0))
return strings.TrimSpace(string(session.Out.Contents()))
}
// WriteManifest will write out a YAML manifest file at the specified path.
func WriteManifest(path string, manifest map[string]interface{}) {
body, err := yaml.Marshal(manifest)
Expect(err).ToNot(HaveOccurred())
err = ioutil.WriteFile(path, body, 0666)
Expect(err).ToNot(HaveOccurred())
}
func ReadManifest(path string) map[string]interface{} {
manifestBytes, err := ioutil.ReadFile(path)
Expect(err).ToNot(HaveOccurred())
var manifest map[string]interface{}
err = yaml.Unmarshal(manifestBytes, &manifest)
Expect(err).ToNot(HaveOccurred())
return manifest
}
// Zipit zips the source into a .zip file in the target dir.
func Zipit(source, target, prefix string) error {
// Thanks to Svett Ralchev
// http://blog.ralch.com/tutorial/golang-working-with-zip/
zipfile, err := os.Create(target)
if err != nil {
return err
}
defer zipfile.Close()
if prefix != "" {
_, err = io.WriteString(zipfile, prefix)
if err != nil {
return err
}
}
archive := zip.NewWriter(zipfile)
defer archive.Close()
err = filepath.Walk(source, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if path == source {
return nil
}
header, err := zip.FileInfoHeader(info)
if err != nil {
return err
}
header.Name, err = filepath.Rel(source, path)
if err != nil {
return err
}
header.Name = filepath.ToSlash(header.Name)
if info.IsDir() {
header.Name += "/"
header.SetMode(0755)
} else {
header.Method = zip.Deflate
header.SetMode(0744)
}
writer, err := archive.CreateHeader(header)
if err != nil {
return err
}
if info.IsDir() {
return nil
}
file, err := os.Open(path)
if err != nil {
return err
}
defer file.Close()
_, err = io.Copy(writer, file)
return err
})
return err
}
// ConfirmStagingLogs checks session for log output
// indicating that staging is working.
func ConfirmStagingLogs(session *Session) {
Eventually(session).Should(gbytes.Say(`(?i)Creating container|Successfully created container|Staging\.\.\.|Staging process started \.\.\.|Staging Complete|Exit status 0|Uploading droplet\.\.\.|Uploading complete`))
}
func WaitForAppMemoryToTakeEffect(appName string, processIndex int, instanceIndex int, shouldRestartFirst bool, expectedMemory string) {
if shouldRestartFirst {
session := CF("restart", appName)
Eventually(session).Should(Exit(0))
}
Eventually(func() string {
session := CF("app", appName)
Eventually(session).Should(Exit(0))
appTable := ParseV3AppProcessTable(session.Out.Contents())
return appTable.Processes[processIndex].Instances[instanceIndex].Memory
}).Should(MatchRegexp(fmt.Sprintf(`\d+(\.\d+)?[KMG]? of %s`, expectedMemory)))
}
func WaitForAppDiskToTakeEffect(appName string, processIndex int, instanceIndex int, shouldRestartFirst bool, expectedDisk string) {
if shouldRestartFirst {
session := CF("restart", appName)
Eventually(session).Should(Exit(0))
}
Eventually(func() string {
session := CF("app", appName)
Eventually(session).Should(Exit(0))
appTable := ParseV3AppProcessTable(session.Out.Contents())
return appTable.Processes[processIndex].Instances[instanceIndex].Disk
}).Should(MatchRegexp(fmt.Sprintf(`\d+(\.\d+)?[KMG]? of %s`, expectedDisk)))
}
func WaitForLogRateLimitToTakeEffect(appName string, processIndex int, instanceIndex int, shouldRestartFirst bool, expectedLogRateLimit string) {
if shouldRestartFirst {
session := CF("restart", appName)
Eventually(session).Should(Exit(0))
}
Eventually(func() string {
session := CF("app", appName)
Eventually(session).Should(Exit(0))
appTable := ParseV3AppProcessTable(session.Out.Contents())
return appTable.Processes[processIndex].Instances[instanceIndex].LogRate
}).Should(MatchRegexp(fmt.Sprintf(`\d+(\.\d+)?[KMG]?/s of %s/s`, expectedLogRateLimit)))
}