feat: auto detect tests in exampls
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone Build was killed

This commit is contained in:
张泊明518370910136 2024-04-11 13:19:38 -04:00
parent c53082283a
commit 15b8b34476
GPG Key ID: D47306D7062CDA9D

View File

@ -4,7 +4,9 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"os" "os"
"path/filepath"
"regexp" "regexp"
"strings"
"testing" "testing"
"focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/stage" "focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/stage"
@ -60,12 +62,29 @@ func readStageResults(t *testing.T, path string) []stage.StageResult {
} }
func TestMain(t *testing.T) { func TestMain(t *testing.T) {
tests := []string{ var tests []string
"compile/success", root := "../../examples/"
"compile/error", err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
"dummy/success", if err != nil {
"dummy/error", return err
"cpplint/sillycode", }
if info.IsDir() {
if path == root {
return nil
}
path0 := filepath.Join(path, "expected_regex.json")
path1 := filepath.Join(path, "expected.json")
_, err0 := os.Stat(path0)
_, err1 := os.Stat(path1)
if err0 != nil && err1 != nil {
return nil
}
tests = append(tests, strings.TrimPrefix(path, root))
}
return nil
})
if err != nil {
t.Fatal(err)
} }
for _, tt := range tests { for _, tt := range tests {
t.Run(tt, func(t *testing.T) { t.Run(tt, func(t *testing.T) {
@ -73,7 +92,7 @@ func TestMain(t *testing.T) {
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
err = os.Chdir(fmt.Sprintf("../../examples/%s", tt)) err = os.Chdir(fmt.Sprintf("%s%s", root, tt))
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }