ref: 57f0f1562372f888146e0aa4307ec9b1961db058
dir: /domino/domino_test.go/
package domino import ( "io/ioutil" "opossum/logger" "strings" "testing" "time" ) const simpleHTML = ` <html> <body> <h1 id="title">Hello</h1> </body> </html> ` func init() { t := true DebugDumpJS = &t logger.Quiet = &t logger.Init() log = &logger.Logger{Debug: true} } func TestSimple(t *testing.T) { d := NewDomino(simpleHTML) d.Start() s := ` var state = 'empty'; var a = 1; b = 2; ` _, err := d.Exec(s, true) if err != nil { t.Fatalf("%v", err) } s2 := ` (function() { if (state !== 'empty') throw new Exception(state); state = a + b; })() var a = 1; b = 2; ` _, err = d.Exec(s2, false) if err != nil { t.Fatalf("%v", err) } d.Stop() } func TestGlobals(t *testing.T) { d := NewDomino(simpleHTML) d.Start() } func TestJQuery(t *testing.T) { buf, err := ioutil.ReadFile("jquery-3.5.1.js") if err != nil { t.Fatalf("%v", err) } d := NewDomino(simpleHTML) d.Start() script := ` console.log('Hello!!'); //console.log(window.jQuery); console.log(this); Object.assign(this, window); //console.log(this.jQuery); console.log($); $(document).ready(function() { gfgf console.log('yolo'); }); setTimeout(function() { console.log("ok"); }, 1000); var numberOne = 1; ` _=buf _, err = d.Exec(string(buf) + ";" + script, true) if err != nil { t.Fatalf("%v", err) } res, err := d.Exec("numberOne+1", false) t.Logf("res=%v", res) if err != nil { t.Fatalf("%v", err) } if res != "2" { t.Fatal() } time.Sleep(2 * time.Second) d.Stop() } func TestGodoc(t *testing.T) { buf, err := ioutil.ReadFile("godoc/pkg.html") if err != nil { t.Fatalf("%v", err) } d := NewDomino(string(buf)) d.Start() script := ` Object.assign(this, window); ` _ = script for i, fn := range []string{"initfuncs.js", "jquery-1.8.2.js", "goversion.js", "godocs.js"} { buf, err := ioutil.ReadFile("godoc/"+fn) if err != nil { t.Fatalf("%v", err) } _, err = d.Exec(string(buf) /*+ ";" + script*/, i == 0) if err != nil { t.Fatalf("%v", err) } } time.Sleep(2 * time.Second) d.Stop() } func TestJqueryUI(t *testing.T) { buf, err := ioutil.ReadFile("jqueryui/tabs.html") if err != nil { t.Fatalf("%v", err) } d := NewDomino(string(buf)) d.Start() script := ` Object.assign(this, window); ` _ = script for i, fn := range []string{"jquery-1.12.4.js", "jquery-ui.js", "tabs.js"} { buf, err := ioutil.ReadFile("jqueryui/"+fn) if err != nil { t.Fatalf("%v", err) } _, err = d.Exec(string(buf) /*+ ";" + script*/, i == 0) if err != nil { t.Fatalf("%v", err) } } time.Sleep(2 * time.Second) d.Stop() } func TestRun(t *testing.T) { jQuery, err := ioutil.ReadFile("jquery-3.5.1.js") if err != nil { t.Fatalf("%v", err) } //t.Parallel() SCRIPT := string(jQuery) + ` ;;; setTimeout(function() { console.log("ok :-)"); console.log(s.buf); var h = document.querySelector('html'); console.log(h.innerHTML); }, 1000); console.log("Started"); Object.assign(this, window); $(document).ready(function() { console.log('READDDYYYYY!!!!!!!'); }); console.log('$:'); console.log($); console.log('$h1:'); console.log($('h1').html()); //elem.dispatchEvent(event); console.log(window.location.href); ` d := NewDomino(simpleHTML) d.Start() _, err = d.Exec(SCRIPT, true) if err != nil { t.Fatalf(err.Error()) } time.Sleep(2 * time.Second) res, err := d.Exec("$('h1').html()", false) if err != nil { t.Fatalf(err.Error()) } if res != "Hello" { t.Fatalf(res) } d.Stop() } func TestTriggerClick(t *testing.T) { jQuery, err := ioutil.ReadFile("jquery-3.5.1.js") if err != nil { t.Fatalf("%v", err) } //t.Parallel() SCRIPT := string(jQuery) + ` ;;; Object.assign(this, window); console.log("Started"); var clicked = false; $(document).ready(function() { console.log('READDDYYYYY!!!!!!!'); $('h1').click(function() { console.log('CLICKED!!!!'); clicked = true; }); }); ` d := NewDomino(simpleHTML) d.Start() _, err = d.Exec(SCRIPT, true) if err != nil { t.Fatalf(err.Error()) } //time.Sleep(2 * time.Second) res, err := d.Exec("$('h1').html()", false) if err != nil { t.Fatalf(err.Error()) } if res != "Hello" { t.Fatalf(res) } if _, _, err = d.TrackChanges(); err != nil { t.Fatalf(err.Error()) } _, changed, err := d.TriggerClick("h1") if err != nil { t.Fatalf(err.Error()) } if changed { t.Fatal() } res, err = d.Exec("clicked", false) if err != nil { t.Fatalf(err.Error()) } if res != "true" { t.Fatalf(res) } d.Stop() } func TestDomChanged(t *testing.T) { jQuery, err := ioutil.ReadFile("jquery-3.5.1.js") if err != nil { t.Fatalf("%v", err) } //t.Parallel() SCRIPT := string(jQuery) + ` ;;; setTimeout(function() { console.log("ok :-)"); console.log(s.buf); var h = document.querySelector('html'); console.log(h.innerHTML); }, 1000); console.log("Started"); Object.assign(this, window); $(document).ready(function() { console.log('READDDYYYYY!!!!!!!'); }); console.log('$:'); console.log($); console.log('$h1:'); console.log($('h1').html()); //elem.dispatchEvent(event); console.log(window.location.href); ` d := NewDomino(simpleHTML) d.Start() _, err = d.Exec(SCRIPT, true) if err != nil { t.Fatalf(err.Error()) } time.Sleep(2 * time.Second) res, err := d.Exec("$('h1').html()", false) if err != nil { t.Fatalf(err.Error()) } /*if res != "Hello" { t.Fatalf(res) }*/ _=res res, err = d.Exec("$('h1').html('minor updates :-)'); $('h1').html();", false) if err != nil { t.Fatalf(err.Error()) } t.Logf("new res=%v", res) <-time.After(2*time.Second) d.Stop() } func TestTrackChanges(t *testing.T) { d := NewDomino(simpleHTML) d.Start() _, err := d.Exec(``, true) if err != nil { t.Fatalf(err.Error()) } // 0th time: init if _, _, err = d.TrackChanges(); err != nil { t.Fatalf(err.Error()) } // 1st time: no change html, changed, err := d.TrackChanges() if err != nil { t.Fatalf(err.Error()) } if html == "" { t.Fatalf(err.Error()) } if changed == true { t.Fatal() } // 2nd time: no change html, changed, err = d.TrackChanges() if err != nil { t.Fatalf(err.Error()) } if html == "" { t.Fatalf(err.Error()) } if changed == true { t.Fatal() } _, err = d.Exec("document.getElementById('title').innerHTML='new title'; true;", false) if err != nil { t.Fatalf(err.Error()) } // 3rd time: yes change html, changed, err = d.TrackChanges() if err != nil { t.Fatalf(err.Error()) } if html == "" { t.Fatalf(err.Error()) } if changed == false { t.Fatal() } if !strings.Contains(html, "new title") { t.Fatalf(html) } d.Stop() } /*func TestExecInlinedScripts(t *testing.T) { const h = ` <html> <body> <h1 id="title">Hello</h1> <script> document.getElementById('title').innerHTML = 'Good day'; </script> </body> </html> ` d := NewDomino(h) d.Start() err := d.ExecInlinedScripts() if err != nil { t.Fatalf(err.Error()) } res, err := d.Export("document.getElementById('title').innerHTML") if err != nil { t.Fatalf(err.Error()) } if !strings.Contains(res, "Good day") { t.Fatalf(res) } d.Stop() }*/ /*func TestWindowEqualsGlobal(t *testing.T) { const h = ` <html> <body> <script> a = 2; window.b = 5; </script> <script> console.log('window.a=', window.a); console.log('wot'); console.log('window.b=', window.b); console.log('wit'); window.a++; b++; </script> </body> </html> ` d := NewDomino(h) d.Start() err := d.ExecInlinedScripts() if err != nil { t.Fatalf(err.Error()) } res, err := d.Export("window.a") if err != nil { t.Fatalf(err.Error()) } if !strings.Contains(res, "3") { t.Fatalf(res) } res, err = d.Export("window.b") if err != nil { t.Fatalf(err.Error()) } if !strings.Contains(res, "6") { t.Fatalf(res) } d.Stop() }*/ func TestES6(t *testing.T) { d := NewDomino(simpleHTML) d.Start() script := ` console.log('Hello!!'); const numberOne = 1; ` _, err := d.Exec6(script) if err != nil { t.Fatalf("%v", err) } res, err := d.Exec("numberOne+1", false) t.Logf("res=%v", res) if err != nil { t.Fatalf("%v", err) } if res != "2" { t.Fatal() } d.Stop() } func TestWindowParent(t *testing.T) { d := NewDomino(simpleHTML) d.Start() script := ` console.log('Hello!!') ` _, err := d.Exec(script, true) if err != nil { t.Fatalf("%v", err) } res, err := d.Exec("window === window.parent", false) t.Logf("res=%v", res) if err != nil { t.Fatalf("%v", err) } if res != "true" { t.Fatal() } d.Stop() }