forked from cloudfoundry/python-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache_test.go
More file actions
58 lines (44 loc) · 1.44 KB
/
cache_test.go
File metadata and controls
58 lines (44 loc) · 1.44 KB
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
package integration_test
import (
"path/filepath"
"testing"
"github.com/cloudfoundry/switchblade"
"github.com/sclevine/spec"
. "github.com/cloudfoundry/switchblade/matchers"
. "github.com/onsi/gomega"
)
const (
Regexp = `\[.*\/python[\-_][\d.]+[\-_]linux[\-_](amd64)?(x64)?[\-_]cflinuxfs\d[\-_][\da-f]+\.tgz\]`
DownloadRegexp = "Download " + Regexp
CopyRegexp = "Copy " + Regexp
)
func testCache(platform switchblade.Platform, fixtures string) func(*testing.T, spec.G, spec.S) {
return func(t *testing.T, context spec.G, it spec.S) {
var (
Expect = NewWithT(t).Expect
name string
source string
)
it.Before(func() {
var err error
name, err = switchblade.RandomName()
Expect(err).NotTo(HaveOccurred())
source, err = switchblade.Source(filepath.Join(fixtures, "simple"))
})
it.After(func() {
Expect(platform.Delete.Execute(name)).To(Succeed())
})
it("uses the cache for manifest dependencies", func() {
deploy := platform.Deploy.
WithBuildpacks("python_buildpack")
_, logs, err := deploy.Execute(name, source)
Expect(err).NotTo(HaveOccurred())
Expect(logs).To(ContainLines(MatchRegexp(DownloadRegexp)))
Expect(logs).NotTo(ContainLines(MatchRegexp(CopyRegexp)))
_, logs, err = deploy.Execute(name, source)
Expect(err).NotTo(HaveOccurred())
Expect(logs).NotTo(ContainLines(MatchRegexp(DownloadRegexp)))
Expect(logs).To(ContainLines(MatchRegexp(CopyRegexp)))
})
}
}