forked from danielgtaylor/shorthand
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshorthand_test.go
More file actions
230 lines (221 loc) · 4.1 KB
/
Copy pathshorthand_test.go
File metadata and controls
230 lines (221 loc) · 4.1 KB
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
package shorthand
import (
"encoding/json"
"io"
"io/fs"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
var getInputExamples = []struct {
Name string
Mode fs.FileMode
File io.Reader
Input string
JSON string
Output []byte
}{
{
Name: "No file",
Mode: fs.ModeCharDevice,
Input: "foo[]: 2, bar.another: false, existing: null, existing[]: 1",
JSON: `{
"foo": [2],
"bar": {
"another": false
},
"existing": [1]
}`,
},
{
Name: "Raw file",
File: strings.NewReader("a text file"),
Output: []byte("a text file"),
},
{
Name: "Structured file no args",
File: strings.NewReader(`{"foo":"bar"}`),
Output: []byte(`{"foo":"bar"}`),
},
{
Name: "JSON edit",
File: strings.NewReader(`{
"foo": [1],
"bar": {
"baz": true
},
"existing": [1, 2, 3]
}`),
Input: "foo[]: 2, bar.another: false, existing: null, existing[]: 1",
JSON: `{
"foo": [1, 2],
"bar": {
"another": false,
"baz": true
},
"existing": [1]
}`,
},
}
func TestGetInput(t *testing.T) {
for _, example := range getInputExamples {
t.Run(example.Name, func(t *testing.T) {
input := []string{}
if example.Input != "" {
input = append(input, example.Input)
}
result, isStruct, err := getInput(example.Mode, example.File, input, ParseOptions{
EnableObjectDetection: true,
})
msg := ""
if e, ok := err.(Error); ok {
msg = e.Pretty()
}
require.NoError(t, err, msg)
if example.JSON != "" {
if !isStruct {
t.Fatal("input not recognized as structured data")
}
j, _ := json.Marshal(result)
assert.JSONEq(t, example.JSON, string(j))
}
if example.Output != nil {
assert.Equal(t, example.Output, result)
}
})
}
}
var marshalExamples = []struct {
Name string
Input any
Output string
}{
{
Name: "Simple",
Input: true,
Output: "true",
},
{
Name: "Simple object",
Input: map[string]any{
"foo": "bar",
},
Output: "foo: bar",
},
{
Name: "Multi key",
Input: map[string]any{
"foo": "bar",
"hello": "world",
"num": 1,
"empty": nil,
"bool": false,
},
Output: "bool: false, empty: null, foo: bar, hello: world, num: 1",
},
{
Name: "Nested simple",
Input: map[string]any{
"foo": map[string]any{
"bar": 1,
},
},
Output: "foo.bar: 1",
},
{
Name: "Nested multi key",
Input: map[string]any{
"foo": map[string]any{
"bar": 1,
"baz": 2,
},
},
Output: "foo{bar: 1, baz: 2}",
},
{
Name: "List of list of items",
Input: map[string]any{
"foo": []any{
[]any{1, 2, 3},
},
},
Output: "foo: [[1, 2, 3]]",
},
{
Name: "List of objects",
Input: map[string]interface{}{
"tags": []interface{}{
map[string]interface{}{
"id": "tag1",
"count": map[string]interface{}{
"clicks": 15,
"sales": 3,
},
},
map[string]interface{}{
"id": "tag2",
"count": map[string]interface{}{
"clicks": 7,
"sales": 4,
},
},
},
},
Output: "tags: [{count{clicks: 15, sales: 3}, id: tag1}, {count{clicks: 7, sales: 4}, id: tag2}]",
},
{
Name: "Coerced",
Input: map[string]any{
"null": "null",
"bool": "true",
"num": "1234",
"str": "hello",
},
Output: `bool: "true", "null": "null", num: "1234", str: hello`,
},
{
Name: "File",
Input: map[string]any{
"multi": "I am\na multiline\n value.",
"long": "I am a really long line of text that should probably get loaded from a file",
},
Output: "long: @file, multi: @file",
},
}
func TestMarshal(t *testing.T) {
for _, example := range marshalExamples {
t.Run(example.Name, func(t *testing.T) {
t.Logf("Input: %s", example.Input)
out := MarshalCLI(example.Input)
assert.Equal(t, example.Output, out)
})
}
}
func TestMarshalPretty(t *testing.T) {
result := MarshalPretty(map[string]any{
"foo": 1,
"bar": []any{
2, 3,
},
"baz": map[string]any{
"a": map[any]any{
"b": map[any]any{
"c": true,
"d": false,
},
},
},
})
assert.Equal(t, `{
bar: [
2
3
]
baz.a.b{
c: true
d: false
}
foo: 1
}`, result)
}