-
Notifications
You must be signed in to change notification settings - Fork 141
/
tc000050_plan_and_manual_approve_no_outputs_test.go
252 lines (229 loc) · 8.85 KB
/
tc000050_plan_and_manual_approve_no_outputs_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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
package controllers
import (
"os"
"testing"
infrav1 "github.com/flux-iac/tofu-controller/api/v1alpha2"
sourcev1 "github.com/fluxcd/source-controller/api/v1"
. "github.com/onsi/gomega"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"context"
"time"
)
// +kubebuilder:docs-gen:collapse=Imports
func Test_000050_plan_and_manual_approve_no_outputs_test(t *testing.T) {
Spec("This spec describes the behaviour of a Terraform resource that is planned and manually approved.")
It("should be reconciled to become planned.")
It("should wait for a manually approval.")
It("then should be reconciled to the applied state.")
const (
sourceName = "gr-plan-and-manual-approve-no-output"
terraformName = "tf-plan-and-manual-approve-no-output"
)
ctx := context.Background()
g := NewWithT(t)
Given("a GitRepository")
By("defining a new GitRepository resource.")
updatedTime := time.Now()
testRepo := sourcev1.GitRepository{
ObjectMeta: metav1.ObjectMeta{
Name: sourceName,
Namespace: "flux-system",
},
Spec: sourcev1.GitRepositorySpec{
URL: "https://github.com/openshift-fluxv2-poc/podinfo",
Reference: &sourcev1.GitRepositoryRef{
Branch: "master",
},
Interval: metav1.Duration{Duration: time.Second * 30},
},
}
By("creating the GitRepository resource in the cluster.")
It("should be created successfully.")
g.Expect(k8sClient.Create(ctx, &testRepo)).Should(Succeed())
defer waitResourceToBeDelete(g, &testRepo)
Given("the GitRepository's reconciled status")
By("setting the GitRepository's status, with the downloadable BLOB's URL, and the correct checksum.")
testRepo.Status = sourcev1.GitRepositoryStatus{
ObservedGeneration: int64(1),
Conditions: []metav1.Condition{
{
Type: "Ready",
Status: metav1.ConditionTrue,
LastTransitionTime: metav1.Time{Time: updatedTime},
Reason: "GitOperationSucceed",
Message: "Fetched revision: master/b8e362c206e3d0cbb7ed22ced771a0056455a2fb",
},
},
Artifact: &sourcev1.Artifact{
Path: "gitrepository/flux-system/test-tf-controller/b8e362c206e3d0cbb7ed22ced771a0056455a2fb.tar.gz",
URL: server.URL() + "/file.tar.gz",
Revision: "master/b8e362c206e3d0cbb7ed22ced771a0056455a2fb",
Digest: "sha256:80ddfd18eb96f7d31cadc1a8a5171c6e2d95df3f6c23b0ed9cd8dddf6dba1406",
LastUpdateTime: metav1.Time{Time: updatedTime},
},
}
It("should be updated successfully.")
g.Expect(k8sClient.Status().Update(ctx, &testRepo)).Should(Succeed())
By("checking that the status and its URL gets reconciled.")
gitRepoKey := types.NamespacedName{Namespace: "flux-system", Name: sourceName}
createdRepo := sourcev1.GitRepository{}
g.Expect(k8sClient.Get(ctx, gitRepoKey, &createdRepo)).Should(Succeed())
Given("a Terraform resource with manual approval, attached to the given GitRepository resource")
By("creating a new TF resource without specifying the .spec.approvePlan field.")
By("attaching the TF resource to the repo via `sourceRef`.")
helloWorldTF := infrav1.Terraform{
ObjectMeta: metav1.ObjectMeta{
Name: terraformName,
Namespace: "flux-system",
},
Spec: infrav1.TerraformSpec{
// Note that we do not specify the `ApprovePlan` field
Path: "./terraform-hello-world-example",
SourceRef: infrav1.CrossNamespaceSourceReference{
Kind: "GitRepository",
Name: sourceName,
Namespace: "flux-system",
},
Interval: metav1.Duration{Duration: time.Second * 10},
},
}
It("should be created and attached successfully.")
g.Expect(k8sClient.Create(ctx, &helloWorldTF)).Should(Succeed())
defer waitResourceToBeDelete(g, &helloWorldTF)
By("checking that the TF resource existed inside the cluster.")
helloWorldTFKey := types.NamespacedName{Namespace: "flux-system", Name: terraformName}
createdHelloWorldTF := infrav1.Terraform{}
g.Eventually(func() bool {
err := k8sClient.Get(ctx, helloWorldTFKey, &createdHelloWorldTF)
if err != nil {
return false
}
return true
}, timeout, interval).Should(BeTrue())
By("checking that the TF's status conditions got reconciled.")
g.Eventually(func() int {
err := k8sClient.Get(ctx, helloWorldTFKey, &createdHelloWorldTF)
if err != nil {
return -1
}
return len(createdHelloWorldTF.Status.Conditions)
}, timeout*3, interval).ShouldNot(BeZero())
Given("the plan id is the `plan` plus the branch name (master) plus the commit id.")
const planId = "plan-master-b8e362c206"
By("checking that the planned status of the TF is created successfully.")
By("checking the reason is `TerraformPlannedWithChanges`.")
By("checking the pending plan is the $planId.")
g.Eventually(func() map[string]interface{} {
err := k8sClient.Get(ctx, helloWorldTFKey, &createdHelloWorldTF)
if err != nil {
return nil
}
for _, c := range createdHelloWorldTF.Status.Conditions {
if c.Type == "Plan" {
return map[string]interface{}{
"Type": c.Type,
"Reason": c.Reason,
"Pending": createdHelloWorldTF.Status.Plan.Pending,
}
}
}
return nil
}, timeout, interval).Should(Equal(map[string]interface{}{
"Type": infrav1.ConditionTypePlan,
"Reason": "TerraformPlannedWithChanges",
"Pending": planId,
}))
By("checking the message of the ready status contains $planId.")
g.Eventually(func() map[string]interface{} {
err := k8sClient.Get(ctx, helloWorldTFKey, &createdHelloWorldTF)
if err != nil {
return nil
}
for _, c := range createdHelloWorldTF.Status.Conditions {
if c.Type == "Ready" {
return map[string]interface{}{
"Type": c.Type,
"Reason": c.Reason,
"Message": c.Message,
}
}
}
return nil
}, timeout*3, interval).Should(Equal(map[string]interface{}{
"Type": "Ready",
"Reason": "TerraformPlannedWithChanges",
"Message": "Plan generated: set approvePlan: \"plan-master-b8e362c206\" to approve this plan.",
}))
By("checking that the planned secret is created.")
By("checking that the label of the planned secret is the $planId.")
tfplanKey := types.NamespacedName{Namespace: "flux-system", Name: "tfplan-default-" + terraformName}
tfplanSecret := corev1.Secret{}
g.Eventually(func() map[string]interface{} {
err := k8sClient.Get(ctx, tfplanKey, &tfplanSecret)
if err != nil {
return nil
}
return map[string]interface{}{
"SavedPlan": tfplanSecret.Annotations["savedPlan"],
"TFPlanEmpty": string(tfplanSecret.Data["tfplan"]) == "",
"HasEncodingAnnotation": tfplanSecret.Annotations["encoding"] != "" && tfplanSecret.Annotations["encoding"] == "gzip",
}
}, timeout, interval).Should(Equal(map[string]interface{}{
"SavedPlan": planId,
"TFPlanEmpty": false,
"HasEncodingAnnotation": true,
}))
By("setting the .spec.approvePlan to be plan-main- and a part of commit id (b8e362c206) to approve the plan.")
createdHelloWorldTF.Spec.ApprovePlan = "plan-master-b8e362c206"
g.Expect(k8sClient.Update(ctx, &createdHelloWorldTF)).Should(Succeed())
It("should continue the reconciliation process to the apply state.")
By("checking that the applied status reason is TerraformAppliedSucceed.")
By("checking that the last applied plan is really the pending plan.")
g.Eventually(func() map[string]interface{} {
err := k8sClient.Get(ctx, helloWorldTFKey, &createdHelloWorldTF)
if err != nil {
return nil
}
for _, c := range createdHelloWorldTF.Status.Conditions {
if c.Type == "Apply" {
return map[string]interface{}{
"Type": c.Type,
"Reason": c.Reason,
"LastAppliedPlan": createdHelloWorldTF.Status.Plan.LastApplied,
}
}
}
return nil
}, timeout, interval).Should(Equal(map[string]interface{}{
"Type": infrav1.ConditionTypeApply,
"Reason": infrav1.TFExecApplySucceedReason,
"LastAppliedPlan": planId,
}))
// TODO check Output condition
It("should contain a list of available outputs in the status.")
By("checking that .status.availableOutput in the TF resource.")
g.Eventually(func() []string {
err := k8sClient.Get(ctx, helloWorldTFKey, &createdHelloWorldTF)
if err != nil {
return nil
}
return createdHelloWorldTF.Status.AvailableOutputs
}, timeout, interval).Should(Equal([]string{"hello_world"}))
if os.Getenv("DISABLE_TF_K8S_BACKEND") == "1" {
It("should not produce a Secret because the controller runs locally, outside Kubernetes.")
By("checking there are no secret generated by default.")
tfStateKey := types.NamespacedName{Namespace: "flux-system", Name: "tfstate-default-" + terraformName}
tfStateSecret := corev1.Secret{}
g.Eventually(func() string {
err := k8sClient.Get(ctx, tfStateKey, &tfStateSecret)
if err != nil {
return err.Error()
}
return tfStateSecret.Name
}, timeout, interval).Should(Equal("secrets \"tfstate-default-tf-plan-and-manual-approve-no-output\" not found"))
} else {
// TODO there's must be the default tfstate secret
}
}