2018-08-21 12:51:16 +00:00
|
|
|
package compiler_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"testing"
|
|
|
|
|
2019-12-03 15:18:14 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/compiler"
|
2018-08-21 12:51:16 +00:00
|
|
|
)
|
|
|
|
|
2019-12-03 15:18:14 +00:00
|
|
|
const examplePath = "../../examples"
|
2018-08-21 12:51:16 +00:00
|
|
|
|
|
|
|
func TestExamplesFolder(t *testing.T) {
|
|
|
|
infos, err := ioutil.ReadDir(examplePath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, info := range infos {
|
|
|
|
infos, err := ioutil.ReadDir(path.Join(examplePath, info.Name()))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(infos) == 0 {
|
|
|
|
t.Fatal("detected smart contract folder with no contract in it")
|
|
|
|
}
|
2018-08-22 17:07:36 +00:00
|
|
|
|
|
|
|
filename := filterFilename(infos)
|
2018-08-21 12:51:16 +00:00
|
|
|
targetPath := path.Join(examplePath, info.Name(), filename)
|
|
|
|
if err := compileFile(targetPath); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-22 17:07:36 +00:00
|
|
|
func filterFilename(infos []os.FileInfo) string {
|
|
|
|
for _, info := range infos {
|
|
|
|
if !info.IsDir() {
|
|
|
|
return info.Name()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2018-08-21 12:51:16 +00:00
|
|
|
func compileFile(src string) error {
|
|
|
|
file, err := os.Open(src)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-29 10:02:54 +00:00
|
|
|
_, err = compiler.Compile(file)
|
2018-08-21 12:51:16 +00:00
|
|
|
return err
|
|
|
|
}
|