-
Notifications
You must be signed in to change notification settings - Fork 158
/
core_test.go
47 lines (42 loc) · 1.34 KB
/
core_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
package substrait
import (
"embed"
"io/fs"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestGetSubstraitExtensionsFS(t *testing.T) {
fsArr := []embed.FS{GetSubstraitExtensionsFS(), GetSubstraitFS()}
for _, got := range fsArr {
filePaths, err := ListFiles(got, ".")
require.NoError(t, err)
assert.Greater(t, len(filePaths), 15)
assert.Contains(t, filePaths, "extensions/functions_arithmetic.yaml")
assert.Contains(t, filePaths, "extensions/functions_arithmetic_decimal.yaml")
assert.Contains(t, filePaths, "extensions/functions_datetime.yaml")
}
}
func TestGetSubstraitTestsFS(t *testing.T) {
got := GetSubstraitTestsFS()
filePaths, err := ListFiles(got, ".")
require.NoError(t, err)
assert.Greater(t, len(filePaths), 3)
assert.Contains(t, filePaths, "tests/cases/arithmetic/add.test")
assert.Contains(t, filePaths, "tests/cases/arithmetic/max.test")
assert.Contains(t, filePaths, "tests/cases/arithmetic_decimal/power.test")
assert.Contains(t, filePaths, "tests/cases/datetime/lt_datetime.test")
}
func ListFiles(embedFs embed.FS, root string) ([]string, error) {
var files []string
err := fs.WalkDir(embedFs, root, func(path string, d fs.DirEntry, err error) error {
if err != nil {
return err
}
if !d.IsDir() {
files = append(files, path)
}
return nil
})
return files, err
}