parser_test.go 8.29 KB
Newer Older
1
2
3
package parser

import (
Michael Yang's avatar
Michael Yang committed
4
5
6
	"bytes"
	"fmt"
	"io"
7
8
9
10
11
12
	"strings"
	"testing"

	"github.com/stretchr/testify/assert"
)

Michael Yang's avatar
Michael Yang committed
13
func TestParser(t *testing.T) {
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
	input := `
FROM model1
ADAPTER adapter1
LICENSE MIT
PARAMETER param1 value1
PARAMETER param2 value2
TEMPLATE template1
`

	reader := strings.NewReader(input)

	commands, err := Parse(reader)
	assert.Nil(t, err)

	expectedCommands := []Command{
		{Name: "model", Args: "model1"},
		{Name: "adapter", Args: "adapter1"},
		{Name: "license", Args: "MIT"},
		{Name: "param1", Args: "value1"},
		{Name: "param2", Args: "value2"},
		{Name: "template", Args: "template1"},
	}

	assert.Equal(t, expectedCommands, commands)
}

Michael Yang's avatar
tests  
Michael Yang committed
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
func TestParserFrom(t *testing.T) {
	var cases = []struct {
		input    string
		expected []Command
		err      error
	}{
		{
			"FROM foo",
			[]Command{{Name: "model", Args: "foo"}},
			nil,
		},
		{
			"FROM /path/to/model",
			[]Command{{Name: "model", Args: "/path/to/model"}},
			nil,
		},
		{
			"FROM /path/to/model/fp16.bin",
			[]Command{{Name: "model", Args: "/path/to/model/fp16.bin"}},
			nil,
		},
		{
			"FROM llama3:latest",
			[]Command{{Name: "model", Args: "llama3:latest"}},
			nil,
		},
		{
			"FROM llama3:7b-instruct-q4_K_M",
			[]Command{{Name: "model", Args: "llama3:7b-instruct-q4_K_M"}},
			nil,
		},
		{
			"", nil, errMissingFrom,
		},
		{
			"PARAMETER param1 value1",
			nil,
			errMissingFrom,
		},
		{
			"PARAMETER param1 value1\nFROM foo",
			[]Command{{Name: "param1", Args: "value1"}, {Name: "model", Args: "foo"}},
			nil,
		},
	}
85

Michael Yang's avatar
tests  
Michael Yang committed
86
87
88
89
90
91
92
	for _, c := range cases {
		t.Run("", func(t *testing.T) {
			commands, err := Parse(strings.NewReader(c.input))
			assert.ErrorIs(t, err, c.err)
			assert.Equal(t, c.expected, commands)
		})
	}
93
94
}

Michael Yang's avatar
Michael Yang committed
95
func TestParserParametersMissingValue(t *testing.T) {
96
97
98
99
100
101
102
103
	input := `
FROM foo
PARAMETER param1
`

	reader := strings.NewReader(input)

	_, err := Parse(reader)
Michael Yang's avatar
Michael Yang committed
104
	assert.ErrorIs(t, err, io.ErrUnexpectedEOF)
105
}
106

Michael Yang's avatar
Michael Yang committed
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
func TestParserMessages(t *testing.T) {
	var cases = []struct {
		input    string
		expected []Command
		err      error
	}{
		{
			`
FROM foo
MESSAGE system You are a Parser. Always Parse things.
`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "message", Args: "system: You are a Parser. Always Parse things."},
			},
			nil,
		},
		{
			`
126
127
128
129
FROM foo
MESSAGE system You are a Parser. Always Parse things.
MESSAGE user Hey there!
MESSAGE assistant Hello, I want to parse all the things!
Michael Yang's avatar
Michael Yang committed
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
`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "message", Args: "system: You are a Parser. Always Parse things."},
				{Name: "message", Args: "user: Hey there!"},
				{Name: "message", Args: "assistant: Hello, I want to parse all the things!"},
			},
			nil,
		},
		{
			`
FROM foo
MESSAGE system """
You are a multiline Parser. Always Parse things.
"""
			`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "message", Args: "system: \nYou are a multiline Parser. Always Parse things.\n"},
			},
			nil,
		},
		{
			`
FROM foo
MESSAGE badguy I'm a bad guy!
`,
			nil,
			errInvalidRole,
		},
		{
			`
FROM foo
MESSAGE system
`,
			nil,
			io.ErrUnexpectedEOF,
		},
		{
			`
FROM foo
MESSAGE system`,
			nil,
			io.ErrUnexpectedEOF,
		},
	}
176

Michael Yang's avatar
Michael Yang committed
177
178
179
180
181
182
183
184
	for _, c := range cases {
		t.Run("", func(t *testing.T) {
			commands, err := Parse(strings.NewReader(c.input))
			assert.ErrorIs(t, err, c.err)
			assert.Equal(t, c.expected, commands)
		})
	}
}
185

Michael Yang's avatar
Michael Yang committed
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
func TestParserQuoted(t *testing.T) {
	var cases = []struct {
		multiline string
		expected  []Command
		err       error
	}{
		{
			`
FROM foo
TEMPLATE """
This is a
multiline template.
"""
			`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: "\nThis is a\nmultiline template.\n"},
			},
			nil,
		},
		{
			`
FROM foo
TEMPLATE """
This is a
multiline template."""
			`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: "\nThis is a\nmultiline template."},
			},
			nil,
		},
		{
			`
FROM foo
TEMPLATE """This is a
multiline template."""
			`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: "This is a\nmultiline template."},
			},
			nil,
		},
		{
			`
FROM foo
TEMPLATE """This is a multiline template."""
			`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: "This is a multiline template."},
			},
			nil,
		},
		{
			`
FROM foo
TEMPLATE """This is a multiline template.""
			`,
			nil,
			io.ErrUnexpectedEOF,
		},
		{
			`
FROM foo
TEMPLATE "
			`,
			nil,
			io.ErrUnexpectedEOF,
		},
		{
			`
FROM foo
TEMPLATE """
This is a multiline template with "quotes".
"""
`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: "\nThis is a multiline template with \"quotes\".\n"},
			},
			nil,
		},
		{
			`
FROM foo
TEMPLATE """"""
`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: ""},
			},
			nil,
		},
		{
			`
FROM foo
TEMPLATE ""
`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: ""},
			},
			nil,
		},
		{
			`
FROM foo
TEMPLATE "'"
`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: "'"},
			},
			nil,
		},
