forked from bsteciuk/kismatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate_test.go
48 lines (41 loc) · 1.47 KB
/
validate_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
package integration
import (
"os"
. "github.com/onsi/ginkgo"
)
var _ = Describe("kismatic install validate tests", func() {
BeforeEach(func() {
dir := setupTestWorkingDir()
os.Chdir(dir)
})
Describe("Running validation with package installation disabled", func() {
Context("using a Minikube Ubuntu layout", func() {
ItOnAWS("should succeed if and only if all packages are installed on the node", func(aws infrastructureProvisioner) {
validateMiniPkgInstallationDisabled(aws, Ubuntu1604LTS)
})
})
Context("using a Minikube CentOS 7 layout", func() {
ItOnAWS("should succeed if and only if all packages are installed on the node", func(aws infrastructureProvisioner) {
validateMiniPkgInstallationDisabled(aws, CentOS7)
})
})
Context("using a Minikube RedHat 7 layout", func() {
ItOnAWS("should succeed if and only if all packages are installed on the node", func(aws infrastructureProvisioner) {
validateMiniPkgInstallationDisabled(aws, RedHat7)
})
})
})
Describe("Running validation with bad SSH key", func() {
Context("Using Ubuntu 16.04", func() {
ItOnAWS("should result in an ssh validation error", func(aws infrastructureProvisioner) {
WithMiniInfrastructure(Ubuntu1604LTS, aws, func(node NodeDeets, sshKey string) {
badSSHKey, err := getBadSSHKeyFile()
if err != nil {
Fail("Unexpected error generating fake SSH key: %v")
}
ValidateKismaticMiniWithBadSSH(node, node.SSHUser, badSSHKey)
})
})
})
})
})