| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2015 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // This file is part of the go-ethereum library. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-23 18:35:11 +02:00
										 |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // it under the terms of the GNU Lesser General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // GNU Lesser General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Lesser General Public License | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | package jsre | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2015-03-25 14:58:52 +00:00
										 |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2015-08-06 15:19:09 +01:00
										 |  |  | 	"path" | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2015-04-22 02:31:59 +02:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2015-05-25 02:27:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/robertkrimen/otto" | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-25 02:27:37 +02:00
										 |  |  | type testNativeObjectBinding struct{} | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | type msg struct { | 
					
						
							|  |  |  | 	Msg string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (no *testNativeObjectBinding) TestMethod(call otto.FunctionCall) otto.Value { | 
					
						
							|  |  |  | 	m, err := call.Argument(0).ToString() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return otto.UndefinedValue() | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-05-25 02:27:37 +02:00
										 |  |  | 	v, _ := call.Otto.ToValue(&msg{m}) | 
					
						
							|  |  |  | 	return v | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-06 15:19:09 +01:00
										 |  |  | func newWithTestJS(t *testing.T, testjs string) (*JSRE, string) { | 
					
						
							|  |  |  | 	dir, err := ioutil.TempDir("", "jsre-test") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("cannot create temporary directory:", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if testjs != "" { | 
					
						
							|  |  |  | 		if err := ioutil.WriteFile(path.Join(dir, "test.js"), []byte(testjs), os.ModePerm); err != nil { | 
					
						
							|  |  |  | 			t.Fatal("cannot create test.js:", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-05-06 12:40:23 +03:00
										 |  |  | 	return New(dir, os.Stdout), dir | 
					
						
							| 
									
										
										
										
											2015-08-06 15:19:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | func TestExec(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-08-06 15:19:09 +01:00
										 |  |  | 	jsre, dir := newWithTestJS(t, `msg = "testMsg"`) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir) | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err := jsre.Exec("test.js") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("expected no error, got %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	val, err := jsre.Run("msg") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("expected no error, got %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if !val.IsString() { | 
					
						
							|  |  |  | 		t.Errorf("expected string value, got %v", val) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-15 18:42:17 +07:00
										 |  |  | 	exp := "testMsg" | 
					
						
							|  |  |  | 	got, _ := val.ToString() | 
					
						
							|  |  |  | 	if exp != got { | 
					
						
							|  |  |  | 		t.Errorf("expected '%v', got '%v'", exp, got) | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-22 02:31:59 +02:00
										 |  |  | 	jsre.Stop(false) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestNatto(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-08-06 15:19:09 +01:00
										 |  |  | 	jsre, dir := newWithTestJS(t, `setTimeout(function(){msg = "testMsg"}, 1);`) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir) | 
					
						
							| 
									
										
										
										
											2015-04-22 02:31:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err := jsre.Exec("test.js") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("expected no error, got %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-05 11:36:10 +02:00
										 |  |  | 	time.Sleep(100 * time.Millisecond) | 
					
						
							| 
									
										
										
										
											2015-04-22 02:31:59 +02:00
										 |  |  | 	val, err := jsre.Run("msg") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("expected no error, got %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if !val.IsString() { | 
					
						
							|  |  |  | 		t.Errorf("expected string value, got %v", val) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	exp := "testMsg" | 
					
						
							|  |  |  | 	got, _ := val.ToString() | 
					
						
							|  |  |  | 	if exp != got { | 
					
						
							|  |  |  | 		t.Errorf("expected '%v', got '%v'", exp, got) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	jsre.Stop(false) | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestBind(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-05-06 12:40:23 +03:00
										 |  |  | 	jsre := New("", os.Stdout) | 
					
						
							| 
									
										
										
										
											2015-08-11 17:14:46 +01:00
										 |  |  | 	defer jsre.Stop(false) | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-25 02:27:37 +02:00
										 |  |  | 	jsre.Bind("no", &testNativeObjectBinding{}) | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-11 17:14:46 +01:00
										 |  |  | 	_, err := jsre.Run(`no.TestMethod("testMsg")`) | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("expected no error, got %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-15 18:42:17 +07:00
										 |  |  | func TestLoadScript(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-08-06 15:19:09 +01:00
										 |  |  | 	jsre, dir := newWithTestJS(t, `msg = "testMsg"`) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir) | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-15 18:42:17 +07:00
										 |  |  | 	_, err := jsre.Run(`loadScript("test.js")`) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("expected no error, got %v", err) | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-15 18:42:17 +07:00
										 |  |  | 	val, err := jsre.Run("msg") | 
					
						
							| 
									
										
										
										
											2015-03-15 13:13:39 +07:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("expected no error, got %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-15 18:42:17 +07:00
										 |  |  | 	if !val.IsString() { | 
					
						
							|  |  |  | 		t.Errorf("expected string value, got %v", val) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	exp := "testMsg" | 
					
						
							|  |  |  | 	got, _ := val.ToString() | 
					
						
							|  |  |  | 	if exp != got { | 
					
						
							|  |  |  | 		t.Errorf("expected '%v', got '%v'", exp, got) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-22 02:31:59 +02:00
										 |  |  | 	jsre.Stop(false) | 
					
						
							| 
									
										
										
										
											2015-08-11 17:14:46 +01:00
										 |  |  | } |