This repository was archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtfortools_test.go
343 lines (306 loc) · 9.34 KB
/
tfortools_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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
// Copyright (c) 2017 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package tfortools
import (
"bytes"
"fmt"
"io/ioutil"
"math/rand"
"reflect"
"strings"
"testing"
"text/template"
)
type testint int
var templateUsageTests = []struct {
obj interface{}
expected string
}{
{int(0), "int"},
{testint(0), "tfortools.testint"},
{[]int{}, "[]int"},
{false, "bool"},
{[5]int{}, "[5]int"},
{func(int) (int, error) { return 0, nil }, "func(int) (int, error)"},
{"", "string"},
{struct {
X int
Y string
hidden float64
Invalid chan int
Empty struct{}
}{}, "struct {\nX int\nY string\nEmpty struct {\n}\n}"},
{map[string]struct{ X int }{}, "map[string]struct {\nX int\n}"},
{map[string]struct{ x int }{}, "map[string]struct {\n}"},
{struct {
hidden int
Embed struct {
X int
}
}{}, "struct {\nEmbed struct {\nX int\n}\n}"},
{struct{ hidden int }{}, "struct {\n}"},
{struct{ Empty struct{} }{}, "struct { Empty struct{\n}}"},
{struct{}{}, "struct {\n}"},
{struct {
X int `test:"tag" tfortools:"It's " tfortools:"an \"int\""`
Y []int `test:"tag"`
Z map[string]int `test:"tag"`
B struct {
A int `tfortools:"Another int"`
} `test:"tag"`
}{}, "struct { X int `test:\"tag\"` // It's an \"int\"\n Y []int `test:\"tag\"`; Z map[string]int `test:\"tag\"`; B struct {\nA int // Another int\n} `test:\"tag\"`} "},
{[]struct {
X int
Y string
}{}, "[]struct { X int; Y string}"},
{[]*struct {
X int
Y string
}{}, "[]*struct { X int; Y string}"},
}
// Check GenerateUsageUndecorated generates the correct output
//
// Call GenerateUsageUndecorated on a variety of different objects including
// ints, slices, structs, structs with tags, structs with private members, etc.
//
// The expected output should be generated by each test.
func TestTemplateGenerateUsage(t *testing.T) {
for _, s := range templateUsageTests {
gen := GenerateUsageUndecorated(s.obj)
var buf bytes.Buffer
formatType(&buf, []byte(s.expected))
trimmedGen := strings.TrimSpace(gen)
trimmedExpected := strings.TrimSpace(buf.String())
if trimmedGen != trimmedExpected {
t.Errorf("Bad template usage. Found\n%s, expected\n%s",
trimmedGen, trimmedExpected)
}
}
fmt.Println()
}
// Verify that help text is generated correctly when using a Config option
//
// Check that all the following generated help strings are equal:
// 1. Help generated using a nil Config
// 2. Help generated using a Config object created with OptAllFNs
// 3. Help generated using a Config object created with all the available options.
// 4. Help generated using a Config object created by specifying all the available options twice.
// 5. Help generated using a Config object created by specifying all the available options in a
// different sort order.
func TestOptions(t *testing.T) {
nilHelp := GenerateUsageDecorated("-f", 0, nil)
cfgAllHelp := GenerateUsageDecorated("-f", 0, NewConfig(OptAllFns))
if nilHelp != cfgAllHelp {
t.Errorf("Default help message and message generated with a Config object do not match: %s %s",
nilHelp, cfgAllHelp)
}
opts := []func(*Config){
OptFilter,
OptFilterContains,
OptFilterHasPrefix,
OptFilterHasSuffix,
OptFilterFolded,
OptFilterRegexp,
OptToJSON,
OptToCSV,
OptSelect,
OptSelectAlt,
OptTable,
OptTableAlt,
OptHTable,
OptHTableAlt,
OptTableX,
OptTableXAlt,
OptHTableX,
OptHTableXAlt,
OptCols,
OptSort,
OptRows,
OptHead,
OptTail,
OptDescribe,
OptPromote,
OptSliceof,
OptToTable,
}
// Check that specifying an option twice does not lead to duplicate help.
cfgDoubleHelp := GenerateUsageDecorated("-f", 0, NewConfig(append(opts, opts...)...))
if nilHelp != cfgDoubleHelp {
t.Errorf("Default help message and message generated with options do not match: %s %s",
nilHelp, cfgDoubleHelp)
}
for range opts {
x, y := rand.Intn(len(opts)), rand.Intn(len(opts))
opts[x], opts[y] = opts[y], opts[x]
}
cfgReorderedHelp := GenerateUsageDecorated("-f", 0, NewConfig(opts...))
if nilHelp != cfgReorderedHelp {
t.Errorf("Default help message and message generated with randomly ordered options do not match: %s %s",
nilHelp, cfgDoubleHelp)
}
}
// Check that OptAllFns makes a copy of the globals it uses
//
// Store the old length of funcMap and funcHelpSlice, create a new Config
// object using OptAllFNs, add a new custom function, and then recheck the
// lengths of the two global variables.
//
// The lengths of the global variables should not have changed.
func TestOptAllFns(t *testing.T) {
oldMapLen := len(funcMap)
oldSliceLen := len(funcHelpSlice)
cfg := NewConfig(OptAllFns)
err := cfg.AddCustomFn(func() int {
return 0
}, "zero", "- zero \"Returns\" zero")
if err != nil {
t.Errorf("AddCustomFn failed with err : %v", err)
}
if oldMapLen != len(funcMap) {
t.Errorf("Global funcmap should not be modified")
}
if oldSliceLen != len(funcHelpSlice) {
t.Errorf("Global funcHelpSlice should not be modified")
}
}
// Check an error is returned when cols is used incorrectly.
//
// Invoke the cols function with an invalid parameter and check
// the error returned.
//
// OutputToTemplate should not panic and a template.ExecError should
// be returned. The Name field of the error should be "cols".
func TestBadCols(t *testing.T) {
data := []struct{ FirstName, MiddleName, Surname string }{}
script := `{{cols . "Age"}}`
err := OutputToTemplate(ioutil.Discard, "cols", script, data, nil)
if err == nil {
t.Errorf("Error expected")
}
terr := err.(template.ExecError)
if terr.Name != "cols" {
t.Errorf("terr.Name should be cols")
}
}
// Test tfortools functions work with slice of pointers to structures
//
// Sort a slice of pointers to structs, extract two columns, filter by surname,
// check one of the values, and generate a table.
//
// The sort, cols and table function should work fine. The data extracted
// should match what is expected.
func TestSliceOfPointers(t *testing.T) {
data := []*struct{ FirstName, MiddleName, Surname string }{
{"Marcus", "Tullius", "Cicero"},
{"Gaius", "Julius", "Caesar"},
{"Marcus", "Licinius", "Crassus"},
}
script1 := `
{{- with cols (sort . "MiddleName") "FirstName" "Surname"}}
{{- select (filter . "Surname" "Caesar") "FirstName"}}
{{- end}}`
script2 := `{{table .}}`
var b bytes.Buffer
err := OutputToTemplate(&b, "indirect1", script1, data, nil)
if err != nil {
t.Errorf("Unexpected error processing slice of pointers to structs: %v",
err)
}
found := strings.TrimSpace(b.String())
if found != "Gaius" {
t.Errorf("Expected Gaius got %s", found)
}
b.Reset()
err = OutputToTemplate(ioutil.Discard, "indirect2", script2, data, nil)
if err != nil {
t.Errorf("Unable to generate a table of pointers to structs: %v", err)
}
}
func testToTableInvalid(t *testing.T, data [][]string) {
defer func() {
err := recover()
if err == nil {
t.Errorf("Expected totable %v to fail", data)
} else if _, ok := err.(template.ExecError); !ok {
t.Errorf("Unexpected error type %T", err)
}
}()
_ = toTable(data)
}
func TestToTable(t *testing.T) {
data := [][]string{
{"lowercase", " Contains Spaces ", "*invalid_char", "1_num_start"},
{"A", "B", "10", "10.5"},
}
fieldNames := []string{"Lowercase", "Contains_Spaces", "X_invalid_char", "X1_num_start"}
fieldTypes := []reflect.Type{reflect.TypeOf(""), reflect.TypeOf(""), reflect.TypeOf(10),
reflect.TypeOf(10.5)}
res := toTable(data)
if res == nil {
t.Errorf("Expected slice of structures, got 0 element slice")
}
typ := reflect.ValueOf(res).Index(0).Type()
for i, fname := range fieldNames {
field := typ.Field(i)
if field.Name != fname {
t.Errorf("Unexpected structure name, wanted %s got %s",
fname, field.Name)
}
if field.Type != fieldTypes[i] {
t.Errorf("Unexpected field type, wanted %s got %s",
fieldTypes[i], field.Type)
}
}
// Test invalid input
testToTableInvalid(t, [][]string{
{"lowercase", " Contains Spaces ", "*invalid_char", "1_num_start"},
{"A", "B", "10", "10.5"},
{"A", "B", "i'm a string", "10.5"},
})
testToTableInvalid(t, nil)
testToTableInvalid(t, [][]string{
{"lowercase", "lowercase", "*invalid_char", "1_num_start"},
{"A", "B", "10", "10.5"},
{"A", "B", "i'm a string", "10.5"},
})
testToTableInvalid(t, [][]string{
{"", "lowercase", "*invalid_char", "1_num_start"},
{"A", "B", "10", "10.5"},
{"A", "B", "i'm a string", "10.5"},
})
}
type testStruct struct{}
func (t *testStruct) DoSomething() {
}
func (t *testStruct) Get1() string {
return ""
}
func (t *testStruct) Get2() (string, string) {
return "", ""
}
func TestDescribeMethods(t *testing.T) {
var buf bytes.Buffer
expected := `tfortools.testStruct
Methods:
DoSomething()
Get1() string
Get2() (string, string)
`
if err := OutputToTemplate(&buf, "names", `{{describe .}}`, testStruct{}, nil); err != nil {
panic(err)
}
if buf.String() != expected {
t.Errorf("Expected\n%s\ngot\n%s", expected, buf.String())
}
}