-
Notifications
You must be signed in to change notification settings - Fork 18
/
cli_test.go
302 lines (292 loc) · 8.86 KB
/
cli_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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
package main
import (
"os"
"reflect"
"strings"
"testing"
"github.com/coveooss/gotemplate/v3/collections"
"github.com/stretchr/testify/assert"
)
func NewTestApplication(args []string, unsetTgfArgs bool) *TGFApplication {
if unsetTgfArgs {
for _, env := range os.Environ() {
if strings.HasPrefix(env, "TGF_") {
name, _ := collections.Split2(env, "=")
_ = os.Setenv(name, "")
}
}
}
return NewTGFApplication(args)
}
func TestNewApplicationWithOptionsAndAliases(t *testing.T) {
t.Parallel()
tests := []struct {
name string
args []string
tgfArgsEnv string
wantOptions map[string]interface{}
wantUnmanaged []string
}{
{
"Empty",
[]string{},
"",
map[string]interface{}{},
nil,
},
{
"Managed arg",
[]string{"--ri"},
"",
map[string]interface{}{"Refresh": true, "DockerInteractive": true},
nil,
},
{
"Managed and unmanaged arg",
[]string{"--li", "--stuff"},
"",
map[string]interface{}{"UseLocalImage": true, "DockerInteractive": true},
[]string{"--stuff"},
},
{
"Alias with an unmanaged arg",
[]string{"my_recursive_alias", "--stuff4"},
"",
map[string]interface{}{"Refresh": true, "UseLocalImage": true, "WithDockerMount": true},
[]string{"--stuff3", "--stuff4"},
},
{
"Alias with an argument",
[]string{"my_recursive_alias", "--no-interactive"},
"",
map[string]interface{}{"DockerInteractive": false},
[]string{"--stuff3"},
},
{
"Disable flag (shown as `no` in the help)",
[]string{"--no-aws"},
"",
map[string]interface{}{"UseAWS": false, "DockerInteractive": true},
nil,
},
{
"Disable short flag (shown as `no` in the help)",
[]string{"--na"},
"",
map[string]interface{}{"UseAWS": false, "DockerInteractive": true},
nil,
},
{
"--temp = --temp-location host",
[]string{"--temp"},
"",
map[string]interface{}{"TempDirMountLocation": mountLocHost},
nil,
},
{
"--no-temp = --temp-location none",
[]string{"--no-temp"},
"",
map[string]interface{}{"TempDirMountLocation": mountLocNone},
nil,
},
{
"--temp-location wins over --temp",
[]string{"--temp", "--temp-location", "none"},
"",
map[string]interface{}{"TempDirMountLocation": mountLocNone},
nil,
},
{
"--temp-location wins over --no-temp",
[]string{"--temp-location", "host", "--no-temp"},
"",
map[string]interface{}{"TempDirMountLocation": mountLocHost},
nil,
},
{
"--temp-location default",
[]string{},
"",
map[string]interface{}{"TempDirMountLocation": mountLocVolume},
nil,
},
{
"tgf argument after -- are not evaluated",
[]string{"--temp-location", "host", "--", "--no-aws"},
"",
map[string]interface{}{"TempDirMountLocation": mountLocHost, "UseAWS": true},
[]string{"--no-aws"},
},
{
"tgf argument after -- are not evaluated #2",
[]string{"--temp-location", "host", "--no-aws", "--", "--no-aws"},
"",
map[string]interface{}{"TempDirMountLocation": mountLocHost, "UseAWS": false},
[]string{"--no-aws"},
},
{
"tgf argument from env args",
[]string{"--temp-location", "host"},
"--no-aws",
map[string]interface{}{"TempDirMountLocation": mountLocHost, "UseAWS": false},
nil,
},
{
"tgf argument from env args (with -- in command)",
[]string{"--temp-location", "host", "--", "--no-aws"},
"--no-aws",
map[string]interface{}{"TempDirMountLocation": mountLocHost, "UseAWS": false},
[]string{"--no-aws"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
assert.NotPanics(t, func() {
os.Setenv(envArgs, tt.tgfArgsEnv)
defer os.Unsetenv(envArgs)
app := NewTestApplication(tt.args, false)
config := &TGFConfig{
tgf: app,
Aliases: map[string]string{
"my_alias": "--ri --li --stuff3",
"my_recursive_alias": "my_alias --with-docker-mount",
},
}
config.ParseAliases()
assert.Equal(t, tt.wantUnmanaged, app.Unmanaged, "Unmanaged args are not equal")
for wantField, wantValueInt := range tt.wantOptions {
if wantValue, ok := wantValueInt.(bool); ok {
assert.Equal(t, wantValue, reflect.ValueOf(app).Elem().FieldByName(wantField).Interface().(bool), wantField)
} else if wantValue, ok := wantValueInt.(string); ok {
assert.Equal(t, wantValue, reflect.ValueOf(app).Elem().FieldByName(wantField).Interface().(string), wantField)
} else if wantValue, ok := wantValueInt.(MountLocation); ok {
assert.Equal(t, wantValue, reflect.ValueOf(app).Elem().FieldByName(wantField).Interface().(MountLocation), wantField)
} else {
t.Error("The wanted value can only be bool or string")
}
}
})
})
}
}
func TestApplicationUnmanagedArgs(t *testing.T) {
t.Parallel()
tests := []struct {
name string // The name of the test to find the failing one
args []string // The args passed to the Application
expectedUnmanaged []string // What we expect to be marked as unmanaged
}{
{
"tgf leave every unmanaged arg intact after its own args",
[]string{"--temp-location", "host", "-var", "region=us-west-2", "-auto-approve"},
[]string{"-var", "region=us-west-2", "-auto-approve"},
},
{
"tgf leave every unmanaged arg intact when they're before its own args",
[]string{"-var", "region=us-west-2", "-auto-approve", "--temp-location", "host"},
[]string{"-var", "region=us-west-2", "-auto-approve"},
},
{
// This test is a safety to catch if someone adds a -v flag to not break
// Terraform "-var" single dash flag. It will crash trying to parse -ar
// because the underlying flag parser will consider -var as equivalent to
// writing "-v -a -r" and so may try to continue reading "-a" and "-r" or
// "ar" as a value
"[case 1] tgf leaves every argument unmanaged",
[]string{"-v", "-a", "-r", "-var", "region=us-west-2", "-auto-approve"},
[]string{"-v", "-a", "-r", "-var", "region=us-west-2", "-auto-approve"},
},
{
"[case 2] tgf leaves every argument unmanaged",
[]string{"apply", "-auto-approve", "-var", "region=us-west-2"},
[]string{"apply", "-auto-approve", "-var", "region=us-west-2"},
},
{
"[case 3] tgf leaves every argument unmanaged",
[]string{"plan", "plan-all", "apply", "apply-all"},
[]string{"plan", "plan-all", "apply", "apply-all"},
},
{
"[case 4] tgf leaves every argument unmanaged",
[]string{"output-all", "destroy-all", "-profile", "aprofile"},
[]string{"output-all", "destroy-all", "-profile", "aprofile"},
},
{
"tgf catches its own --profile flag",
[]string{"output-all", "destroy-all", "--profile", "aprofile"},
[]string{"output-all", "destroy-all"},
},
{
"tgf catches its own -P (short flag for --profile)",
[]string{"output-all", "destroy-all", "-P", "aprofile"},
[]string{"output-all", "destroy-all"},
},
{
"tgf leaves Terragrunt options unmanaged",
[]string{
// One in two purposely have double dash just to play with parsing
// to make sure they always get parsed correctly
"plan",
"-terragrunt-config", "somevalue",
"--terragrunt-tfpath", "somevalue",
"-terragrunt-non-interactive", "somevalue",
"--terragrunt-working-dir", "somevalue",
"-terragrunt-source", "somevalue",
"--terragrunt-source-update", "somevalue",
"-terragrunt-ignore-dependency-errors", "somevalue",
"--terragrunt-logging-level", "somevalue",
"-terragrunt-logging-file-dir", "somevalue",
"--terragrunt-logging-file-level", "somevalue",
"-terragrunt-approval", "somevalue",
"--terragrunt-flush-delay", "somevalue",
"-terragrunt-workers", "somevalue",
"--terragrunt-include-empty-folders", "somevalue",
},
[]string{
"plan",
"-terragrunt-config", "somevalue",
"--terragrunt-tfpath", "somevalue",
"-terragrunt-non-interactive", "somevalue",
"--terragrunt-working-dir", "somevalue",
"-terragrunt-source", "somevalue",
"--terragrunt-source-update", "somevalue",
"-terragrunt-ignore-dependency-errors", "somevalue",
"--terragrunt-logging-level", "somevalue",
"-terragrunt-logging-file-dir", "somevalue",
"--terragrunt-logging-file-level", "somevalue",
"-terragrunt-approval", "somevalue",
"--terragrunt-flush-delay", "somevalue",
"-terragrunt-workers", "somevalue",
"--terragrunt-include-empty-folders", "somevalue",
},
},
{
"tgf leaves Terraform commands and options unmanaged",
// Testing only a subset and mostly those we use and haven't tested yet
// and those which have dashes
[]string{
"destroy",
"force-unlock",
"-chdir=DIR",
"-help",
"-version",
},
[]string{
"destroy",
"force-unlock",
"-chdir=DIR",
"-help",
"-version",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
assert.NotPanics(t, func() {
app := NewTestApplication(tt.args, false)
assert.Equal(t, tt.expectedUnmanaged, app.Unmanaged, "Unmanaged args are not equal")
})
})
}
}