forked from ariya/phantomjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpage-spec.js
1188 lines (983 loc) · 39.2 KB
/
webpage-spec.js
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
describe("WebPage object", function() {
var page = new WebPage();
xit("should handle file uploads", function() {
runs(function() {
page.content = '<input type="file" id="file">\n' +
'<input type="file" id="file2" multiple>\n' +
'<input type="file" id="file3" multiple>';
page.uploadFile("#file", "run-tests.js");
page.uploadFile("#file2", "run-tests.js");
page.uploadFile("#file3", ["run-tests.js", "webpage-spec.js"]);
});
waits(50);
runs(function() {
var fileName;
fileName = page.evaluate(function() {
return document.getElementById('file').files[0].fileName;
});
expect(fileName).toEqual("run-tests.js");
fileName = page.evaluate(function() {
return document.getElementById('file2').files[0].fileName;
});
expect(fileName).toEqual("run-tests.js");
var files = page.evaluate(function() {
var files = document.getElementById('file3').files;
return {
length: files.length,
fileNames: [files[0].fileName, files[1].fileName]
}
});
expect(files.length).toEqual(2)
expect(files.fileNames[0]).toEqual("run-tests.js");
expect(files.fileNames[1]).toEqual("webpage-spec.js");
});
});
xit("reports the stack of errors", function() {
var helperFile = "./fixtures/error-helper.js";
phantom.injectJs(helperFile);
var page = require('webpage').create(), stack;
runs(function() {
function test() {
ErrorHelper.foo();
}
var err;
try {
test();
} catch (e) {
err = e;
}
var lines = err.stack.split("\n");
expect(lines[0]).toEqual("ReferenceError: Can't find variable: referenceError");
expect(lines[1]).toEqual(" at bar (./fixtures/error-helper.js:7)");
expect(lines[2]).toEqual(" at ./fixtures/error-helper.js:3");
expect(lines[3]).toMatch(/ at test \(\.\/webpage-spec\.js:\d+\)/);
page.injectJs(helperFile);
page.onError = function(message, s) { stack = s; };
page.evaluate(function() { setTimeout(function() { ErrorHelper.foo(); }, 0); });
});
waits(0);
runs(function() {
expect(stack[0].file).toEqual("./fixtures/error-helper.js");
expect(stack[0].line).toEqual(7);
expect(stack[0]["function"]).toEqual("bar");
});
});
it("should process request body properly for POST", function() {
var server = require('webserver').create();
server.listen(12345, function(request, response) {
// echo received request body in response body;
response.setHeader('Content-Type', 'text/html; charset=utf-8');
response.write(Object.keys(request.post)[0]);
response.close();
});
var url = "http://localhost:12345/foo/body";
var handled = false;
runs(function() {
expect(handled).toEqual(false);
var utfString = '안녕';
var openOptions = {
operation: 'POST',
data: utfString,
encoding: 'utf8'
};
var pageOptions = {
onLoadFinished: function(status) {
expect(status == 'success').toEqual(true);
handled = true;
expect(page.plainText).toEqual(utfString);
}
};
var page = new WebPage(pageOptions);
page.openUrl(url, openOptions, {});
});
waits(50);
runs(function() {
expect(handled).toEqual(true);
server.close();
});
});
it("should include post data to request object", function() {
var server = require('webserver').create();
server.listen(12345, function(request, response) {
response.write(JSON.stringify(request.headers));
response.close();
});
runs(function() {
var pageOptions = {
onResourceRequested: function (request) {
expect(request.postData).toEqual("ab=cd");
}
};
var page = new WebPage(pageOptions);
page.open("http://localhost:12345/", 'post', "ab=cd");
});
waits(50);
runs(function() {
server.close();
});
});
it("should return properly from a 401 status", function() {
var page = require('webpage').create();
var server = require('webserver').create();
server.listen(12345, function(request, response) {
response.statusCode = 401;
response.setHeader('WWW-Authenticate', 'Basic realm="PhantomJS test"');
response.write('Authentication Required');
response.close();
});
var url = "http://localhost:12345/foo";
var handled = 0;
runs(function() {
expect(handled).toEqual(0);
page.onResourceReceived = function(resource) {
expect(resource.status).toEqual(401);
handled++;
};
page.open(url, function(status) {
expect(status).toEqual('fail');
handled++;
});
});
waits(50);
runs(function() {
expect(handled).toEqual(2);
page.onResourceReceived = null;
server.close();
});
});
it("should contain resource body when last chunk of resource received", function() {
var page = require('webpage').create();
page.captureContent = ['/foo'];
var server = require('webserver').create();
server.listen(12345, function(request, response) {
response.statusCode = 200;
response.write('resource body');
response.close();
});
var url = "http://localhost:12345/foo";
var lastChunk = "";
var bodySize = 0;
runs(function() {
page.onResourceReceived = function(resource) {
lastChunk = resource.body;
bodySize = resource.bodySize;
};
page.open(url, function(status) {
});
});
waits(50);
runs(function() {
expect(lastChunk).toEqual('resource body');
expect(bodySize).toEqual(lastChunk.length);
page.onResourceReceived = null;
server.close();
});
});
it("should not contain resource body if not in the captureContent list", function() {
var page = require('webpage').create();
page.captureContent = ['/foo'];
var server = require('webserver').create();
server.listen(12345, function(request, response) {
response.statusCode = 200;
response.write('resource body');
response.close();
});
var url = "http://localhost:12345/some/other/url";
var lastChunk = "";
var bodySize = 0;
runs(function() {
page.onResourceReceived = function(resource) {
lastChunk = resource.body;
bodySize = resource.bodySize;
};
page.open(url, function(status) {
});
});
waits(50);
runs(function() {
expect(lastChunk).toEqual('');
expect(0).toEqual(lastChunk.length);
page.onResourceReceived = null;
server.close();
});
});
it("should set valid cookie properly, then remove it", function() {
var server = require('webserver').create();
server.listen(12345, function(request, response) {
// echo received request headers in response body
response.write(JSON.stringify(request.headers));
response.close();
});
var url = "http://localhost:12345/foo/headers.txt?ab=cd";
page.cookies = [{
'name' : 'Valid-Cookie-Name',
'value' : 'Valid-Cookie-Value',
'domain' : 'localhost',
'path' : '/foo',
'httponly' : true,
'secure' : false
},{
'name' : 'Valid-Cookie-Name-Sec',
'value' : 'Valid-Cookie-Value-Sec',
'domain' : 'localhost',
'path' : '/foo',
'httponly' : true,
'secure' : false,
'expires' : new Date().getTime() + 3600 //< expires in 1h
}];
var handled = false;
runs(function() {
expect(handled).toEqual(false);
page.open(url, function (status) {
expect(status == 'success').toEqual(true);
handled = true;
var echoedHeaders = JSON.parse(page.plainText);
// console.log(JSON.stringify(echoedHeaders));
expect(echoedHeaders["Cookie"]).toContain("Valid-Cookie-Name");
expect(echoedHeaders["Cookie"]).toContain("Valid-Cookie-Value");
expect(echoedHeaders["Cookie"]).toContain("Valid-Cookie-Name-Sec");
expect(echoedHeaders["Cookie"]).toContain("Valid-Cookie-Value-Sec");
});
});
waits(50);
runs(function() {
expect(handled).toEqual(true);
expect(page.cookies.length).toNotBe(0);
page.cookies = []; //< delete all the cookies visible to this URL
expect(page.cookies.length).toBe(0);
server.close();
});
});
it("should not set invalid cookies", function() {
var server = require('webserver').create();
server.listen(12345, function(request, response) {
// echo received request headers in response body
response.write(JSON.stringify(request.headers));
response.close();
});
var url = "http://localhost:12345/foo/headers.txt?ab=cd";
page.cookies = [
{ // domain mismatch.
'name' : 'Invalid-Cookie-Name',
'value' : 'Invalid-Cookie-Value',
'domain' : 'foo.com'
},{ // path mismatch: the cookie will be set,
// but won't be visible from the given URL (not same path).
'name' : 'Invalid-Cookie-Name',
'value' : 'Invalid-Cookie-Value',
'domain' : 'localhost',
'path' : '/bar'
},{ // cookie expired.
'name' : 'Invalid-Cookie-Name',
'value' : 'Invalid-Cookie-Value',
'domain' : 'localhost',
'expires' : 'Sat, 09 Jun 2012 00:00:00 GMT'
},{ // https only: the cookie will be set,
// but won't be visible from the given URL (not https).
'name' : 'Invalid-Cookie-Name',
'value' : 'Invalid-Cookie-Value',
'domain' : 'localhost',
'secure' : true
},{ // cookie expired (date in "sec since epoch").
'name' : 'Invalid-Cookie-Name',
'value' : 'Invalid-Cookie-Value',
'domain' : 'localhost',
'expires' : new Date().getTime() - 1 //< date in the past
},{ // cookie expired (date in "sec since epoch" - using "expiry").
'name' : 'Invalid-Cookie-Name',
'value' : 'Invalid-Cookie-Value',
'domain' : 'localhost',
'expiry' : new Date().getTime() - 1 //< date in the past
}];
var handled = false;
runs(function() {
expect(handled).toEqual(false);
page.open(url, function (status) {
expect(status == 'success').toEqual(true);
handled = true;
var echoedHeaders = JSON.parse(page.plainText);
// console.log(JSON.stringify(echoedHeaders));
expect(echoedHeaders["Cookie"]).toBeUndefined();
});
});
waits(50);
runs(function() {
expect(handled).toEqual(true);
expect(page.cookies.length).toBe(0);
page.clearCookies(); //< delete all the cookies visible to this URL
expect(page.cookies.length).toBe(0);
server.close();
});
});
it("should add a cookie", function() {
var server = require('webserver').create();
server.listen(12345, function(request, response) {
// echo received request headers in response body
response.write(JSON.stringify(request.headers));
response.close();
});
var url = "http://localhost:12345/foo/headers.txt?ab=cd";
page.addCookie({
'name' : 'Added-Cookie-Name',
'value' : 'Added-Cookie-Value',
'domain' : 'localhost'
});
var handled = false;
runs(function() {
expect(handled).toEqual(false);
page.open(url, function (status) {
expect(status == 'success').toEqual(true);
handled = true;
var echoedHeaders = JSON.parse(page.plainText);
// console.log(JSON.stringify(echoedHeaders));
expect(echoedHeaders["Cookie"]).toContain("Added-Cookie-Name");
expect(echoedHeaders["Cookie"]).toContain("Added-Cookie-Value");
});
});
waits(50);
runs(function() {
expect(handled).toEqual(true);
server.close();
});
});
it("should delete a cookie", function() {
var server = require('webserver').create();
server.listen(12345, function(request, response) {
// echo received request headers in response body
response.write(JSON.stringify(request.headers));
response.close();
});
var url = "http://localhost:12345/foo/headers.txt?ab=cd";
page.deleteCookie("Added-Cookie-Name");
var handled = false;
runs(function() {
expect(handled).toEqual(false);
page.open(url, function (status) {
expect(status == 'success').toEqual(true);
handled = true;
var echoedHeaders = JSON.parse(page.plainText);
// console.log(JSON.stringify(echoedHeaders));
expect(echoedHeaders["Cookie"]).toBeUndefined();
});
});
waits(50);
runs(function() {
expect(handled).toEqual(true);
server.close();
});
});
it('should open url using secure connection', function() {
var page = require('webpage').create();
var url = 'https://httpbin.org/';
var loaded = false, handled = false;
runs(function() {
page.open(url, function(status) {
loaded = true;
expect(status == 'success').toEqual(true);
handled = true;
});
});
waitsFor(function () {
return loaded;
}, 'Can not load ' + url, 3000);
runs(function() {
expect(handled).toEqual(true);
});
});
xit('should fail on secure connection to url with bad cert', function() {
var page = require('webpage').create();
var url = 'https://tv.eurosport.com/';
/* example from:
* https://onlinessl.netlock.hu/en/test-center/bad-ssl-certificate-usage.html
*/
var handled = false;
runs(function() {
page.open(url, function(status) {
expect(status == 'success').toEqual(false);
handled = true;
});
});
waits(3000);
runs(function() {
expect(handled).toEqual(true);
});
});
xit("should interrupt a long-running JavaScript code", function() {
var page = new WebPage();
var longRunningScriptCalled = false;
var loadStatus;
page.onLongRunningScript = function() {
page.stopJavaScript();
longRunningScriptCalled = true;
};
page.onError = function () {};
runs(function() {
page.open('../test/webpage-spec-frames/forever.html',
function(status) { loadStatus = status; });
});
waits(5000);
runs(function() {
expect(loadStatus).toEqual('success');
expect(longRunningScriptCalled).toBeTruthy();
});
});
});
describe("WebPage construction with options", function () {
it("should accept an opts object", function() {
var opts = {},
page = new WebPage(opts);
expect(typeof page).toEqual('object');
expect(page).toNotEqual(null);
});
describe("specifying onConsoleMessage", function() {
var message = false,
opts = {
onConsoleMessage: function (msg) {
message = msg;
}
};
var page = new WebPage(opts);
it("should have onConsoleMessage that was specified",function () {
page.evaluate("function () {console.log('test log')}");
expect(message).toEqual("test log");
});
});
describe("specifying onLoadStarted", function() {
var started = false,
opts = {
onLoadStarted: function (status) {
started = true;
}
};
var page = new WebPage(opts);
it("should have onLoadStarted that was specified",function () {
runs(function() {
expect(started).toEqual(false);
page.open("about:blank");
});
waits(0);
runs(function() {
expect(started).toEqual(true);
});
});
});
describe("specifying onLoadFinished", function() {
var finished = false,
opts = {
onLoadFinished: function (status) {
finished = true;
}
};
var page = new WebPage(opts);
it("should have onLoadFinished that was specified",function () {
runs(function() {
expect(finished).toEqual(false);
page.open("about:blank");
});
waits(0);
runs(function() {
expect(finished).toEqual(true);
});
});
});
describe("specifying timeout", function () {
var opts = {
settings: {
timeout: 100 // time in ms
}
};
var page = new WebPage(opts);
it("should have timeout as "+opts.settings.timeout,function () {
expect(page.settings.timeout).toEqual(opts.settings.timeout);
});
});
});
describe("WebPage switch frame of execution (deprecated API)", function(){
var p = require("webpage").create();
function pageTitle(page) {
return page.evaluate(function(){
return window.document.title;
});
}
function setPageTitle(page, newTitle) {
page.evaluate(function(newTitle){
window.document.title = newTitle;
}, newTitle);
}
it("should load a page full of frames", function(){
runs(function() {
p.open("../test/webpage-spec-frames/index.html");
});
waits(50);
});
it("should be able to detect frames at level 0", function(){
expect(pageTitle(p)).toEqual("index");
expect(p.currentFrameName()).toEqual("");
expect(p.childFramesCount()).toEqual(2);
expect(p.childFramesName()).toEqual(["frame1", "frame2"]);
setPageTitle(p, pageTitle(p) + "-visited");
});
it("should go down to a child frame at level 1", function(){
expect(p.switchToChildFrame("frame1")).toBeTruthy();
expect(pageTitle(p)).toEqual("frame1");
expect(p.currentFrameName()).toEqual("frame1");
expect(p.childFramesCount()).toEqual(2);
expect(p.childFramesName()).toEqual(["frame1-1", "frame1-2"]);
setPageTitle(p, pageTitle(p) + "-visited");
});
it("should go down to a child frame at level 2", function(){
expect(p.switchToChildFrame("frame1-2")).toBeTruthy();
expect(pageTitle(p)).toEqual("frame1-2");
expect(p.currentFrameName()).toEqual("frame1-2");
expect(p.childFramesCount()).toEqual(0);
expect(p.childFramesName()).toEqual([]);
setPageTitle(p, pageTitle(p) + "-visited");
});
it("should go up to the parent frame at level 1", function(){
expect(p.switchToParentFrame()).toBeTruthy();
expect(pageTitle(p)).toEqual("frame1-visited");
expect(p.currentFrameName()).toEqual("frame1");
expect(p.childFramesCount()).toEqual(2);
expect(p.childFramesName()).toEqual(["frame1-1", "frame1-2"]);
});
it("should go down to a child frame at level 2 (again)", function(){
expect(p.switchToChildFrame(0)).toBeTruthy();
expect(pageTitle(p)).toEqual("frame1-1");
expect(p.currentFrameName()).toEqual("frame1-1");
expect(p.childFramesCount()).toEqual(0);
expect(p.childFramesName()).toEqual([]);
});
it("should go up to the main (top) frame at level 0", function(){
expect(p.switchToMainFrame()).toBeUndefined();
expect(pageTitle(p)).toEqual("index-visited");
expect(p.currentFrameName()).toEqual("");
expect(p.childFramesCount()).toEqual(2);
expect(p.childFramesName()).toEqual(["frame1", "frame2"]);
});
it("should go down to (the other) child frame at level 1", function(){
expect(p.switchToChildFrame("frame2")).toBeTruthy();
expect(pageTitle(p)).toEqual("frame2");
expect(p.currentFrameName()).toEqual("frame2");
expect(p.childFramesCount()).toEqual(3);
expect(p.childFramesName()).toEqual(["frame2-1", "frame2-2", "frame2-3"]);
});
});
describe("WebPage switch frame of execution", function(){
var p = require("webpage").create();
function pageTitle(page) {
return page.evaluate(function(){
return window.document.title;
});
}
function setPageTitle(page, newTitle) {
page.evaluate(function(newTitle){
window.document.title = newTitle;
}, newTitle);
}
it("should load a page full of frames", function(){
runs(function() {
p.open("../test/webpage-spec-frames/index.html");
});
waits(50);
});
it("should be able to detect frames at level 0", function(){
expect(pageTitle(p)).toEqual("index");
expect(p.frameName).toEqual("");
expect(p.framesCount).toEqual(2);
expect(p.framesName).toEqual(["frame1", "frame2"]);
setPageTitle(p, pageTitle(p) + "-visited");
});
it("should go down to a child frame at level 1", function(){
expect(p.switchToFrame("frame1")).toBeTruthy();
expect(pageTitle(p)).toEqual("frame1");
expect(p.frameName).toEqual("frame1");
expect(p.framesCount).toEqual(2);
expect(p.framesName).toEqual(["frame1-1", "frame1-2"]);
setPageTitle(p, pageTitle(p) + "-visited");
});
it("should go down to a child frame at level 2", function(){
expect(p.switchToFrame("frame1-2")).toBeTruthy();
expect(pageTitle(p)).toEqual("frame1-2");
expect(p.frameName).toEqual("frame1-2");
expect(p.framesCount).toEqual(0);
expect(p.framesName).toEqual([]);
setPageTitle(p, pageTitle(p) + "-visited");
});
it("should go up to the parent frame at level 1", function(){
expect(p.switchToParentFrame()).toBeTruthy();
expect(pageTitle(p)).toEqual("frame1-visited");
expect(p.frameName).toEqual("frame1");
expect(p.framesCount).toEqual(2);
expect(p.framesName).toEqual(["frame1-1", "frame1-2"]);
});
it("should go down to a child frame at level 2 (again)", function(){
expect(p.switchToFrame(0)).toBeTruthy();
expect(pageTitle(p)).toEqual("frame1-1");
expect(p.frameName).toEqual("frame1-1");
expect(p.framesCount).toEqual(0);
expect(p.framesName).toEqual([]);
});
it("should go up to the main (top) frame at level 0", function(){
expect(p.switchToMainFrame()).toBeUndefined();
expect(pageTitle(p)).toEqual("index-visited");
expect(p.frameName).toEqual("");
expect(p.framesCount).toEqual(2);
expect(p.framesName).toEqual(["frame1", "frame2"]);
});
it("should go down to (the other) child frame at level 1", function(){
expect(p.switchToFrame("frame2")).toBeTruthy();
expect(pageTitle(p)).toEqual("frame2");
expect(p.frameName).toEqual("frame2");
expect(p.framesCount).toEqual(3);
expect(p.framesName).toEqual(["frame2-1", "frame2-2", "frame2-3"]);
});
it("should have top level as focused frame", function(){
expect(p.focusedFrameName).toEqual("");
});
it("should move focus to level 1 frame", function(){
p.evaluate(function(){
window.focus();
});
expect(p.focusedFrameName).toEqual("frame2");
});
it("should move focus to level 2 frame", function(){
expect(p.switchToFrame("frame2-1")).toBeTruthy();
p.evaluate(function(){
window.focus();
});
expect(p.focusedFrameName).toEqual("frame2-1");
});
it("should move focus back to main frame", function(){
expect(p.switchToMainFrame()).toBeUndefined();
p.evaluate(function(){
window.focus();
});
expect(p.focusedFrameName).toEqual("");
});
it("should maintain focus but move current frame", function(){
p.evaluate(function(){
window.frames[0].focus();
});
expect(p.focusedFrameName).toEqual("frame1");
expect(p.frameName).toEqual("");
});
it("should change current frame to focused frame", function(){
expect(p.switchToFocusedFrame()).toBeUndefined();
expect(p.frameName).toEqual("frame1");
});
});
describe("WebPage opening and closing of windows/child-pages", function(){
var p = require("webpage").create();
it("should call 'onPageCreated' every time a call to 'window.open' is done", function(){
p.onPageCreated = jasmine.createSpy("onPageCreated spy");
p.evaluate(function() {
// yeah, I know globals. YIKES!
window.w1 = window.open("http://www.google.com", "google");
window.w2 = window.open("http://www.yahoo.com", "yahoo");
window.w3 = window.open("http://www.bing.com", "bing");
});
expect(p.onPageCreated).toHaveBeenCalled();
expect(p.onPageCreated.calls.length).toEqual(3);
});
it("should correctly resize the 'pages' array if a page gets closed", function(){
expect(p.pages.length).toEqual(3);
expect(p.pagesWindowName).toEqual(["google", "yahoo", "bing"]);
p.evaluate(function() {
window.w1.close();
});
waitsFor(function(){
return p.pages.length === 2;
}, "'pages' array didn't shrink after 1sec", 1000);
runs(function(){
expect(p.pages.length).toEqual(2);
expect(p.pagesWindowName).toEqual(["yahoo", "bing"]);
});
});
it("should resize the 'pages' array even more, when closing a page directly", function() {
expect(p.pages.length).toEqual(2);
expect(p.pagesWindowName).toEqual(["yahoo", "bing"]);
var yahoo = p.getPage("yahoo");
expect(yahoo).not.toBe(null);
yahoo.close();
waitsFor(function(){
return p.pages.length === 1;
}, "'pages' array didn't shrink after 1sec", 1000);
runs(function(){
expect(p.pages.length).toEqual(1);
expect(p.pagesWindowName).toEqual(["bing"]);
p.close();
});
});
});
describe("WebPage timeout handling", function(){
it("should call 'onResourceTimeout' on timeout", function(){
var p = require("webpage").create(),
spy;
// assume that requesting a web page will take longer than a millisecond
p.settings.resourceTimeout = 1;
spy = jasmine.createSpy("onResourceTimeout spy");
p.onResourceTimeout = spy;
expect(spy.calls.length).toEqual(0);
p.open("http://www.google.com:81/");
waitsFor(function() {
return spy.calls.length==1;
}, "after 1+ milliseconds 'onResourceTimeout' should have been invoked", 10);
runs(function() {
expect(spy).toHaveBeenCalled(); //< called
expect(spy.calls.length).toEqual(1); //< only once
expect(1).toEqual(1);
});
});
});
describe("WebPage closing notification/alerting", function(){
it("should call 'onClosing' when 'page.close()' is called", function(){
var p = require("webpage").create(),
spy;
spy = jasmine.createSpy("onClosing spy");
p.onClosing = spy;
expect(spy.calls.length).toEqual(0);
p.close();
waitsFor(function() {
return spy.calls.length === 1;
}, "after 2sec 'onClosing' had still not been invoked", 2000);
runs(function() {
expect(spy).toHaveBeenCalled(); //< called
expect(spy.calls.length).toEqual(1); //< only once
expect(spy).toHaveBeenCalledWith(p); //< called passing reference to the closing page 'p'
});
});
it("should call 'onClosing' when a page closes on it's own", function(){
var p = require("webpage").create(),
spy;
spy = jasmine.createSpy("onClosing spy");
p.onClosing = spy;
expect(spy.calls.length).toEqual(0);
p.evaluate(function() {
window.close();
});
waitsFor(function() {
return spy.calls.length === 1;
}, "after 2sec 'onClosing' had still not been invoked", 2000);
runs(function() {
expect(spy).toHaveBeenCalled(); //< called
expect(spy.calls.length).toEqual(1); //< only once
expect(spy).toHaveBeenCalledWith(p); //< called passing reference to the closing page 'p'
});
});
});
describe("WebPage closing notification/alerting: closing propagation control", function(){
it("should close all 4 pages if parent page is closed (default value for 'ownsPages')", function(){
var p = require("webpage").create(),
pages,
openPagesCount = 0;
p.onPageCreated = jasmine.createSpy("onPageCreated spy");
expect(p.ownsPages).toBeTruthy();
p.evaluate(function() {
// yeah, I know globals. YIKES!
window.w1 = window.open("http://www.google.com", "google");
window.w2 = window.open("http://www.yahoo.com", "yahoo");
window.w3 = window.open("http://www.bing.com", "bing");
});
pages = p.pages;
openPagesCount = p.pages.length + 1;
expect(p.onPageCreated).toHaveBeenCalled();
expect(p.onPageCreated.calls.length).toEqual(3);
expect(p.pages.length).toEqual(3);
p.onClosing = function() { --openPagesCount; };
pages[0].onClosing = function() { --openPagesCount; };
pages[1].onClosing = function() { --openPagesCount; };
pages[2].onClosing = function() { --openPagesCount; };
p.close();
waitsFor(function() {
return openPagesCount === 0;
}, "after 2sec pages were still open", 2000);
runs(function() {
expect(openPagesCount).toBe(0);
});
});
it("should NOT close all 4 pages if parent page is closed, just parent itself ('ownsPages' set to false)", function(){
var p = require("webpage").create(),
pages,
openPagesCount = 0;
p.ownsPages = false;
p.onPageCreated = jasmine.createSpy("onPageCreated spy");
expect(p.ownsPages).toBeFalsy();
p.evaluate(function() {
// yeah, I know globals. YIKES!
window.w1 = window.open("http://www.google.com", "google");
window.w2 = window.open("http://www.yahoo.com", "yahoo");
window.w3 = window.open("http://www.bing.com", "bing");
});
pages = p.pages;
openPagesCount = 1;
expect(p.onPageCreated).toHaveBeenCalled();
expect(p.onPageCreated.calls.length).toEqual(3);
expect(p.pages.length).toEqual(0);
p.onClosing = function() { --openPagesCount; };
p.close();
waitsFor(function() {
return openPagesCount === 0;
}, "after 2sec pages were still open", 2000);
runs(function() {
expect(openPagesCount).toBe(0);
});
});
});
describe("WebPage 'onFilePicker'", function() {
xit("should be able to set the file to upload when the File Picker is invoked (i.e. clicking on a 'input[type=file]')", function() {