forked from chromedp/chromedp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chromedp_test.go
1049 lines (912 loc) · 26.7 KB
/
chromedp_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package chromedp
import (
"bytes"
"context"
"fmt"
"io"
"io/ioutil"
"log"
"net"
"net/http"
"net/http/httptest"
"os"
"path"
"strings"
"sync"
"sync/atomic"
"testing"
"text/template"
"time"
"github.com/chromedp/cdproto/browser"
"github.com/chromedp/cdproto/cdp"
"github.com/chromedp/cdproto/dom"
"github.com/chromedp/cdproto/network"
"github.com/chromedp/cdproto/page"
"github.com/chromedp/cdproto/runtime"
"github.com/chromedp/cdproto/target"
)
var (
// these are set up in init
execPath string
testdataDir string
allocOpts = DefaultExecAllocatorOptions[:]
// allocCtx is initialised in TestMain, to cancel before exiting.
allocCtx context.Context
// browserCtx is initialised with allocateOnce
browserCtx context.Context
)
func init() {
wd, err := os.Getwd()
if err != nil {
panic(fmt.Sprintf("could not get working directory: %v", err))
}
testdataDir = "file://" + path.Join(wd, "testdata")
allocTempDir, err = ioutil.TempDir("", "chromedp-test")
if err != nil {
panic(fmt.Sprintf("could not create temp directory: %v", err))
}
// Disabling the GPU helps portability with some systems like Travis,
// and can slightly speed up the tests on other systems.
allocOpts = append(allocOpts, DisableGPU)
if noHeadless := os.Getenv("CHROMEDP_NO_HEADLESS"); noHeadless != "" && noHeadless != "false" {
allocOpts = append(allocOpts, Flag("headless", false))
}
// Find the exec path once at startup.
execPath = os.Getenv("CHROMEDP_TEST_RUNNER")
if execPath == "" {
execPath = findExecPath()
}
allocOpts = append(allocOpts, ExecPath(execPath))
// Not explicitly needed to be set, as this speeds up the tests
if noSandbox := os.Getenv("CHROMEDP_NO_SANDBOX"); noSandbox != "false" {
allocOpts = append(allocOpts, NoSandbox)
}
}
var browserOpts []ContextOption
func TestMain(m *testing.M) {
var cancel context.CancelFunc
allocCtx, cancel = NewExecAllocator(context.Background(), allocOpts...)
if debug := os.Getenv("CHROMEDP_DEBUG"); debug != "" && debug != "false" {
browserOpts = append(browserOpts, WithDebugf(log.Printf))
}
code := m.Run()
cancel()
if infos, _ := ioutil.ReadDir(allocTempDir); len(infos) > 0 {
os.RemoveAll(allocTempDir)
panic(fmt.Sprintf("leaked %d temporary dirs under %s", len(infos), allocTempDir))
} else {
os.Remove(allocTempDir)
}
os.Exit(code)
}
var allocateOnce sync.Once
func testAllocate(tb testing.TB, name string) (context.Context, context.CancelFunc) {
// Start the browser exactly once, as needed.
allocateOnce.Do(func() { browserCtx, _ = testAllocateSeparate(tb) })
if browserCtx == nil {
// allocateOnce.Do failed; continuing would result in panics.
tb.FailNow()
}
// Same browser, new tab; not needing to start new chrome browsers for
// each test gives a huge speed-up.
ctx, _ := NewContext(browserCtx)
// Only navigate if we want an html file name, otherwise leave the blank page.
if name != "" {
if err := Run(ctx, Navigate(testdataDir+"/"+name)); err != nil {
tb.Fatal(err)
}
}
cancel := func() {
if err := Cancel(ctx); err != nil {
tb.Error(err)
}
}
return ctx, cancel
}
func testAllocateSeparate(tb testing.TB) (context.Context, context.CancelFunc) {
// Entirely new browser, unlike testAllocate.
ctx, _ := NewContext(allocCtx, browserOpts...)
if err := Run(ctx); err != nil {
tb.Fatal(err)
}
ListenBrowser(ctx, func(ev interface{}) {
switch ev := ev.(type) {
case *runtime.EventExceptionThrown:
tb.Errorf("%+v\n", ev.ExceptionDetails)
}
})
cancel := func() {
if err := Cancel(ctx); err != nil {
tb.Error(err)
}
}
return ctx, cancel
}
func BenchmarkTabNavigate(b *testing.B) {
b.ReportAllocs()
allocCtx, cancel := NewExecAllocator(context.Background(), allocOpts...)
defer cancel()
// start the browser
bctx, _ := NewContext(allocCtx)
if err := Run(bctx); err != nil {
b.Fatal(err)
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
ctx, _ := NewContext(bctx)
if err := Run(ctx,
Navigate(testdataDir+"/form.html"),
WaitVisible(`#form`, ByID),
); err != nil {
b.Fatal(err)
}
if err := Cancel(ctx); err != nil {
b.Fatal(err)
}
}
})
}
// checkPages fatals if the browser behind the chromedp context has an
// unexpected number of pages (tabs).
func checkTargets(tb testing.TB, ctx context.Context, want int) {
tb.Helper()
infos, err := Targets(ctx)
if err != nil {
tb.Fatal(err)
}
var pages []*target.Info
for _, info := range infos {
if info.Type == "page" {
pages = append(pages, info)
}
}
if got := len(pages); want != got {
var summaries []string
for _, info := range pages {
summaries = append(summaries, fmt.Sprintf("%v", info))
}
tb.Fatalf("want %d targets, got %d:\n%s",
want, got, strings.Join(summaries, "\n"))
}
}
func TestTargets(t *testing.T) {
t.Parallel()
// Start one browser with one tab.
ctx1, cancel1 := testAllocateSeparate(t)
defer cancel1()
checkTargets(t, ctx1, 1)
// Start a second tab on the same browser.
ctx2, cancel2 := NewContext(ctx1)
defer cancel2()
if err := Run(ctx2); err != nil {
t.Fatal(err)
}
checkTargets(t, ctx2, 2)
// The first context should also see both targets.
checkTargets(t, ctx1, 2)
// Cancelling the second context should close the second tab alone.
cancel2()
checkTargets(t, ctx1, 1)
// We used to have a bug where Run would reset the first context as if
// it weren't the first, breaking its cancellation.
if err := Run(ctx1); err != nil {
t.Fatal(err)
}
// We should see one attached target, since we closed the second a while
// ago. If we see two, that means there's a memory leak, as we're
// holding onto the detached target.
pages := FromContext(ctx1).Browser.pages
if len(pages) != 1 {
t.Fatalf("expected one attached target, got %d", len(pages))
}
}
func TestCancelError(t *testing.T) {
t.Parallel()
ctx1, cancel1 := testAllocate(t, "")
defer cancel1()
if err := Run(ctx1); err != nil {
t.Fatal(err)
}
// Open and close a target normally; no error.
ctx2, cancel2 := NewContext(ctx1)
defer cancel2()
if err := Run(ctx2); err != nil {
t.Fatal(err)
}
if err := Cancel(ctx2); err != nil {
t.Fatalf("expected a nil error, got %v", err)
}
/*
// NOTE: the following test no longer is applicable, as a slight change
// to chromium's 89 API deprecated the boolean return value
// Make "cancel" close the wrong target; error.
ctx3, cancel3 := NewContext(ctx1)
defer cancel3()
if err := Run(ctx3); err != nil {
t.Fatal(err)
}
FromContext(ctx3).Target.TargetID = "wrong"
if err := Cancel(ctx3); err == nil {
t.Fatalf("expected a non-nil error, got %v", err)
}
*/
}
func TestPrematureCancel(t *testing.T) {
t.Parallel()
// Cancel before the browser is allocated.
ctx, _ := NewContext(allocCtx, browserOpts...)
if err := Cancel(ctx); err != nil {
t.Fatal(err)
}
if err := Run(ctx); err != context.Canceled {
t.Fatalf("wanted canceled context error, got %v", err)
}
}
func TestPrematureCancelTab(t *testing.T) {
t.Parallel()
ctx1, cancel := testAllocate(t, "")
defer cancel()
if err := Run(ctx1); err != nil {
t.Fatal(err)
}
ctx2, cancel := NewContext(ctx1)
// Cancel after the browser is allocated, but before we've created a new
// tab.
cancel()
if err := Run(ctx2); err != context.Canceled {
t.Fatalf("wanted canceled context error, got %v", err)
}
}
func TestPrematureCancelAllocator(t *testing.T) {
t.Parallel()
// To ensure we don't actually fire any Chrome processes.
allocCtx, cancel := NewExecAllocator(context.Background(),
ExecPath("/do-not-run-chrome"))
// Cancel before the browser is allocated.
cancel()
ctx, cancel := NewContext(allocCtx)
defer cancel()
if err := Run(ctx); err != context.Canceled {
t.Fatalf("wanted canceled context error, got %v", err)
}
}
func TestConcurrentCancel(t *testing.T) {
t.Parallel()
// To ensure we don't actually fire any Chrome processes.
allocCtx, cancel := NewExecAllocator(context.Background(),
ExecPath("/do-not-run-chrome"))
defer cancel()
// 50 is enough for 'go test -race' to easily spot issues.
for i := 0; i < 50; i++ {
ctx, cancel := NewContext(allocCtx)
go cancel()
go Run(ctx)
}
}
func TestListenBrowser(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "")
defer cancel()
// Check that many ListenBrowser callbacks work, including adding
// callbacks after the browser has been allocated.
var totalCount int32
ListenBrowser(ctx, func(ev interface{}) {
// using sync/atomic, as the browser is shared.
atomic.AddInt32(&totalCount, 1)
})
if err := Run(ctx); err != nil {
t.Fatal(err)
}
seenSessions := make(map[target.SessionID]bool)
ListenBrowser(ctx, func(ev interface{}) {
if ev, ok := ev.(*target.EventAttachedToTarget); ok {
seenSessions[ev.SessionID] = true
}
})
newTabCtx, cancel := NewContext(ctx)
defer cancel()
if err := Run(newTabCtx, Navigate(testdataDir+"/form.html")); err != nil {
t.Fatal(err)
}
cancel()
if id := FromContext(newTabCtx).Target.SessionID; !seenSessions[id] {
t.Fatalf("did not see Target.attachedToTarget for %q", id)
}
if want, got := int32(1), atomic.LoadInt32(&totalCount); got < want {
t.Fatalf("want at least %d browser events; got %d", want, got)
}
}
func TestListenTarget(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "")
defer cancel()
// Check that many listen callbacks work, including adding callbacks
// after the target has been attached to.
var navigatedCount, updatedCount int
ListenTarget(ctx, func(ev interface{}) {
if _, ok := ev.(*page.EventFrameNavigated); ok {
navigatedCount++
}
})
if err := Run(ctx); err != nil {
t.Fatal(err)
}
ListenTarget(ctx, func(ev interface{}) {
if _, ok := ev.(*dom.EventDocumentUpdated); ok {
updatedCount++
}
})
if err := Run(ctx, Navigate(testdataDir+"/form.html")); err != nil {
t.Fatal(err)
}
cancel()
if want := 1; navigatedCount != want {
t.Fatalf("want %d Page.frameNavigated events; got %d", want, navigatedCount)
}
if want := 1; updatedCount < want {
t.Fatalf("want at least %d DOM.documentUpdated events; got %d", want, updatedCount)
}
}
func TestLargeEventCount(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "")
defer cancel()
// Simulate an environment where Chrome sends 2000 console log events,
// and we are slow at processing them. In older chromedp versions, this
// would crash as we would fill eventQueue and panic. 50ms is enough to
// make the test fail somewhat reliably on old chromedp versions,
// without making the test too slow.
first := true
ListenTarget(ctx, func(ev interface{}) {
if _, ok := ev.(*runtime.EventConsoleAPICalled); ok && first {
time.Sleep(50 * time.Millisecond)
first = false
}
})
if err := Run(ctx,
Navigate(testdataDir+"/consolespam.html"),
WaitVisible("#done", ByID), // wait for the JS to finish
); err != nil {
t.Fatal(err)
}
}
func TestLargeQuery(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "")
defer cancel()
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "<html><body>\n")
for i := 0; i < 2000; i++ {
fmt.Fprintf(w, `<div>`)
fmt.Fprintf(w, `<a href="/%d">link %d</a>`, i, i)
fmt.Fprintf(w, `</div>`)
}
fmt.Fprintf(w, "</body></html>\n")
}))
defer s.Close()
// ByQueryAll queries thousands of events, which triggers thousands of
// DOM events. The target handler used to get into a deadlock, as the
// event queues would fill up and prevent the wait function from
// receiving any result.
var nodes []*cdp.Node
if err := Run(ctx,
Navigate(s.URL),
Nodes("a", &nodes, ByQueryAll),
); err != nil {
t.Fatal(err)
}
}
func TestDialTimeout(t *testing.T) {
t.Parallel()
t.Run("ShortTimeoutError", func(t *testing.T) {
t.Parallel()
l, err := net.Listen("tcp", ":0")
if err != nil {
t.Fatal(err)
}
url := "ws://" + l.(*net.TCPListener).Addr().String()
defer l.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
_, err = NewBrowser(ctx, url, WithDialTimeout(time.Microsecond))
got, want := fmt.Sprintf("%v", err), "i/o timeout"
if !strings.Contains(got, want) {
t.Fatalf("got %q, want %q", got, want)
}
})
t.Run("NoTimeoutSuccess", func(t *testing.T) {
t.Parallel()
l, err := net.Listen("tcp", ":0")
if err != nil {
t.Fatal(err)
}
url := "ws://" + l.(*net.TCPListener).Addr().String()
defer l.Close()
go func() {
conn, err := l.Accept()
if err == nil {
conn.Close()
}
}()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
_, err = NewBrowser(ctx, url, WithDialTimeout(0))
got := fmt.Sprintf("%v", err)
if !strings.Contains(got, "EOF") && !strings.Contains(got, "connection reset") {
t.Fatalf("got %q, want %q or %q", got, "EOF", "connection reset")
}
})
}
func TestListenCancel(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocateSeparate(t)
defer cancel()
// Check that cancelling a listen context stops the listener.
var browserCount, targetCount int
ctx1, cancel1 := context.WithCancel(ctx)
ListenBrowser(ctx1, func(ev interface{}) {
browserCount++
cancel1()
})
ctx2, cancel2 := context.WithCancel(ctx)
ListenTarget(ctx2, func(ev interface{}) {
targetCount++
cancel2()
})
if err := Run(ctx, Navigate(testdataDir+"/form.html")); err != nil {
t.Fatal(err)
}
if want := 1; browserCount != 1 {
t.Fatalf("want %d browser events; got %d", want, browserCount)
}
if want := 1; targetCount != 1 {
t.Fatalf("want %d target events; got %d", want, targetCount)
}
}
func TestLogOptions(t *testing.T) {
t.Parallel()
var bufMu sync.Mutex
var buf bytes.Buffer
fn := func(format string, a ...interface{}) {
bufMu.Lock()
fmt.Fprintf(&buf, format, a...)
fmt.Fprintln(&buf)
bufMu.Unlock()
}
ctx, cancel := NewContext(context.Background(),
WithErrorf(fn),
WithLogf(fn),
WithDebugf(fn),
)
defer cancel()
if err := Run(ctx, Navigate(testdataDir+"/form.html")); err != nil {
t.Fatal(err)
}
cancel()
bufMu.Lock()
got := buf.String()
bufMu.Unlock()
for _, want := range []string{
"Page.navigate",
"Page.frameNavigated",
} {
if !strings.Contains(got, want) {
t.Errorf("expected output to contain %q", want)
}
}
}
func TestLargeOutboundMessages(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "")
defer cancel()
// ~5MiB of JS to test the grow feature of github.com/gobwas/ws.
expr := fmt.Sprintf("//%s\n", strings.Repeat("x", 5<<20))
res := new([]byte)
if err := Run(ctx, Evaluate(expr, res)); err != nil {
t.Fatal(err)
}
}
func TestDirectCloseTarget(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "")
defer cancel()
c := FromContext(ctx)
want := "to close the target, cancel its context"
// Check that nothing is closed by running the action twice.
for i := 0; i < 2; i++ {
err := Run(ctx, ActionFunc(func(ctx context.Context) error {
return target.CloseTarget(c.Target.TargetID).Do(ctx)
}))
got := fmt.Sprint(err)
if !strings.Contains(got, want) {
t.Fatalf("want %q, got %q", want, got)
}
}
}
func TestDirectCloseBrowser(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocateSeparate(t)
defer cancel()
c := FromContext(ctx)
want := "use chromedp.Cancel"
// Check that nothing is closed by running the action twice.
for i := 0; i < 2; i++ {
err := browser.Close().Do(cdp.WithExecutor(ctx, c.Browser))
got := fmt.Sprint(err)
if !strings.Contains(got, want) {
t.Fatalf("want %q, got %q", want, got)
}
}
}
func TestDownloadIntoDir(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "")
defer cancel()
dir, err := ioutil.TempDir("", "chromedp-test")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(dir)
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/data.bin":
w.Header().Set("Content-Type", "application/octet-stream")
fmt.Fprintf(w, "some binary data")
default:
w.Header().Set("Content-Type", "text/html")
fmt.Fprintf(w, `go <a id="download" href="/data.bin">download</a> stuff/`)
}
}))
defer s.Close()
if err := Run(ctx,
Navigate(s.URL),
page.SetDownloadBehavior(page.SetDownloadBehaviorBehaviorAllow).WithDownloadPath(dir),
Click("#download", ByQuery),
); err != nil {
t.Fatal(err)
}
// TODO: wait for the download to finish, and check that the file is in
// the directory.
}
func TestGracefulBrowserShutdown(t *testing.T) {
t.Parallel()
dir, err := ioutil.TempDir("", "chromedp-test")
if err != nil {
log.Fatal(err)
}
defer os.RemoveAll(dir)
// TODO(mvdan): this doesn't work with DefaultExecAllocatorOptions+UserDataDir
opts := []ExecAllocatorOption{
NoFirstRun,
NoDefaultBrowserCheck,
Headless,
UserDataDir(dir),
}
actx, cancel := NewExecAllocator(context.Background(), opts...)
defer cancel()
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.RequestURI == "/set" {
http.SetCookie(w, &http.Cookie{
Name: "cookie1",
Value: "value1",
Expires: time.Now().AddDate(0, 0, 1), // one day later
})
}
}))
defer ts.Close()
{
ctx, _ := NewContext(actx)
if err := Run(ctx, Navigate(ts.URL+"/set")); err != nil {
t.Fatal(err)
}
// Close the browser gracefully.
if err := Cancel(ctx); err != nil {
t.Fatal(err)
}
}
{
ctx, _ := NewContext(actx)
var got string
if err := Run(ctx,
Navigate(ts.URL),
EvaluateAsDevTools("document.cookie", &got),
); err != nil {
t.Fatal(err)
}
if want := "cookie1=value1"; got != want {
t.Fatalf("want cookies %q; got %q", want, got)
}
}
}
func TestAttachingToWorkers(t *testing.T) {
t.Parallel()
for _, tc := range []struct {
desc, pageJS, wantSelf string
}{
{"DedicatedWorker", "new Worker('/worker.js')", "DedicatedWorkerGlobalScope"},
{"ServiceWorker", "navigator.serviceWorker.register('/worker.js')", "ServiceWorkerGlobalScope"},
} {
t.Run(tc.desc, func(t *testing.T) {
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html")
fmt.Fprintf(w, `
<html>
<body>
<script>
%s
</script>
</body>
</html>`, tc.pageJS)
})
mux.HandleFunc("/worker.js", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/javascript")
io.WriteString(w, "console.log('I am worker code.');")
})
ts := httptest.NewServer(mux)
defer ts.Close()
ctx, cancel := NewContext(context.Background())
defer cancel()
ch := make(chan target.ID, 1)
ListenTarget(ctx, func(ev interface{}) {
if ev, ok := ev.(*target.EventAttachedToTarget); ok {
if !strings.Contains(ev.TargetInfo.Type, "worker") {
return
}
ch <- ev.TargetInfo.TargetID
}
})
if err := Run(ctx, Navigate(ts.URL)); err != nil {
t.Fatalf("Failed to navigate to the test page: %q", err)
}
targetID := <-ch
ctx, cancel = NewContext(ctx, WithTargetID(targetID))
defer cancel()
if err := Run(ctx, ActionFunc(func(ctx context.Context) error {
if r, _, err := runtime.Evaluate("self").Do(ctx); err != nil {
return err
} else if r.ClassName != tc.wantSelf {
return fmt.Errorf("Global scope type mismatch: got %q want: %q", r.ClassName, tc.wantSelf)
}
return nil
})); err != nil {
t.Fatalf("Failed to check evaluating JavaScript in a worker target: %q", err)
}
})
}
}
func TestRunResponse(t *testing.T) {
t.Parallel()
// This test includes many edge cases for RunResponse; navigations that
// fail to start, responses that return errors, responses that redirect,
// and so on.
// We also test each of those with different actions, such as a straight
// navigation, as well as a click.
// What's important here is that we have an iframe that keeps reloading
// every 100ms in the main page. If RunResponse doesn't properly filter
// events for the top level frame, the tests should fail pretty often.
indexTmpl := template.Must(template.New("").Parse(`
<html>
<body>
<a id="url_index" href="/index">index</a>
<a id="url_200" href="/200">200</a>
<a id="url_404" href="/404">404</a>
<a id="url_500" href="/500">500</a>
<a id="url_badtls" href="https://{{.Host}}/index">badtls</a>
<a id="url_badprotocol" href="bad://{{.Host}}/index">badprotocol</a>
<a id="url_unimplementedprotocol" href="ftp://{{.Host}}/index">unimplementedprotocol</a>
<a id="url_plain" href="/plain">plain</a>
<a id="url_two" href="/two">two</a>
<a id="url_one" href="/one">one</a>
<a id="url_infinite" href="/infinite">infinite</a>
<a id="url_badiframe" href="/badiframe">badiframe</a>
<script>
setInterval(function(){
document.getElementById("reloadingframe").src += "";
}, 100);
</script>
<iframe id="reloadingframe" src="/reloadingframe"></iframe>
</body>
</html>`))
mux := http.NewServeMux()
mux.HandleFunc("/index", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html")
indexTmpl.Execute(w, r)
})
mux.HandleFunc("/200", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html")
fmt.Fprintf(w, "OK")
})
mux.HandleFunc("/500", func(w http.ResponseWriter, r *http.Request) {
http.Error(w, "500", 500)
})
mux.HandleFunc("/plain", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/plain")
fmt.Fprintf(w, "OK")
})
mux.HandleFunc("/two", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "/one", http.StatusMovedPermanently)
})
mux.HandleFunc("/one", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "/zero", http.StatusMovedPermanently)
})
mux.HandleFunc("/zero", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "OK")
})
mux.HandleFunc("/infinite", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "/infinite", http.StatusMovedPermanently)
})
mux.HandleFunc("/badiframe", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html")
fmt.Fprintf(w, `<html><body><iframe src="badurl://localhost/"></iframe></body></html>`)
})
ts := httptest.NewServer(mux)
t.Cleanup(ts.Close)
tests := []struct {
name string
url string
wantErr string
wantSuffixURL string
wantStatus int64
}{
{
name: "200",
url: "200",
wantStatus: 200,
},
{
name: "404",
url: "404",
wantStatus: 404,
},
{
name: "500",
url: "500",
wantStatus: 500,
},
// Use the local http server as https, which should be a TLS
// error and fail to load. If we don't capture the "loading
// failed" error, we will block until the timeout is hit and
// give a generic "deadline exceeded" error.
{
name: "BadTLS",
url: strings.ReplaceAll(ts.URL, "http://", "https://") + "/index",
wantErr: "ERR_SSL_PROTOCOL_ERROR",
},
// In this case, the "loading failed" event is received, but the
// load itself is cancelled immediately, so we never receive a
// load event of any sort.
{
name: "BadProtocol",
url: strings.ReplaceAll(ts.URL, "http://", "bad://") + "/index",
wantErr: "ERR_ABORTED",
},
// Check that loading a non-HTML document still works normally.
{
name: "NonHTML",
url: "plain",
wantSuffixURL: "/plain",
},
{
name: "BadIframe",
url: "badiframe",
wantSuffixURL: "/badiframe",
},
{
name: "OneRedirect",
url: "one",
wantSuffixURL: "/zero",
},
{
name: "TwoRedirects",
url: "two",
wantSuffixURL: "/zero",
},
{
name: "InfiniteRedirects",
url: "infinite",
wantErr: "ERR_TOO_MANY_REDIRECTS",
},
}
for _, test := range tests {
test := test
allocate := func(t *testing.T) context.Context {
ctx, cancel := testAllocate(t, "")
t.Cleanup(cancel)
ctx, cancel = context.WithTimeout(ctx, 5*time.Second)
t.Cleanup(cancel)
if err := Run(ctx, Navigate(ts.URL+"/index")); err != nil {
t.Fatalf("Failed to navigate to the test page: %q", err)
}
return ctx
}
checkResults := func(t *testing.T, resp *network.Response, err error) {
if test.wantErr == "" && err != nil {
t.Fatalf("wanted nil error, got %v", err)
}
if got := fmt.Sprint(err); !strings.Contains(got, test.wantErr) {
t.Fatalf("wanted error to contain %q, got %q", test.wantErr, got)
}
if test.wantErr == "" && resp == nil {
t.Fatalf("expected response to be non-nil")
} else if test.wantErr != "" && resp != nil {
t.Fatalf("expected response to be nil")
}
url := ""
status := int64(0)
if resp != nil {
url = resp.URL
status = resp.Status
}
if !strings.HasSuffix(url, test.wantSuffixURL) {
t.Fatalf("wanted response URL to end with %q, got %q", test.wantSuffixURL, url)
}
if want := test.wantStatus; want != 0 && status != want {
t.Fatalf("wanted status code %d, got %d", want, status)
}
}
t.Run("Navigate"+test.name, func(t *testing.T) {
t.Parallel()
ctx := allocate(t)
url := test.url
if !strings.Contains(url, "/") {
url = ts.URL + "/" + url
}
resp, err := RunResponse(ctx, Navigate(url))
checkResults(t, resp, err)
})
t.Run("Click"+test.name, func(t *testing.T) {
t.Parallel()
ctx := allocate(t)
query := "#url_" + strings.ToLower(test.name)
if !strings.Contains(test.url, "/") {
query = "#url_" + test.url
}
resp, err := RunResponse(ctx, Click(query, ByQuery))
checkResults(t, resp, err)
})
}
}