This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
forked from jlandowner/helm-chartsnap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
169 lines (149 loc) · 5.3 KB
/
main_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
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
package main
import (
"os"
"testing"
. "github.com/jlandowner/helm-chartsnap/pkg/snap/gomega"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestMain(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Main Suite")
}
var _ = Describe("rootCmd", func() {
BeforeEach(func() {
initRootCmd()
})
Context("success", func() {
Context("snapshot local chart with single values file", func() {
It("should pass", func() {
rootCmd.SetArgs([]string{"--chart", "example/app1", "-f", "example/app1/test/test_ingress_enabled.yaml", "--namespace", "default"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
Context("snapshot local chart with values directory", func() {
It("should pass", func() {
rootCmd.SetArgs([]string{"--chart", "example/app1", "-f", "example/app1/test/", "--namespace", "default"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
Context("snapshot OCI chart", func() {
It("should pass", func() {
rootCmd.SetArgs([]string{"--chart", "oci://ghcr.io/nginxinc/charts/nginx-gateway-fabric", "-f", "example/remote/nginx-gateway-fabric.values.yaml", "--", "--namespace", "nginx-gateway"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
Context("snapshot remote chart 1", func() {
It("should pass", func() {
rootCmd.SetArgs([]string{"--chart", "cilium", "-f", "example/remote/cilium.values.yaml", "--", "--namespace", "kube-system", "--repo", "https://helm.cilium.io"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
Context("snapshot remote chart 2", func() {
It("should pass", func() {
rootCmd.SetArgs([]string{"--chart", "ingress-nginx", "-f", "example/remote/ingress-nginx.values.yaml", "--", "--namespace", "ingress-nginx", "--repo", "https://kubernetes.github.io/ingress-nginx", "--skip-tests"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
Context("snapshot empty chart", func() {
It("should pass", func() {
rootCmd.SetArgs([]string{"--chart", "example/app2", "--namespace", "default"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
Context("snapshot helm error", func() {
It("should pass", func() {
rootCmd.SetArgs([]string{"--chart", "example/app3", "--namespace", "default"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
Context("snapshot empty chart with no config file", func() {
It("should pass", func() {
rootCmd.SetArgs([]string{"--chart", "example/app2", "--namespace", "default", "--config-file", "notfound"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
Context("snapshot empty chart with debug mode", func() {
It("should pass", func() {
os.Setenv("HELM_DEBUG", "true")
defer os.Unsetenv("HELM_DEBUG")
rootCmd.SetArgs([]string{"--chart", "example/app2", "--namespace", "default"})
err := rootCmd.Execute()
Expect(err).ShouldNot(HaveOccurred())
})
})
})
Context("fail", func() {
Context("including dynamic outputs", func() {
It("should fail", func() {
rootCmd.SetArgs([]string{"--chart", "example/app1", "--namespace", "default"})
err := rootCmd.Execute()
Expect(err).To(HaveOccurred())
Ω(err.Error()).To(MatchSnapShot())
})
})
Context("snapshot is different", func() {
It("should fail", func() {
rootCmd.SetArgs([]string{"--chart", "example/app1", "--namespace", "default", "-f", "example/app1/testfail/test_ingress_enabled.yaml"})
err := rootCmd.Execute()
Expect(err).To(HaveOccurred())
Ω(err.Error()).To(MatchSnapShot())
})
})
Context("values directory contains not matched snapshots", func() {
It("should fail", func() {
rootCmd.SetArgs([]string{"--chart", "example/app1", "--namespace", "default", "-f", "example/app1/testfail"})
err := rootCmd.Execute()
Expect(err).To(HaveOccurred())
Ω(err.Error()).To(MatchSnapShot())
})
})
Context("values file not found", func() {
It("should fail", func() {
rootCmd.SetArgs([]string{"--chart", "example/app1", "-f", "example/app1/test/notfound.yaml", "--namespace", "default"})
err := rootCmd.Execute()
Expect(err).To(HaveOccurred())
Ω(err.Error()).To(MatchSnapShot())
})
})
Context("snapshot helm error with --fail-helm-error", func() {
It("should fail", func() {
rootCmd.SetArgs([]string{"--chart", "example/app3", "--namespace", "default", "--fail-helm-error"})
err := rootCmd.Execute()
Expect(err).To(HaveOccurred())
Ω(err.Error()).To(MatchSnapShot())
})
})
Context("required flag is not set", func() {
It("should fail", func() {
rootCmd.SetArgs([]string{})
err := rootCmd.Execute()
Expect(err).To(HaveOccurred())
Ω(err.Error()).To(MatchSnapShot())
})
})
Context("invalid flag", func() {
It("should fail", func() {
rootCmd.SetArgs([]string{"--chart", "example/app1", "-f", "example/app1/test/test_ingress_enabled.yaml", "--namespace", "default", "--invalid"})
err := rootCmd.Execute()
Expect(err).To(HaveOccurred())
Ω(err.Error()).To(MatchSnapShot())
})
})
})
Context("--help", func() {
It("should show help", func() {
rootCmd.SetArgs([]string{"--help"})
help := rootCmd.UsageString()
Ω(help).To(MatchSnapShot())
})
})
})