-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathcmd_test.go
135 lines (129 loc) · 3.21 KB
/
cmd_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
// File: cmd_test.go
package engine
import "testing"
func TestSplitByQuotes(t *testing.T) {
tests := []struct {
name string
input string
expected []string
}{
{
name: "NoQuotes",
input: "Hello World",
expected: []string{"Hello World"},
},
{
name: "ValidQuote",
input: `"Hello" "World"`,
expected: []string{``, `"Hello"`, ` `, `"World"`},
},
{
name: "ValidQuoteWithEscape",
input: `"Hello\" World"`,
expected: []string{``, `"Hello\" World"`},
},
{
name: "Nothing",
input: "",
expected: []string{},
},
{
name: "SpaceInsideQuote",
input: `"Hello World"`,
expected: []string{``, `"Hello World"`},
},
{
name: "SingleChar",
input: "H",
expected: []string{"H"},
},
{
name: "SingleQuote",
input: `"Hello`,
expected: []string{``, ``, `"Hello`},
},
{
name: "ThreeQuotes",
input: `Test "Hello "World" End\"`,
expected: []string{`Test `, `"Hello "`, `World`, ``, `" End\"`},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := splitByQuotes(tt.input)
if !equal(got, tt.expected) {
t.Errorf("splitByQuotes() = %v, want %v", got, tt.expected)
}
})
}
}
// Helper function to assert equality of two string slices.
func equal(a, b []string) bool {
if len(a) != len(b) {
return false
}
for i, v := range a {
if v != b[i] {
return false
}
}
return true
}
// Testing for replaceVariablesForInterpreter
func TestReplaceVariablesForInterpreter(t *testing.T) {
tests := []struct {
name string
interpreter string
envMap map[string]string
expected []string
shouldFail bool
}{
{
name: "No quotes",
interpreter: "/bin/bash -c ${COMMAND} tail",
envMap: map[string]string{"COMMAND": "echo Hello!"},
expected: []string{"/bin/bash", "-c", "echo", "Hello!", "tail"},
},
{
name: "Quotes Variables",
interpreter: `/bin/bash -c "${COMMAND}" tail`,
envMap: map[string]string{"COMMAND": "Hello, World!"},
expected: []string{"/bin/bash", "-c", "Hello, World!", "tail"},
},
{
name: "Double escape",
interpreter: `/bin/bash -c "${COMMAND}" ${TWO} tail`,
envMap: map[string]string{
"COMMAND": "Hello, World!",
"TWO": "${COMMAND}",
},
expected: []string{"/bin/bash", "-c", "Hello, World!", "${COMMAND}", "tail"},
},
{
name: "aws cli issue",
interpreter: "aws ${ARGS}",
envMap: map[string]string{
"ARGS": `ec2 describe-instances --region us-east-1 --query 'Reservations[*].Instances[*].{Instance:InstanceId,State:State.Name}'`,
},
expected: []string{
`aws`,
`ec2`,
`describe-instances`,
`--region`, `us-east-1`,
`--query`, `Reservations[*].Instances[*].{Instance:InstanceId,State:State.Name}`,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := replaceVariablesForInterpreter(tt.interpreter, tt.envMap)
if (err != nil) != tt.shouldFail {
t.Errorf("replaceVariablesForInterpreter() error = %v, want %v", err, tt.shouldFail)
return
}
if !equal(got, tt.expected) {
t.Errorf("replaceVariablesForInterpreter() = %v, want %v", got, tt.expected)
}
})
}
}