-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathparser_test.go
456 lines (435 loc) · 11.1 KB
/
parser_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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
package cooklang
import (
"reflect"
"strings"
"testing"
)
func TestParseString(t *testing.T) {
tests := []struct {
name string
recipe string
want *Recipe
wantErr bool
}{
{
"Works with inline comments",
`-- Don't burn the roux!
Mash @potato{2%kg} until smooth -- alternatively, boil 'em first, then mash 'em, then stick 'em in a stew.`,
&Recipe{
Steps: []Step{
{
Comments: []string{
"Don't burn the roux!",
},
},
{
Ingredients: []Ingredient{
{
Name: "potato",
Amount: IngredientAmount{true, 2.0, "2", "kg"},
},
},
Timers: []Timer{},
Cookware: []Cookware{},
Directions: "Mash potato until smooth",
Comments: []string{"alternatively, boil 'em first, then mash 'em, then stick 'em in a stew."},
},
},
Metadata: make(Metadata),
},
false,
},
{
"Empty string returns an error",
"",
nil,
true,
},
{
"Parses single line comments",
"--This is a comment",
&Recipe{
Steps: []Step{
{
Comments: []string{"This is a comment"},
},
},
Metadata: make(Metadata),
},
false,
},
{
"Parses metadata",
">> key: value",
&Recipe{
Steps: []Step{},
Metadata: Metadata{
"key": "value",
},
},
false,
},
{
"Parses recipe line",
"Place @bacon strips{1%kg} on a baking sheet and glaze with @syrup{1.2%tbsp}.",
&Recipe{
Steps: []Step{
{
Directions: "Place bacon strips on a baking sheet and glaze with syrup.",
Ingredients: []Ingredient{
{
Name: "bacon strips",
Amount: IngredientAmount{true, 1.0, "1", "kg"},
},
{
Name: "syrup",
Amount: IngredientAmount{true, 1.2, "1.2", "tbsp"},
},
},
Timers: []Timer{},
Cookware: []Cookware{},
},
},
Metadata: make(Metadata),
},
false,
},
{
"Parses recipe line with no qty",
"Top with @1000 island dressing{ }",
&Recipe{
Steps: []Step{
{
Directions: "Top with 1000 island dressing",
Ingredients: []Ingredient{
{
Name: "1000 island dressing",
Amount: IngredientAmount{false, 0.0, "", ""},
},
},
Timers: []Timer{},
Cookware: []Cookware{},
},
},
Metadata: make(Metadata),
},
false,
},
{
"Parses Cookware",
"Place the beacon on the #stove and mix with a #standing mixer{} or #fork{2}. Then use #frying pan{three} or #frying pot{two small}",
&Recipe{
Steps: []Step{
{
Directions: "Place the beacon on the stove and mix with a standing mixer or fork. Then use frying pan or frying pot",
Ingredients: []Ingredient{},
Timers: []Timer{},
Cookware: []Cookware{
{Name: "stove", Quantity: 1, IsNumeric: false},
{Name: "standing mixer", Quantity: 1, IsNumeric: false},
{Name: "fork", Quantity: 2, QuantityRaw: "2", IsNumeric: true},
{Name: "frying pan", Quantity: 1, QuantityRaw: "three", IsNumeric: false},
{Name: "frying pot", Quantity: 1, QuantityRaw: "two small", IsNumeric: false},
},
},
},
Metadata: make(Metadata),
},
false,
},
{
"Parses Timers",
"Place the beacon in the oven for ~{20%minutes}.",
&Recipe{
Steps: []Step{
{
Directions: "Place the beacon in the oven for 20 minutes.",
Ingredients: []Ingredient{},
Timers: []Timer{{"", 20.00, "minutes"}},
Cookware: []Cookware{},
},
},
Metadata: make(Metadata),
},
false,
},
{
"Full recipe",
`>> servings: 6
Make 6 pizza balls using @tipo zero flour{820%g}, @water{533%ml}, @salt{24.6%g} and @fresh yeast{1.6%g}. Put in a #fridge for ~{2%days}.
Set #oven to max temperature and heat #pizza stone{} for about ~{40%minutes}.
Make some tomato sauce with @chopped tomato{3%cans} and @garlic{3%cloves} and @dried oregano{3%tbsp}. Put on a #pan and leave for ~{15%minutes} occasionally stirring.
Make pizzas putting some tomato sauce with #spoon on top of flattened dough. Add @fresh basil{18%leaves}, @parma ham{3%packs} and @mozzarella{3%packs}.
Put in an #oven for ~{4%minutes}.`,
&Recipe{
Steps: []Step{
{
Directions: "Make 6 pizza balls using tipo zero flour, water, salt and fresh yeast. Put in a fridge for 2 days.",
Timers: []Timer{{Duration: 2, Unit: "days"}},
Ingredients: []Ingredient{
{Name: "tipo zero flour", Amount: IngredientAmount{true, 820., "820", "g"}},
{Name: "water", Amount: IngredientAmount{true, 533, "533", "ml"}},
{Name: "salt", Amount: IngredientAmount{true, 24.6, "24.6", "g"}},
{Name: "fresh yeast", Amount: IngredientAmount{true, 1.6, "1.6", "g"}},
},
Cookware: []Cookware{{Name: "fridge", Quantity: 1, IsNumeric: false, QuantityRaw: ""}},
},
{
Directions: "Set oven to max temperature and heat pizza stone for about 40 minutes.",
Timers: []Timer{{Duration: 40, Unit: "minutes"}},
Ingredients: []Ingredient{},
Cookware: []Cookware{
{Name: "oven", Quantity: 1, IsNumeric: false, QuantityRaw: ""},
{Name: "pizza stone", Quantity: 1, IsNumeric: false, QuantityRaw: ""},
},
},
{
Directions: "Make some tomato sauce with chopped tomato and garlic and dried oregano. Put on a pan and leave for 15 minutes occasionally stirring.",
Timers: []Timer{{Duration: 15, Unit: "minutes"}},
Ingredients: []Ingredient{
{Name: "chopped tomato", Amount: IngredientAmount{true, 3, "3", "cans"}},
{Name: "garlic", Amount: IngredientAmount{true, 3, "3", "cloves"}},
{Name: "dried oregano", Amount: IngredientAmount{true, 3, "3", "tbsp"}},
},
Cookware: []Cookware{{Name: "pan", Quantity: 1, IsNumeric: false, QuantityRaw: ""}},
},
{
Directions: "Make pizzas putting some tomato sauce with spoon on top of flattened dough. Add fresh basil, parma ham and mozzarella.",
Timers: []Timer{},
Ingredients: []Ingredient{
{Name: "fresh basil", Amount: IngredientAmount{true, 18, "18", "leaves"}},
{Name: "parma ham", Amount: IngredientAmount{true, 3, "3", "packs"}},
{Name: "mozzarella", Amount: IngredientAmount{true, 3, "3", "packs"}},
},
Cookware: []Cookware{{Name: "spoon", Quantity: 1, IsNumeric: false, QuantityRaw: ""}},
},
{
Directions: "Put in an oven for 4 minutes.",
Timers: []Timer{{Duration: 4, Unit: "minutes"}},
Ingredients: []Ingredient{},
Cookware: []Cookware{{Name: "oven", Quantity: 1, IsNumeric: false, QuantityRaw: ""}},
},
},
Metadata: Metadata{"servings": "6"},
},
false,
},
{
"Parses block comments",
"Text [- with block comment -] rules",
&Recipe{
Steps: []Step{
{
Directions: "Text rules",
Comments: []string{"with block comment"},
Timers: []Timer{},
Ingredients: []Ingredient{},
Cookware: []Cookware{},
},
},
Metadata: make(Metadata),
},
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := ParseString(tt.recipe)
if (err != nil) != tt.wantErr {
t.Errorf("ParseString() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("ParseString() = %#v, want %#v", got, tt.want)
}
})
}
}
func Test_findIngredient(t *testing.T) {
tests := []struct {
name string
line string
want string
endIndex int
}{
{
"works with single word ingredients",
"@word1 word2",
"word1",
6,
},
{
"works with multiple words ingredients",
"@word1 word2{}",
"word1 word2{}",
14,
},
{
"works with multiple words ingredients with quantities",
"@word1 word2{1%kg}",
"word1 word2{1%kg}",
18,
},
{
"works when there are more then one ingredient",
"@word1 test @word2{1%kg}",
"word1",
6,
},
{
"works when the ingredient is at the end of the line",
"@word1",
"word1",
6,
},
{
"works when multi word ingredient is at the end of the line",
"@word1{1%kg}",
"word1{1%kg}",
12,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := findNodeEndIndex(tt.line)
raw := tt.line[1:got]
if raw != tt.want {
t.Errorf("findNodeEndIndex() got = %v, want %v", raw, tt.want)
}
if got != tt.endIndex {
t.Errorf("findNodeEndIndex() got1 = %v, want %v", got, tt.endIndex)
}
})
}
}
func Test_getTimer(t *testing.T) {
type args struct {
line string
}
tests := []struct {
name string
args args
want *Timer
wantErr bool
}{
{
"Gets named timer",
args{
"~potato{42%minutes}",
},
&Timer{
"potato",
42,
"minutes",
},
false,
},
{
"Gets unn-named timer",
args{
"~{42%minutes}",
},
&Timer{
"",
42,
"minutes",
},
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _, err := getTimer(tt.args.line)
if (err != nil) != tt.wantErr {
t.Errorf("getTimer() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("getTimer() got = %v, want %v", got, tt.want)
}
})
}
}
func TestFrontMatter(t *testing.T) {
in := `---
title: food dish
tags:
- vegan
- vegetarian
- delicious
---
Mash @banana{1%large} and eat it.`
r, err := NewParserV2(&ParseV2Config{}).ParseString(in)
if err != nil {
t.Error(err)
t.FailNow()
} else {
if len(r.Steps) != 1 {
t.Errorf("wrong steps - expected 1 got %d", len(r.Steps))
} else {
}
if len(r.Metadata) != 2 {
t.Errorf("wrong metadata - expected 2 got %d", len(r.Metadata))
} else {
if r.Metadata["title"] != "food dish" {
t.Error("wrong title")
}
t.Logf("%T => %#v", r.Metadata["tags"], r.Metadata["tags"])
if tags, ok := r.Metadata["tags"]; ok {
if tagsArray, ok := tags.([]any); ok {
if len(tagsArray) != 3 {
t.Errorf("wrong number of tags - expected 3 got %d", len(tagsArray))
} else {
if tagsArray[0] != "vegan" {
t.Error("0 index tag wrong")
}
if tagsArray[1] != "vegetarian" {
t.Error("1 index tag wrong")
}
if tagsArray[2] != "delicious" {
t.Error("2 index tag wrong")
}
}
} else {
t.Error("not right type for tags")
}
} else {
t.Error("tags field missing")
}
}
}
}
func TestBadFrontMatter(t *testing.T) {
in := `---
title: food dish
invalid yaml :-)
---
Mash @banana{1%large} and eat it.`
_, err := NewParserV2(&ParseV2Config{}).ParseString(in)
if err == nil {
t.Error("expected parsing error")
t.FailNow()
} else {
exp := "decoding yaml front matter"
if !strings.Contains(err.Error(), exp) {
t.Errorf("wrong error, expected '%s' got '%s'", exp, err.Error())
}
}
}
func TestBadFrontMatterNotAtTop(t *testing.T) {
in := `
Cook and mash @potato.
---
title: food dish
---
Mash @banana{1%large} and eat it.`
r, err := NewParserV2(&ParseV2Config{}).ParseString(in)
if err != nil {
t.Error("unexpected parsing error")
t.FailNow()
} else {
if len(r.Metadata) != 0 {
t.Error("got metadata when expected none")
}
}
}