-
Notifications
You must be signed in to change notification settings - Fork 4
/
markdown_test.go
394 lines (358 loc) · 8.73 KB
/
markdown_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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
package twowaysql
import (
"log"
"testing"
"github.com/future-architect/go-twowaysql/private/testhelper"
gocmp "github.com/google/go-cmp/cmp"
"gotest.tools/v3/assert"
"gotest.tools/v3/assert/cmp"
)
func init() {
log.SetFlags(log.LstdFlags | log.Lshortfile)
}
func TestParseMarkdown(t *testing.T) {
type args struct {
src string
}
tests := []struct {
name string
args args
want *Document
wantErr string
}{
{
name: "title and sql",
args: args{
src: testhelper.TrimIndent(t, `
# Search User Query
~~~sql
SELECT email, name FROM persons WHERE first_name=/*first_name*/'bob';
~~~
`),
},
want: &Document{
Title: "Search User Query",
SQL: `SELECT email, name FROM persons WHERE first_name=/*first_name*/'bob';`,
},
},
{
name: "with parameter",
args: args{
src: testhelper.TrimIndent(t, `
# Search User Query
~~~sql
SELECT email, name FROM persons WHERE first_name=/*first_name*/'bob';
~~~
## Parameter
| Name | Type | Description |
|------------|--------|-------------|
| first_name | string | search key |
`),
},
want: &Document{
Title: "Search User Query",
SQL: `SELECT email, name FROM persons WHERE first_name=/*first_name*/'bob';`,
Params: []Param{
{
Name: "first_name",
Type: TextType,
Description: "search key",
},
},
},
},
{
name: "with CRUD matrix",
args: args{
src: testhelper.TrimIndent(t, `
# Search User Query
~~~sql
SELECT email, name FROM persons WHERE first_name=/*first_name*/'bob';
~~~
## CRUD Matrix
| Table | C | R | U | D | Description |
|------------|---|---|---|---|-------------|
| persons | X | | | | |
`),
},
want: &Document{
Title: "Search User Query",
SQL: `SELECT email, name FROM persons WHERE first_name=/*first_name*/'bob';`,
CRUDMatrix: []CRUDMatrix{
{
Table: "persons",
C: true,
R: false,
U: false,
D: false,
},
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := ParseMarkdownString(tt.args.src)
if tt.wantErr != "" {
assert.Error(t, err, tt.wantErr)
} else {
assert.NilError(t, err)
assert.Check(t, cmp.DeepEqual(tt.want, got, gocmp.AllowUnexported(Document{})))
}
})
}
}
func TestParseMarkdownTestCases(t *testing.T) {
type args struct {
src string
}
tests := []struct {
name string
args args
want *Document
wantErr string
}{
{
name: "with common test fixture in yaml (nested array)",
args: args{
src: testhelper.TrimIndent(t, `
# Common Test Fixtures
## Test
~~~yaml
fixtures:
persons:
- [employee_no, dept_no, first_name, last_name, email]
- [1, 10, Evan, MacMans, evanmacmans@example.com]
- [2, 11, Malvin, FitzSimons, malvinafitzsimons@example.com]
- [3, 12, Jimmie, Bruce, jimmiebruce@example.com]
~~~
`),
},
want: &Document{
Title: "Common Test Fixtures",
CommonTestFixture: Fixture{
Lang: "yaml",
Tables: []Table{
{
Name: "persons",
Cells: [][]string{
{"employee_no", "dept_no", "first_name", "last_name", "email"},
{"1", "10", "Evan", "MacMans", "evanmacmans@example.com"},
{"2", "11", "Malvin", "FitzSimons", "malvinafitzsimons@example.com"},
{"3", "12", "Jimmie", "Bruce", "jimmiebruce@example.com"},
},
},
},
},
},
},
{
name: "with common test fixture in yaml (object list)",
args: args{
src: testhelper.TrimIndent(t, `
# Common Test Fixtures
## Test
~~~yaml
fixtures:
persons:
- { employee_no: 1, dept_no: 10, first_name: Evan, last_name: MacMans, email: evanmacmans@example.com }
- { employee_no: 2, dept_no: 11, first_name: Malvin, last_name: FitzSimons, email: malvinafitzsimons@example.com }
- { employee_no: 3, dept_no: 12, first_name: Jimmie, last_name: Bruce, email: jimmiebruce@example.com }
~~~
`),
},
want: &Document{
Title: "Common Test Fixtures",
CommonTestFixture: Fixture{
Lang: "yaml",
Tables: []Table{
{
Name: "persons",
Cells: [][]string{
{"dept_no", "email", "employee_no", "first_name", "last_name"},
{"10", "evanmacmans@example.com", "1", "Evan", "MacMans"},
{"11", "malvinafitzsimons@example.com", "2", "Malvin", "FitzSimons"},
{"12", "jimmiebruce@example.com", "3", "Jimmie", "Bruce"},
},
},
},
},
},
},
{
name: "with common test fixture in sql",
args: args{
src: testhelper.TrimIndent(t, `
# Common Test Fixtures
~~~sql
SELECT email FROM persons WHERE first_name=/*first_name*/'bob';
~~~
## Test
~~~sql
DELETE FROM persons;
~~~
`),
},
want: &Document{
Title: "Common Test Fixtures",
SQL: "SELECT email FROM persons WHERE first_name=/*first_name*/'bob';",
CommonTestFixture: Fixture{
Lang: "sql",
Code: "DELETE FROM persons;",
},
},
},
{
name: "select test case (result is map list)",
args: args{
src: testhelper.TrimIndent(t, `
# Test Cases
~~~sql
SELECT email FROM persons WHERE first_name=/*first_name*/'bob';
~~~
## Test
### Case: select test
~~~yaml
fixtures:
persons:
- [employee_no, dept_no, first_name, last_name, email]
- [1, 10, Evan, MacMans, evanmacmans@example.com]
params: { first_name: Evan }
expect:
- { email: evanmacmans@example.com }
~~~
`),
},
want: &Document{
Title: "Test Cases",
SQL: "SELECT email FROM persons WHERE first_name=/*first_name*/'bob';",
TestCases: []TestCase{
{
Name: "select test",
Fixtures: []Table{
{
Name: "persons",
Cells: [][]string{
{"employee_no", "dept_no", "first_name", "last_name", "email"},
{"1", "10", "Evan", "MacMans", "evanmacmans@example.com"},
},
},
},
Params: map[string]string{"first_name": "Evan"},
Expect: [][]string{
{"email"}, {"evanmacmans@example.com"},
},
},
},
},
},
{
name: "select test case (result is nested list)",
args: args{
src: testhelper.TrimIndent(t, `
# Test Cases
~~~sql
SELECT email FROM persons WHERE first_name=/*first_name*/'bob';
~~~
## Test
### Case: select test
~~~yaml
fixtures:
persons:
- [employee_no, dept_no, first_name, last_name, email]
- [1, 10, Evan, MacMans, evanmacmans@example.com]
params: { first_name: Evan }
expect:
- [ email ]
- [ evanmacmans@example.com ]
~~~
`),
},
want: &Document{
Title: "Test Cases",
SQL: "SELECT email FROM persons WHERE first_name=/*first_name*/'bob';",
TestCases: []TestCase{
{
Name: "select test",
Fixtures: []Table{
{
Name: "persons",
Cells: [][]string{
{"employee_no", "dept_no", "first_name", "last_name", "email"},
{"1", "10", "Evan", "MacMans", "evanmacmans@example.com"},
},
},
},
Params: map[string]string{"first_name": "Evan"},
Expect: [][]string{
{"email"}, {"evanmacmans@example.com"},
},
},
},
},
},
{
name: "delete test case",
args: args{
src: testhelper.TrimIndent(t, `
# Test Cases
~~~sql
DELETE FROM persons;
~~~
## Test
### Case: delete test
~~~yaml
testQuery: SELECT count(employee_no) FROM persons;
expect:
- { count: 1 }
~~~
`),
},
want: &Document{
Title: "Test Cases",
SQL: "DELETE FROM persons;",
TestCases: []TestCase{
{
Name: "delete test",
TestQuery: `SELECT count(employee_no) FROM persons;`,
Expect: [][]string{
{"count"}, {"1"},
},
},
},
},
},
{
name: "error: unknown field key in yaml",
args: args{
src: testhelper.TrimIndent(t, `
# Test Cases
~~~sql
DELETE FROM persons;
~~~
## Test
### Case: delete test
testQueries should be testQuery.
results should be result.
~~~yaml
testQueries: SELECT count(employee_no) FROM persons;
results:
- { count: 1 }
~~~
`),
},
wantErr: "YAML keys results, testQueries is invalid in delete test of Test Cases (expect, fixtures, params, testQuery are acceptable)",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := ParseMarkdownString(tt.args.src)
if tt.wantErr != "" {
assert.Error(t, err, tt.wantErr)
} else {
assert.NilError(t, err)
assert.Check(t, cmp.DeepEqual(tt.want, got, gocmp.AllowUnexported(Document{})))
}
})
}
}