38 lines
973 B
Go
Raw Normal View History

2024-06-14 08:36:01 +00:00
package main_test
2024-06-13 10:13:32 +00:00
import (
"path/filepath"
"strings"
"testing"
"git.akyoto.dev/cli/q/src/build"
"git.akyoto.dev/cli/q/src/errors"
"git.akyoto.dev/go/assert"
)
func TestErrors(t *testing.T) {
tests := []struct {
File string
ExpectedError error
}{
{"ExpectedFunctionDefinition.q", errors.ExpectedFunctionDefinition},
2024-06-14 08:36:01 +00:00
{"ExpectedFunctionName.q", errors.ExpectedFunctionName},
2024-06-14 07:23:21 +00:00
{"ExpectedFunctionParameters.q", errors.ExpectedFunctionParameters},
{"MissingBlockEnd.q", errors.MissingBlockEnd},
{"MissingBlockStart.q", errors.MissingBlockStart},
{"MissingGroupEnd.q", errors.MissingGroupEnd},
{"MissingGroupStart.q", errors.MissingGroupStart},
2024-06-13 10:13:32 +00:00
}
for _, test := range tests {
name := strings.TrimSuffix(test.File, ".q")
t.Run(name, func(t *testing.T) {
2024-06-14 08:36:01 +00:00
b := build.New(filepath.Join("tests", "errors", test.File))
2024-06-13 10:13:32 +00:00
_, err := b.Run()
assert.NotNil(t, err)
assert.Contains(t, err.Error(), test.ExpectedError.Error())
})
}
}