Michael Yang's avatar
tests  
Michael Yang committed
304
305
306
307
308
309
310
311
312
313
314
		{
			`
FROM foo
TEMPLATE """''"'""'""'"'''''""'""'"""
`,
			[]Command{
				{Name: "model", Args: "foo"},
				{Name: "template", Args: `''"'""'""'"'''''""'""'`},
			},
			nil,
		},
315
316
	}

Michael Yang's avatar
Michael Yang committed
317
318
319
320
321
322
323
	for _, c := range cases {
		t.Run("", func(t *testing.T) {
			commands, err := Parse(strings.NewReader(c.multiline))
			assert.ErrorIs(t, err, c.err)
			assert.Equal(t, c.expected, commands)
		})
	}
324
325
}

Michael Yang's avatar
Michael Yang committed
326
func TestParserParameters(t *testing.T) {
Michael Yang's avatar
tests  
Michael Yang committed
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
	var cases = map[string]struct {
		name, value string
	}{
		"numa true":                    {"numa", "true"},
		"num_ctx 1":                    {"num_ctx", "1"},
		"num_batch 1":                  {"num_batch", "1"},
		"num_gqa 1":                    {"num_gqa", "1"},
		"num_gpu 1":                    {"num_gpu", "1"},
		"main_gpu 1":                   {"main_gpu", "1"},
		"low_vram true":                {"low_vram", "true"},
		"f16_kv true":                  {"f16_kv", "true"},
		"logits_all true":              {"logits_all", "true"},
		"vocab_only true":              {"vocab_only", "true"},
		"use_mmap true":                {"use_mmap", "true"},
		"use_mlock true":               {"use_mlock", "true"},
		"num_thread 1":                 {"num_thread", "1"},
		"num_keep 1":                   {"num_keep", "1"},
		"seed 1":                       {"seed", "1"},
		"num_predict 1":                {"num_predict", "1"},
		"top_k 1":                      {"top_k", "1"},
		"top_p 1.0":                    {"top_p", "1.0"},
		"tfs_z 1.0":                    {"tfs_z", "1.0"},
		"typical_p 1.0":                {"typical_p", "1.0"},
		"repeat_last_n 1":              {"repeat_last_n", "1"},
		"temperature 1.0":              {"temperature", "1.0"},
		"repeat_penalty 1.0":           {"repeat_penalty", "1.0"},
		"presence_penalty 1.0":         {"presence_penalty", "1.0"},
		"frequency_penalty 1.0":        {"frequency_penalty", "1.0"},
		"mirostat 1":                   {"mirostat", "1"},
		"mirostat_tau 1.0":             {"mirostat_tau", "1.0"},
		"mirostat_eta 1.0":             {"mirostat_eta", "1.0"},
		"penalize_newline true":        {"penalize_newline", "true"},
		"stop ### User:":               {"stop", "### User:"},
		"stop ### User: ":              {"stop", "### User: "},
		"stop \"### User:\"":           {"stop", "### User:"},
		"stop \"### User: \"":          {"stop", "### User: "},
		"stop \"\"\"### User:\"\"\"":   {"stop", "### User:"},
		"stop \"\"\"### User:\n\"\"\"": {"stop", "### User:\n"},
		"stop <|endoftext|>":           {"stop", "<|endoftext|>"},
		"stop <|eot_id|>":              {"stop", "<|eot_id|>"},
		"stop </s>":                    {"stop", "</s>"},
Michael Yang's avatar
Michael Yang committed
368
	}
369

Michael Yang's avatar
tests  
Michael Yang committed
370
371
	for k, v := range cases {
		t.Run(k, func(t *testing.T) {
Michael Yang's avatar
Michael Yang committed
372
373
			var b bytes.Buffer
			fmt.Fprintln(&b, "FROM foo")
Michael Yang's avatar
tests  
Michael Yang committed
374
375
			fmt.Fprintln(&b, "PARAMETER", k)
			commands, err := Parse(&b)
Michael Yang's avatar
Michael Yang committed
376
			assert.Nil(t, err)
Michael Yang's avatar
tests  
Michael Yang committed
377
378
379
380
381

			assert.Equal(t, []Command{
				{Name: "model", Args: "foo"},
				{Name: v.name, Args: v.value},
			}, commands)
Michael Yang's avatar
Michael Yang committed
382
383
384
385
386
387
388
389
390
391
392
393
		})
	}
}

func TestParserComments(t *testing.T) {
	var cases = []struct {
		input    string
		expected []Command
	}{
		{
			`
# comment
394
FROM foo
Michael Yang's avatar
Michael Yang committed
395
396
397
398
399
400
	`,
			[]Command{
				{Name: "model", Args: "foo"},
			},
		},
	}
401

Michael Yang's avatar
Michael Yang committed
402
403
404
405
406
407
408
	for _, c := range cases {
		t.Run("", func(t *testing.T) {
			commands, err := Parse(strings.NewReader(c.input))
			assert.Nil(t, err)
			assert.Equal(t, c.expected, commands)
		})
	}
409
}