z_test.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package mjs
  2. import (
  3. "errors"
  4. "fmt"
  5. "io/ioutil"
  6. "log"
  7. "os"
  8. "testing"
  9. "github.com/dop251/goja"
  10. )
  11. var contentPath = "content"
  12. func filePath(name string) string {
  13. return fmt.Sprintf("%v/%v", contentPath, name)
  14. }
  15. func modified(name string) (res int64) {
  16. if info, err := os.Stat(filePath(name)); err == nil {
  17. res = info.ModTime().Unix()
  18. }
  19. return
  20. }
  21. func content(name string) ([]byte, error) {
  22. return ioutil.ReadFile(filePath(name))
  23. }
  24. func TestMJS(t *testing.T) {
  25. mjs := New(modified, content)
  26. for i := 0; i < 20; i++ {
  27. modified, err := mjs.Exec("main", map[string]interface{}{
  28. "flush": func(args ...interface{}) {
  29. log.Println(args)
  30. },
  31. })
  32. t.Log(err, err == nil, modified)
  33. }
  34. }
  35. type CallResult struct {
  36. }
  37. func Call(runtime *goja.Runtime, call goja.Callable) {
  38. log.Println("CALL_START", call)
  39. if call == nil {
  40. log.Println(errors.New("OKKO"))
  41. }
  42. result, err := call(goja.Undefined())
  43. log.Println("CALL_FINIFH", result, err)
  44. //return errors.New("ERRRRROR")
  45. }
  46. func TestInterrupt(t *testing.T) {
  47. mjs := New(modified, content)
  48. for i := 0; i < 2; i++ {
  49. modified, err := mjs.Exec("interrupt", map[string]interface{}{
  50. "call": Call,
  51. "flush": func(args ...interface{}) {
  52. log.Println(args)
  53. },
  54. })
  55. t.Log(err, err == nil, modified)
  56. }
  57. }