12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package mjs
- import (
- "errors"
- "fmt"
- "io/ioutil"
- "log"
- "os"
- "testing"
- "github.com/dop251/goja"
- )
- var contentPath = "content"
- func filePath(name string) string {
- return fmt.Sprintf("%v/%v", contentPath, name)
- }
- func modified(name string) (res int64) {
- if info, err := os.Stat(filePath(name)); err == nil {
- res = info.ModTime().Unix()
- }
- return
- }
- func content(name string) ([]byte, error) {
- return ioutil.ReadFile(filePath(name))
- }
- func TestMJS(t *testing.T) {
- mjs := New(modified, content)
- for i := 0; i < 20; i++ {
- modified, err := mjs.Exec("main", map[string]interface{}{
- "flush": func(args ...interface{}) {
- log.Println(args)
- },
- })
- t.Log(err, err == nil, modified)
- }
- }
- type CallResult struct {
- }
- func Call(runtime *goja.Runtime, call goja.Callable) {
- log.Println("CALL_START", call)
- if call == nil {
- log.Println(errors.New("OKKO"))
- }
- result, err := call(goja.Undefined())
- log.Println("CALL_FINIFH", result, err)
- //return errors.New("ERRRRROR")
- }
- func TestInterrupt(t *testing.T) {
- mjs := New(modified, content)
- for i := 0; i < 2; i++ {
- modified, err := mjs.Exec("interrupt", map[string]interface{}{
- "call": Call,
- "flush": func(args ...interface{}) {
- log.Println(args)
- },
- })
- t.Log(err, err == nil, modified)
- }
- }
|