forked from cloudfoundry/python-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions_test.go
More file actions
150 lines (118 loc) · 3.85 KB
/
versions_test.go
File metadata and controls
150 lines (118 loc) · 3.85 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
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
package integration_test
import (
"os"
"path/filepath"
"regexp"
"testing"
"github.com/blang/semver"
"github.com/cloudfoundry/libbuildpack"
"github.com/cloudfoundry/switchblade"
"github.com/sclevine/spec"
. "github.com/cloudfoundry/switchblade/matchers"
. "github.com/onsi/gomega"
)
func testVersions(platform switchblade.Platform, fixtures, root string) func(*testing.T, spec.G, spec.S) {
return func(t *testing.T, context spec.G, it spec.S) {
var (
Expect = NewWithT(t).Expect
Eventually = NewWithT(t).Eventually
name string
)
it.Before(func() {
var err error
name, err = switchblade.RandomName()
Expect(err).NotTo(HaveOccurred())
})
it.After(func() {
Expect(platform.Delete.Execute(name)).To(Succeed())
})
context("when there is a runtime.txt file", func() {
var source string
context("with an unsupported version", func() {
it.Before(func() {
var err error
source, err = switchblade.Source(filepath.Join(fixtures, "simple"))
Expect(err).NotTo(HaveOccurred())
file, err := os.OpenFile(filepath.Join(source, "runtime.txt"), os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0600)
Expect(err).NotTo(HaveOccurred())
_, err = file.WriteString("python-99.99.99")
Expect(err).NotTo(HaveOccurred())
Expect(file.Close()).To(Succeed())
})
it.After(func() {
Expect(os.RemoveAll(source)).To(Succeed())
})
it("displays a nice error messages and gracefully fails", func() {
_, logs, err := platform.Deploy.
Execute(name, source)
Expect(err).To(HaveOccurred())
Expect(logs.String()).To(SatisfyAll(
ContainSubstring("Could not install python: no match found for 99.99.99"),
))
})
})
context("with a supported version", func() {
it.Before(func() {
var err error
source, err = switchblade.Source(filepath.Join(fixtures, "simple"))
Expect(err).NotTo(HaveOccurred())
file, err := os.OpenFile(filepath.Join(source, "runtime.txt"), os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0600)
Expect(err).NotTo(HaveOccurred())
_, err = file.WriteString("python-3.10.x")
Expect(err).NotTo(HaveOccurred())
Expect(file.Close()).To(Succeed())
})
it.After(func() {
Expect(os.RemoveAll(source)).To(Succeed())
})
it("deploy successfully", func() {
deployment, logs, err := platform.Deploy.
Execute(name, source)
Expect(err).NotTo(HaveOccurred())
Eventually(deployment).Should(Serve("Hello, World!"))
Expect(logs.String()).To(SatisfyAll(
ContainSubstring("Installing python 3.10"),
))
})
})
})
context("when there is no runtime.txt file", func() {
var source string
var defaultV string
type manifestContent struct {
DefaultVersions []struct {
Name string `yaml:"name"`
Version string `yaml:"version"`
} `yaml:"default_versions"`
}
it.Before(func() {
var err error
source, err = switchblade.Source(filepath.Join(fixtures, "simple"))
Expect(err).NotTo(HaveOccurred())
mc := manifestContent{}
err = libbuildpack.NewYAML().Load(filepath.Join(root, "manifest.yml"), &mc)
Expect(err).To(BeNil())
for _, defaultDep := range mc.DefaultVersions {
if defaultDep.Name == "python" {
defaultV = defaultDep.Version
}
}
})
it.After(func() {
Expect(os.RemoveAll(source)).To(Succeed())
})
it("deploys with default Python version", func() {
deployment, logs, err := platform.Deploy.
Execute(name, source)
Expect(err).NotTo(HaveOccurred())
Eventually(deployment).Should(Serve("Hello, World!"))
re := regexp.MustCompile("Installing python (.*)[\r\n|\r|\n]")
match := re.FindStringSubmatch(logs.String())
foundVersion := match[1]
versionRange := semver.MustParseRange("<=" + defaultV)
v1 := semver.MustParse(foundVersion)
Expect(versionRange(v1)).To(BeTrue())
})
})
}
}