forked from cloudfoundry/cf-acceptance-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cats_suite_test.go
143 lines (117 loc) · 5.84 KB
/
cats_suite_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
package cats_test
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"testing"
"time"
. "github.com/cloudfoundry/cf-acceptance-tests/cats_suite_helpers"
"github.com/cloudfoundry/cf-acceptance-tests/helpers/assets"
"github.com/mholt/archiver"
_ "github.com/cloudfoundry/cf-acceptance-tests/app_syslog_tcp"
_ "github.com/cloudfoundry/cf-acceptance-tests/apps"
_ "github.com/cloudfoundry/cf-acceptance-tests/credhub"
_ "github.com/cloudfoundry/cf-acceptance-tests/detect"
_ "github.com/cloudfoundry/cf-acceptance-tests/docker"
_ "github.com/cloudfoundry/cf-acceptance-tests/http2_routing"
_ "github.com/cloudfoundry/cf-acceptance-tests/internet_dependent"
_ "github.com/cloudfoundry/cf-acceptance-tests/isolation_segments"
_ "github.com/cloudfoundry/cf-acceptance-tests/route_services"
_ "github.com/cloudfoundry/cf-acceptance-tests/routing"
_ "github.com/cloudfoundry/cf-acceptance-tests/routing_isolation_segments"
_ "github.com/cloudfoundry/cf-acceptance-tests/security_groups"
_ "github.com/cloudfoundry/cf-acceptance-tests/service_discovery"
_ "github.com/cloudfoundry/cf-acceptance-tests/services"
_ "github.com/cloudfoundry/cf-acceptance-tests/ssh"
_ "github.com/cloudfoundry/cf-acceptance-tests/tasks"
_ "github.com/cloudfoundry/cf-acceptance-tests/tcp_routing"
_ "github.com/cloudfoundry/cf-acceptance-tests/user_provided_services"
_ "github.com/cloudfoundry/cf-acceptance-tests/v3"
_ "github.com/cloudfoundry/cf-acceptance-tests/volume_services"
_ "github.com/cloudfoundry/cf-acceptance-tests/windows"
. "github.com/cloudfoundry/cf-acceptance-tests/helpers/cli_version_check"
"github.com/cloudfoundry/cf-acceptance-tests/helpers/config"
"github.com/cloudfoundry/cf-test-helpers/v2/cf"
"github.com/cloudfoundry/cf-test-helpers/v2/helpers"
"github.com/cloudfoundry/cf-test-helpers/v2/workflowhelpers"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gexec"
)
const minCliVersion = "6.33.1"
func TestCATS(t *testing.T) {
RegisterFailHandler(Fail)
var validationError error
Config, validationError = config.NewCatsConfig(os.Getenv("CONFIG"))
if validationError != nil {
defer GinkgoRecover()
fmt.Println("Invalid configuration. ")
fmt.Println(validationError)
fmt.Println("Please fix the contents of $CONFIG:\n " + os.Getenv("CONFIG") + "\nbefore proceeding.")
t.Fail()
}
var _ = SynchronizedBeforeSuite(func() []byte {
installedVersion, err := GetInstalledCliVersionString()
Expect(err).ToNot(HaveOccurred(), "Error trying to determine CF CLI version")
fmt.Println("Running CATs with CF CLI version ", installedVersion)
Expect(ParseRawCliVersionString(installedVersion).AtLeast(ParseRawCliVersionString(minCliVersion))).To(BeTrue(), "CLI version "+minCliVersion+" is required")
if Config.GetIncludeSsh() {
ScpPath, err = exec.LookPath("scp")
Expect(err).NotTo(HaveOccurred())
SftpPath, err = exec.LookPath("sftp")
Expect(err).NotTo(HaveOccurred())
}
buildCmd := exec.Command("go", "build", "-o", "bin/catnip")
buildCmd.Dir = "assets/catnip"
buildCmd.Env = append(os.Environ(),
"GOOS=linux",
"GOARCH=amd64",
)
buildCmd.Stdout = GinkgoWriter
buildCmd.Stderr = GinkgoWriter
err = buildCmd.Run()
Expect(err).NotTo(HaveOccurred())
doraFiles, err := ioutil.ReadDir(assets.NewAssets().Dora)
Expect(err).NotTo(HaveOccurred())
var doraFileNames []string
for _, doraFile := range doraFiles {
doraFileNames = append(doraFileNames, assets.NewAssets().Dora+"/"+doraFile.Name())
}
zip := archiver.NewZip()
err = zip.Archive(doraFileNames, assets.NewAssets().DoraZip)
Expect(err).NotTo(HaveOccurred())
return []byte{}
}, func([]byte) {
SetDefaultEventuallyTimeout(Config.DefaultTimeoutDuration())
SetDefaultEventuallyPollingInterval(1 * time.Second)
TestSetup = workflowhelpers.NewTestSuiteSetup(Config)
workflowhelpers.AsUser(TestSetup.AdminUserContext(), Config.GetScaledTimeout(1*time.Minute), func() {
buildpacksSession := cf.Cf("buildpacks").Wait()
Expect(buildpacksSession).To(Exit(0))
buildpacks := string(buildpacksSession.Out.Contents())
Expect(buildpacks).To(ContainSubstring(Config.GetBinaryBuildpackName()), "Missing the binary buildpack specified in the integration_config.json. There may be other missing buildpacks as well; please double-check your configuration against the buildpacks listed below.")
Expect(buildpacks).To(ContainSubstring(Config.GetGoBuildpackName()), "Missing the go buildpack specified in the integration_config.json. There may be other missing buildpacks as well; please double-check your configuration against the buildpacks listed below.")
Expect(buildpacks).To(ContainSubstring(Config.GetJavaBuildpackName()), "Missing the java buildpack specified in the integration_config.json. There may be other missing buildpacks as well; please double-check your configuration against the buildpacks listed below.")
Expect(buildpacks).To(ContainSubstring(Config.GetNodejsBuildpackName()), "Missing the NodeJS buildpack specified in the integration_config.json. There may be other missing buildpacks as well; please double-check your configuration against the buildpacks listed below.")
Expect(buildpacks).To(ContainSubstring(Config.GetRubyBuildpackName()), "Missing the ruby buildpack specified in the integration_config.json. There may be other missing buildpacks as well; please double-check your configuration against the buildpacks listed below.")
})
TestSetup.Setup()
})
SynchronizedAfterSuite(func() {
if TestSetup != nil {
TestSetup.Teardown()
}
}, func() {
os.Remove(assets.NewAssets().DoraZip)
})
_, rc := GinkgoConfiguration()
if validationError == nil {
if Config.GetArtifactsDirectory() != "" {
helpers.EnableCFTrace(Config, "CATS")
rc.JUnitReport = filepath.Join(Config.GetArtifactsDirectory(), fmt.Sprintf("junit-%s-%d.xml", "CATS", GinkgoParallelProcess()))
}
}
RunSpecs(t, "CATS", rc)
}