44 lines
856 B
Go
Raw Normal View History

2024-07-03 11:39:24 +02:00
package tests_test
import (
"path/filepath"
"testing"
"git.akyoto.dev/cli/q/src/build"
"git.akyoto.dev/go/assert"
2024-07-03 11:39:24 +02:00
)
2024-07-03 11:59:36 +02:00
var examples = []struct {
2024-07-18 21:10:27 +02:00
Name string
Input string
Output string
ExitCode int
2024-07-03 11:59:36 +02:00
}{
2024-07-18 21:10:27 +02:00
{"hello", "", "Hello", 0},
{"factorial", "", "", 120},
{"fibonacci", "", "", 55},
2024-07-22 15:32:16 +02:00
{"array", "", "Hello", 0},
2024-07-26 12:50:47 +02:00
{"itoa", "", "2147483647", 0},
2024-07-03 11:59:36 +02:00
}
2024-07-03 11:39:24 +02:00
2024-07-03 11:59:36 +02:00
func TestExamples(t *testing.T) {
for _, test := range examples {
2024-07-03 11:39:24 +02:00
t.Run(test.Name, func(t *testing.T) {
2024-07-18 21:10:27 +02:00
run(t, filepath.Join("..", "examples", test.Name), test.Input, test.Output, test.ExitCode)
2024-07-03 11:39:24 +02:00
})
}
}
func BenchmarkExamples(b *testing.B) {
for _, test := range examples {
b.Run(test.Name, func(b *testing.B) {
compiler := build.New(filepath.Join("..", "examples", test.Name))
for i := 0; i < b.N; i++ {
_, err := compiler.Run()
assert.Nil(b, err)
}
})
}
}