File: test_prompt.html

package info (click to toggle)
wine-gecko-2.21 2.21%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 646,272 kB
  • ctags: 630,086
  • sloc: cpp: 2,895,786; ansic: 1,502,970; python: 156,675; asm: 115,373; java: 111,421; sh: 63,309; xml: 62,872; makefile: 58,685; perl: 19,182; objc: 3,461; yacc: 2,051; lex: 979; pascal: 929; exp: 449; php: 244; lisp: 228; awk: 211; sed: 26; csh: 21; ada: 16; ruby: 3
file content (1158 lines) | stat: -rw-r--r-- 43,208 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Login Manager</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>  
  <script type="text/javascript" src="pwmgr_common.js"></script>
  <script type="text/javascript" src="prompt_common.js"></script>
  <script type="text/javascript" src="notification_common.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
Login Manager test: username/password prompts
<p id="display"></p>

<div id="content" style="display: none">
  <iframe id="iframe"></iframe>
</div>

<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Login Manager: username / password prompts. **/
var pwmgr, ioService
var tmplogin, login1, login2A, login2B, login2C, login2D, login2E, login3A, login3B, login4, proxyLogin;
var mozproxy, proxiedHost = "http://mochi.test:8888";
var proxyChannel;
var testNum = 1;

function initLogins(pi) {
  pwmgr = Cc["@mozilla.org/login-manager;1"].
          getService(Ci.nsILoginManager);
  ioService = Cc["@mozilla.org/network/io-service;1"].
              getService(Ci.nsIIOService);

  mozproxy = "moz-proxy://" + SpecialPowers.wrap(pi).host + ":" +
              SpecialPowers.wrap(pi).port;

  tmpLogin = Cc["@mozilla.org/login-manager/loginInfo;1"].
             createInstance(Ci.nsILoginInfo);

  login1  = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  login2A = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  login2B = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  login2C = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  login2D = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  login2E = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  login3A = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  login3B = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  login4  = Cc["@mozilla.org/login-manager/loginInfo;1"].
            createInstance(Ci.nsILoginInfo);
  proxyLogin = Cc["@mozilla.org/login-manager/loginInfo;1"].
               createInstance(Ci.nsILoginInfo);

  login1.init("http://example.com", null, "http://example.com",
              "", "examplepass", "", "");
  login2A.init("http://example2.com", null, "http://example2.com",
               "user1name", "user1pass", "", "");
  login2B.init("http://example2.com", null, "http://example2.com",
               "user2name", "user2pass", "", "");
  login2C.init("http://example2.com", null, "http://example2.com",
               "user3.name@host", "user3pass", "", "");
  login2D.init("http://example2.com", null, "http://example2.com",
               "100@beef", "user3pass", "", "");
  login2E.init("http://example2.com", null, "http://example2.com",
               "100%beef", "user3pass", "", "");
  login3A.init("http://mochi.test:8888", null, "mochitest",
               "mochiuser1", "mochipass1", "", "");
  login3B.init("http://mochi.test:8888", null, "mochitest2",
               "mochiuser2", "mochipass2", "", "");
  login4.init("http://mochi.test:8888", null, "mochitest3",
               "mochiuser3", "mochipass3-old", "", "");
  proxyLogin.init(mozproxy, null, "Proxy Realm",
                  "proxuser", "proxpass", "", "");

  pwmgr.addLogin(login1);
  pwmgr.addLogin(login2A);
  pwmgr.addLogin(login2B);
  pwmgr.addLogin(login2C);
  pwmgr.addLogin(login2D);
  pwmgr.addLogin(login2E);
  pwmgr.addLogin(login3A);
  pwmgr.addLogin(login3B);
  pwmgr.addLogin(login4);
  pwmgr.addLogin(proxyLogin);
}

function finishTest() {
  try {
  ok(true, "finishTest removing testing logins...");
  dumpLogins(pwmgr);
ok(true, "removing login 1...");
  pwmgr.removeLogin(login1);
ok(true, "removing login 2A...");
  pwmgr.removeLogin(login2A);
ok(true, "removing login 2B...");
  pwmgr.removeLogin(login2B);
ok(true, "removing login 2C...");
  pwmgr.removeLogin(login2C);
ok(true, "removing login 2D...");
  pwmgr.removeLogin(login2D);
ok(true, "removing login 2E...");
  pwmgr.removeLogin(login2E);
ok(true, "removing login 3A...");
  pwmgr.removeLogin(login3A);
ok(true, "removing login 3B...");
  pwmgr.removeLogin(login3B);
ok(true, "removing login 4...");
  pwmgr.removeLogin(login4);
ok(true, "removing proxyLogin...");
  pwmgr.removeLogin(proxyLogin);
  } catch (e) { ok(false, "finishTest FAILED: " + e); }
ok(true, "whee, done!");

  SimpleTest.finish();
}

function proxyChannelListener() { }
proxyChannelListener.prototype = {
    onStartRequest: function(request, context) {
	doTests();
    },
    onStopRequest: function(request, context, status) { }
};

var resolveCallback = {
QueryInterface : function (iid) {
const interfaces = [Ci.nsIProtocolProxyCallback, Ci.nsISupports];

    if (!interfaces.some( function(v) { return iid.equals(v) } ))
	throw Components.results.NS_ERROR_NO_INTERFACE;
    return this;
},

    onProxyAvailable : function (req, uri, pi, status) {
        initLogins(pi);

	// I'm cheating a bit here... We should probably do some magic foo to get
	// something implementing nsIProxiedProtocolHandler and then call
	// NewProxiedChannel(), so we have something that's definately a proxied
	// channel. But Mochitests use a proxy for a number of hosts, so just
	// requesting a normal channel will give us a channel that's proxied.
	// The proxyChannel needs to move to at least on-modify-request to
	// have valid ProxyInfo, but we use OnStartRequest during startup()
	// for simplicity.
	proxyChannel = ioService.newChannel(proxiedHost, null, null);
	proxyChannel.asyncOpen(new proxyChannelListener(), null);
    }
};

function startup() {
            //need to allow for arbitrary network servers defined in PAC instead of a hardcoded moz-proxy.
    var ios = SpecialPowers.wrap(Components)
	.classes["@mozilla.org/network/io-service;1"]
	.getService(Components.interfaces.nsIIOService);

    var pps = SpecialPowers.wrap(Components)
	.classes["@mozilla.org/network/protocol-proxy-service;1"]
	.getService();

    var uri = ios.newURI("http://example.com", null, null);
    pps.asyncResolve(uri, 0, resolveCallback);
}

function addNotificationCallback(cb)
{
  storageObserver.notificationCallbacks.push(cb);
}

var storageObserver = {
  notificationCallbacks: [],

  QueryInterface : function (iid) {
    const interfaces = [Ci.nsIObserver,
                        Ci.nsISupports, Ci.nsISupportsWeakReference];

    if (!interfaces.some( function(v) { return iid.equals(v) } ))
      throw SpecialPowers.Components.results.NS_ERROR_NO_INTERFACE;
    return this;
  },

  observe : function (subject, topic, data) {
    ok(true, ".");
    ok(true, "observer for " + topic + " / " + data);
    ok(true, "Time is " + (new Date()).toUTCString());
    var wrapped = SpecialPowers.wrap(subject);
    try {
      switch (data) {
        case "addLogin":
            ok(wrapped.QueryInterface(Ci.nsILoginInfo), "subject QI 1");
            ok(wrapped.QueryInterface(Ci.nsILoginMetaInfo), "subject QI 2");
            dumpLogin("added: ", subject);
            break;
        case "modifyLogin":
            var arr = wrapped.QueryInterface(Ci.nsIArray);
            ok(arr, "subject QI");
            is(arr.length, 2, "should be 2 items");
            var oldLogin = arr.queryElementAt(0, Ci.nsILoginInfo);
            var newLogin = arr.queryElementAt(1, Ci.nsILoginInfo);
            dumpLogin("oldLogin: ", oldLogin);
            dumpLogin("newLogin: ", newLogin);
            break;
        case "removeLogin":
            ok(wrapped.QueryInterface(Ci.nsILoginInfo), "subject QI 1");
            ok(wrapped.QueryInterface(Ci.nsILoginMetaInfo), "subject QI 2");
            dumpLogin("removed: ", subject);
            break;
        case "removeAllLogins":
            is(subject, null, "no subject");
            break;
        case "hostSavingEnabled":
        case "hostSavingDisabled":
            ok(subject instanceof Ci.nsISupportsString, "subject QI");
            ok(true, "state is: " + subject.data);
            break;
        default:
            do_throw("Unhandled notification: " + data + " / " + topic);
      }

      if (this.notificationCallbacks.length)
        this.notificationCallbacks.splice(0, 1)[0]();
    } catch (e) { ok(false, "OBSERVER FAILED: " + e); }
  }
};

var observerService = Cc["@mozilla.org/observer-service;1"]
                      .getService(Ci.nsIObserverService);
observerService.addObserver(storageObserver, "passwordmgr-storage-changed", false);

/*
 * handleDialog
 *
 * Invoked a short period of time after calling startCallbackTimer(), and
 * allows testing the actual auth dialog while it's being displayed. Tests
 * should call startCallbackTimer() each time the auth dialog is expected (the
 * timer is a one-shot).
 */
function handleDialog(doc, testNum) {
  ok(true, "."); // make it easier to see next line in logs.
  ok(true, "handleDialog running for test " + testNum);
  ok(true, "Time is " + (new Date()).toUTCString());
dumpNotifications();

  var clickOK = true;
  var body = doc.getElementById("info.body");
  var userfield = doc.getElementById("loginTextbox");
  var passfield = doc.getElementById("password1Textbox");
  var username = userfield.getAttribute("value");
  var password = passfield.getAttribute("value");
  var dialog    = doc.getElementById("commonDialog");

  switch(testNum) {
    case 1:
        is(username, "abc", "Checking provided username");
        userfield.setAttribute("value", "xyz");
        // Temporarily commented out because of Bug #718543
        // is(doc.activeElement, userfield.inputField, "focus correct for test" + testNum);
        // doc.commandDispatcher.rewindFocus();
        // is(doc.activeElement, body, "description focusable");
        break;

    case 2:
        clickOK = false;
        break;

    case 10:
        is(password, "inputpw", "Checking provided password");
        passfield.setAttribute("value", "secret");
        // Temporarily commented out because of Bug #718543
        // is(doc.activeElement, passfield.inputField, "focus correct for test" + testNum);
        break;

    case 11:
        is(password, "inputpw", "Checking provided password");
        clickOK = false;
        break;

    case 12:
        is(password, "", "Checking provided password");
        passfield.setAttribute("value", "secret");
        break;

    case 14:
        is(password, "", "Checking provided password");
        passfield.setAttribute("value", "secret");
        break;

    case 30:
    case 31:
        is(password, "", "Checking provided password");
        passfield.setAttribute("value", "fill2pass");
        break;

    case 100:
        is(username, "inuser", "Checking provided username");
        is(password, "inpass", "Checking provided password");
        userfield.setAttribute("value", "outuser");
        passfield.setAttribute("value", "outpass");
        break;

    case 101:
        clickOK = false;
        break;

    case 102:
        is(username, "", "Checking provided username");
        is(password, "examplepass", "Checking provided password");
        break;

    case 103:
        ok(username == "user1name" || username == "user2name", "Checking filled username");
        ok(password == "user1pass" || password == "user2pass", "Checking filled password");
        break;

    case 104:
        is(username, "user1name", "Checking filled username");
        is(password, "user1pass", "Checking filled password");
        break;

    case 105:
        is(username, "user2name", "Checking filled username");
        is(password, "user2pass", "Checking filled password");
        break;

    case 106:
        is(username, "user2name", "Checking filled username");
        is(password, "user2pass", "Checking filled password");
        passfield.setAttribute("value", "NEWuser2pass");
        break;

    case 107:
        is(username, "user2name", "Checking filled username");
        is(password, "NEWuser2pass", "Checking filled password");
        passfield.setAttribute("value", "user2pass");
        break;

    case 120:
    case 121:
        is(username, "", "Checking filled username");
        is(password, "", "Checking filled password");
        userfield.setAttribute("value", "fill2user");
        passfield.setAttribute("value", "fill2pass");
        break;

    case 500:
        is(username, "inuser", "Checking unfilled username");
        is(password, "inpass", "Checking unfilled password");
        userfield.setAttribute("value", "outuser");
        passfield.setAttribute("value", "outpass");
        break;

    case 501:
        clickOK = false;
        break;

    case 502:
        is(username, "", "Checking filled username");
        is(password, "examplepass", "Checking filled password");
        break;

    case 503:
        // either of the two logins might have been filled in
        ok(username == "user1name" || username == "user2name", "Checking filled username");
        ok(password == "user1pass" || password == "user2pass", "Checking filled password");
        break;

    case 504:
        // either of the two logins might have been filled in
        ok(username == "user1name" || username == "user2name", "Checking filled username");
        ok(password == "user1pass" || password == "user2pass", "Checking filled password");
        // enter one of the known logins, test 504+505 exercise the two possible states.
        userfield.setAttribute("value", "user1name");
        passfield.setAttribute("value", "user1pass");
        break;

    case 505:
        // either of the two logins might have been filled in
        ok(username == "user1name" || username == "user2name", "Checking filled username");
        ok(password == "user1pass" || password == "user2pass", "Checking filled password");
        // enter one of the known logins, test 504+505 exercise the two possible states.
        userfield.setAttribute("value", "user2name");
        passfield.setAttribute("value", "user2pass");
        break;

    case 506:
        // either of the two logins might have been filled in
        ok(username == "user1name" || username == "user2name", "Checking filled username");
        ok(password == "user1pass" || password == "user2pass", "Checking filled password");
        // force to user2, and change the password
        userfield.setAttribute("value", "user2name");
        passfield.setAttribute("value", "NEWuser2pass");
        break;

    case 507:
        // either of the two logins might have been filled in
        ok(username == "user1name" || username == "user2name", "Checking filled username");
        ok(password == "user1pass" || password == "user2pass", "Checking filled password");
        // force to user2, and change the password back
        userfield.setAttribute("value", "user2name");
        passfield.setAttribute("value", "user2pass");
        break;

    case 508:
        is(username, "proxuser", "Checking filled username");
        is(password, "proxpass", "Checking filled password");
        break;

    // No case 509, it's unprompted.

    case 510:
        is(username, "proxuser", "Checking filled username");
        is(password, "proxpass", "Checking filled password");
        break;

    case 511:
        is(username, "proxuser", "Checking filled username");
        is(password, "proxpass", "Checking filled password");
        break;

    case 1000:
        is(username, "mochiuser1", "Checking filled username");
        is(password, "mochipass1", "Checking filled password");
        break;

    case 1001:
        is(username, "mochiuser2", "Checking filled username");
        is(password, "mochipass2", "Checking filled password");
        break;

    // (1002 doesn't trigger a dialog)

    case 1003:
        is(username, "mochiuser1", "Checking filled username");
        is(password, "mochipass1", "Checking filled password");
        passfield.setAttribute("value", "mochipass1-new");
        break;

    case 1004:
        is(username, "mochiuser3", "Checking filled username");
        is(password, "mochipass3-old", "Checking filled password");
        passfield.setAttribute("value", "mochipass3-new");
        break;

    case 1005:
        is(username, "", "Checking filled username");
        is(password, "", "Checking filled password");
        userfield.setAttribute("value", "mochiuser3");
        passfield.setAttribute("value", "mochipass3-old");
        break;

    default:
        ok(false, "Uhh, unhandled switch for testNum #" + testNum);
        break;
  }

  if (clickOK)
    dialog.acceptDialog();
  else
    dialog.cancelDialog();

  ok(true, "handleDialog done");
  didDialog = true;
}


/*
 * handleLoad
 *
 * Called when a load event is fired at the subtest's iframe.
 */
function handleLoad() {
  ok(true, "."); // make it easier to see next line in logs.
  ok(true, "handleLoad running for test " + testNum);
  ok(true, "Time is " + (new Date()).toUTCString());
dumpNotifications();

  if (testNum != 1002)
    ok(didDialog, "handleDialog was invoked");

  // The server echos back the user/pass it received.
  var username = iframe.contentDocument.getElementById("user").textContent;
  var password = iframe.contentDocument.getElementById("pass").textContent;
  var authok = iframe.contentDocument.getElementById("ok").textContent;

  switch(testNum) {
    case 1000:
        testNum++;
        is(authok, "PASS", "Checking for successful authentication");
        is(username, "mochiuser1", "Checking for echoed username");
        is(password, "mochipass1", "Checking for echoed password");
        startCallbackTimer();
        // We've already authenticated to this host:port. For this next
        // request, the existing auth should be sent, we'll get a 401 reply,
        // and we should prompt for new auth.
        iframe.src = "authenticate.sjs?user=mochiuser2&pass=mochipass2&realm=mochitest2";
        break;

    case 1001:
        testNum++;
        is(authok, "PASS", "Checking for successful authentication");
        is(username, "mochiuser2", "Checking for echoed username");
        is(password, "mochipass2", "Checking for echoed password");
        // Now make a load that requests the realm from test 1000. It was
        // already provided there, so auth will *not* be prompted for -- the
        // networking layer already knows it!
        iframe.src = "authenticate.sjs?user=mochiuser1&pass=mochipass1";
        break;


    case 1002:
        testNum++;
        is(authok, "PASS", "Checking for successful authentication");
        is(username, "mochiuser1", "Checking for echoed username");
        is(password, "mochipass1", "Checking for echoed password");

        // Same realm we've already authenticated to, but with a different
        // expected password (to trigger an auth prompt, and change-password
        // popup notification).
        startCallbackTimer();
        iframe.src = "authenticate.sjs?user=mochiuser1&pass=mochipass1-new";
        break;

    case 1003:
        testNum++;
        is(authok, "PASS", "Checking for successful authentication");
        is(username, "mochiuser1", "Checking for echoed username");
        is(password, "mochipass1-new", "Checking for echoed password");

        // Housekeeping: change it back
        function resetIt() {
          tmpLogin.init("http://mochi.test:8888", null, "mochitest",
                        "mochiuser1", "mochipass1-new", "", "");
          pwmgr.modifyLogin(tmpLogin, login3A);
        }
        addNotificationCallback(resetIt);

        // Check for the popup notification, and change the password.
        popup = getPopup(popupNotifications, "password-change");
        ok(popup, "got popup notification");
        clickPopupButton(popup, kChangeButton);
        popup.remove();

        // Same as last test, but for a realm we haven't already authenticated
        // to (but have an existing saved login for, so that we'll trigger
        // a change-password popup notification.
        startCallbackTimer();
        iframe.src = "authenticate.sjs?user=mochiuser3&pass=mochipass3-new&realm=mochitest3";
        break;

    case 1004:
        testNum++;
        is(authok, "PASS", "Checking for successful authentication");
        is(username, "mochiuser3", "Checking for echoed username");
        is(password, "mochipass3-new", "Checking for echoed password");

        // Housekeeping: change it back to the original login4. Actually,
        // just delete it and we'll re-add it as the next test.
        function clearIt() {
          ok(true, "1004's clearIt() called.");
         try {
          tmpLogin.init("http://mochi.test:8888", null, "mochitest3",
                        "mochiuser3", "mochipass3-new", "", "");
          pwmgr.removeLogin(tmpLogin);

          // Trigger a new prompt, so we can test adding a new login.
          startCallbackTimer();
          iframe.src = "authenticate.sjs?user=mochiuser3&pass=mochipass3-old&realm=mochitest3";
         } catch (e) { ok(false, "clearIt GOT EXCEPTION: " + e); }
        }
        addNotificationCallback(clearIt);

        // Check for the popup notification, and change the password.
        popup = getPopup(popupNotifications, "password-change");
        ok(popup, "got popup notification");
        clickPopupButton(popup, kChangeButton);
        popup.remove();

        // Clear cached auth from this subtest, and avoid leaking due to bug 459620.
        var authMgr = Cc['@mozilla.org/network/http-auth-manager;1'].
                      getService(Ci.nsIHttpAuthManager);
        authMgr.clearAll();
        ok(true, "authMgr cleared cached auth");
        break;

    case 1005:
        testNum++;
        is(authok, "PASS", "Checking for successful authentication");
        is(username, "mochiuser3", "Checking for echoed username");
        is(password, "mochipass3-old", "Checking for echoed password");

        function finishIt() {
          finishTest();
        }
        addNotificationCallback(finishIt);

        // Check for the popup notification, and change the password.
        popup = getPopup(popupNotifications, "password-save");
        ok(popup, "got popup notification");
        clickPopupButton(popup, kRememberButton);
        popup.remove();
        break;

    default:
        ok(false, "Uhh, unhandled switch for testNum #" + testNum);
        break;
  }

}

startup();

function doTests() {
var authinfo = {
    username : "",
    password : "",
    domain   : "",

    flags : Ci.nsIAuthInformation.AUTH_HOST,
    authenticationScheme : "basic",
    realm : ""
};

var proxyAuthinfo = {
    username : "",
    password : "",
    domain   : "",

    flags : Ci.nsIAuthInformation.AUTH_PROXY,
    authenticationScheme : "basic",
    realm : ""
};

var prefs = Cc["@mozilla.org/preferences-service;1"].
            getService(Ci.nsIPrefBranch);

const Cc_promptFac= Cc["@mozilla.org/passwordmanager/authpromptfactory;1"];
ok(Cc_promptFac != null, "Access Cc[@mozilla.org/passwordmanager/authpromptfactory;1]");

const Ci_promptFac = Ci.nsIPromptFactory;
ok(Ci_promptFac != null, "Access Ci.nsIPromptFactory");

const promptFac = Cc_promptFac.getService(Ci_promptFac);
ok(promptFac != null, "promptFac getService()");

var prompter1 = promptFac.getPrompt(window, Ci.nsIAuthPrompt);
var prompter2 = promptFac.getPrompt(window, Ci.nsIAuthPrompt2);

function dialogTitle() { return "nsILoginManagerPrompter test #" + testNum; }
var dialogText  = "This dialog should be modified and dismissed by the test.";
var uname  = { value : null };
var pword  = { value : null };
var result = { value : null };
var isOk;

// popupNotifications (not *popup*) is a constant, per-tab container. So, we
// only need to fetch it once.
var popupNotifications = getPopupNotifications(window.top);
ok(popupNotifications, "Got popupNotifications");

// ===== test 1 ===== 
testNum = 1;
startCallbackTimer();
isOk = prompter1.prompt(dialogTitle(), dialogText, "http://example.com",
                        Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, "abc", result);

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(result.value, "xyz", "Checking prompt() returned value");


// ===== test 2 =====
testNum++;
startCallbackTimer();
isOk = prompter1.prompt(dialogTitle(), dialogText, "http://example.com",
                        Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, "abc", result);
ok(didDialog, "handleDialog was invoked");
ok(!isOk, "Checking dialog return value (cancel)");


// ===== test 10 =====
// Default password provided, existing logins are ignored.
testNum = 10;
pword.value = "inputpw";
startCallbackTimer();
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://example.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(pword.value, "secret", "Checking returned password");

// ===== test 11 =====
// Default password provided, existing logins are ignored.
testNum++;
pword.value = "inputpw";
startCallbackTimer();
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://example.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(!isOk, "Checking dialog return value (cancel)");
ok(didDialog, "handleDialog was invoked");

// ===== test 12 =====
// No default password provided, realm does not match existing login.
testNum++;
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://nonexample.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(pword.value, "secret", "Checking returned password");

// ===== test 13 =====
// No default password provided, matching login is returned w/o prompting.
testNum++;
pword.value = null;
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://example.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
is(pword.value, "examplepass", "Checking returned password");

// ===== test 14 =====
// No default password provided, none of the logins from this host are
// password-only so the user is prompted.
testNum++;
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(pword.value, "secret", "Checking returned password");

// ===== test 15 =====
// No default password provided, matching login is returned w/o prompting.
testNum++;
pword.value = null;
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://user1name@example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
is(pword.value, "user1pass", "Checking returned password");

// ===== test 16 =====
// No default password provided, matching login is returned w/o prompting.
testNum++;
pword.value = null;
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://user2name@example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
is(pword.value, "user2pass", "Checking returned password");

// ===== test 17 =====
// No default password provided, matching login is returned w/o prompting.
testNum++;
pword.value = null;
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://user3%2Ename%40host@example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
is(pword.value, "user3pass", "Checking returned password");

// ===== test 18 =====
// No default password provided, matching login is returned w/o prompting.
testNum++;
pword.value = null;
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://100@beef@example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
is(pword.value, "user3pass", "Checking returned password");

// ===== test 19 =====
// No default password provided, matching login is returned w/o prompting.
testNum++;
pword.value = null;
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "http://100%25beef@example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
is(pword.value, "user3pass", "Checking returned password");


// XXX test saving a password with  Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY


// ===== test 30 =====
// We don't pre-fill or save for NS_GetAuthKey-generated realms, but we should still prompt
testNum = 30;
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "example2.com:80 (somerealm)",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(pword.value, "fill2pass", "Checking returned password");

// ===== test 31 =====
// We don't pre-fill or save for NS_GetAuthKey-generated realms, but we should still prompt
testNum++;
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptPassword(dialogTitle(), dialogText, "example2.com:80 (somerealm)",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(pword.value, "fill2pass", "Checking returned password");


// ===== test 100 =====
testNum = 100;
uname.value = "inuser";
pword.value = "inpass";
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "http://nonexample.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(uname.value, "outuser", "Checking returned username");
is(pword.value, "outpass", "Checking returned password");

// ===== test 101 =====
testNum++;
uname.value = "inuser";
pword.value = "inpass";
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "http://nonexample.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, uname, pword);
ok(!isOk, "Checking dialog return value (cancel)");
ok(didDialog, "handleDialog was invoked");

// ===== test 102 =====
// test filling in existing password-only login
testNum++;
uname.value = null;
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "http://example.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(uname.value, "", "Checking returned username");
is(pword.value, "examplepass", "Checking returned password");

// ===== test 103 =====
// test filling in existing login (undetermined from multiple selection)
testNum++;
uname.value = null;
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "http://example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
ok(uname.value == "user1name" || uname.value == "user2name", "Checking returned username");
ok(pword.value == "user1pass" || uname.value == "user2pass", "Checking returned password");

// ===== test 104 =====
// test filling in existing login (user1 from multiple selection)
testNum++;
uname.value = "user1name";
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "http://example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(uname.value, "user1name", "Checking returned username");
is(pword.value, "user1pass", "Checking returned password");

// ===== test 105 =====
// test filling in existing login (user2 from multiple selection)
testNum++;
uname.value = "user2name";
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "http://example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(uname.value, "user2name", "Checking returned username");
is(pword.value, "user2pass", "Checking returned password");

// ===== test 106 =====
// test changing password
testNum++;
uname.value = "user2name";
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "http://example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(uname.value, "user2name", "Checking returned username");
is(pword.value, "NEWuser2pass", "Checking returned password");

// ===== test 107 =====
// test changing password (back to original value)
testNum++;
uname.value = "user2name";
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "http://example2.com",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(uname.value, "user2name", "Checking returned username");
is(pword.value, "user2pass", "Checking returned password");

// ===== test 120 =====
// We don't pre-fill or save for NS_GetAuthKey-generated realms, but we should still prompt
testNum = 120;
uname.value = null;
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "example2.com:80 (somerealm)",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_NEVER, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(uname.value, "fill2user", "Checking returned username");
is(pword.value, "fill2pass", "Checking returned password");

// ===== test 121 =====
// We don't pre-fill or save for NS_GetAuthKey-generated realms, but we should still prompt
testNum++;
uname.value = null;
pword.value = null;
startCallbackTimer();
isOk = prompter1.promptUsernameAndPassword(dialogTitle(), dialogText, "example2.com:80 (somerealm)",
                                Ci.nsIAuthPrompt.SAVE_PASSWORD_PERMANENTLY, uname, pword);
ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(uname.value, "fill2user", "Checking returned username");
is(pword.value, "fill2pass", "Checking returned password");


var channel1 = ioService.newChannel("http://example.com", null, null);
var channel2 = ioService.newChannel("http://example2.com", null, null);

var level = Ci.nsIAuthPrompt2.LEVEL_NONE;


// ===== test 500 =====
testNum = 500;
authinfo.username = "inuser";
authinfo.password = "inpass";
authinfo.realm    = "some realm";

startCallbackTimer();
isOk = prompter2.promptAuth(channel1, level, authinfo);

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(authinfo.username, "outuser", "Checking returned username");
is(authinfo.password, "outpass", "Checking returned password");

// ===== test 501 =====
testNum++;
startCallbackTimer();
isOk = prompter2.promptAuth(channel1, level, authinfo);

ok(!isOk, "Checking dialog return value (cancel)");
ok(didDialog, "handleDialog was invoked");

// ===== test 502 =====
// test filling in password-only login
testNum++;
authinfo.username = "";
authinfo.password = "";
authinfo.realm    = "http://example.com";

startCallbackTimer();
isOk = prompter2.promptAuth(channel1, level, authinfo);

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(authinfo.username, "", "Checking returned username");
is(authinfo.password, "examplepass", "Checking returned password");

// ===== test 503 =====
// test filling in existing login (undetermined from multiple selection)
testNum++;
authinfo.username = "";
authinfo.password = "";
authinfo.realm    = "http://example2.com";

startCallbackTimer();
isOk = prompter2.promptAuth(channel2, level, authinfo);

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
ok(authinfo.username == "user1name" || authinfo.username == "user2name", "Checking returned username");
ok(authinfo.password == "user1pass" || authinfo.password == "user2pass", "Checking returned password");

// ===== test 504 =====
// test filling in existing login (undetermined --> user1)
testNum++;
authinfo.username = "";
authinfo.password = "";
authinfo.realm    = "http://example2.com";

startCallbackTimer();
isOk = prompter2.promptAuth(channel2, level, authinfo);

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(authinfo.username, "user1name", "Checking returned username");
is(authinfo.password, "user1pass", "Checking returned password");

// ===== test 505 =====
// test filling in existing login (undetermined --> user2)
testNum++;
authinfo.username = "";
authinfo.password = "";
authinfo.realm    = "http://example2.com";

dumpNotifications();
startCallbackTimer();
isOk = prompter2.promptAuth(channel2, level, authinfo);

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(authinfo.username, "user2name", "Checking returned username");
is(authinfo.password, "user2pass", "Checking returned password");

// ===== test 506 =====
// test changing a password (undetermined --> user2 w/ newpass)
testNum++;
authinfo.username = "";
authinfo.password = "";
authinfo.realm    = "http://example2.com";

dumpNotifications();
startCallbackTimer();
isOk = prompter2.promptAuth(channel2, level, authinfo);

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(authinfo.username, "user2name", "Checking returned username");
is(authinfo.password, "NEWuser2pass", "Checking returned password");

// ===== test 507 =====
// test changing a password (undetermined --> user2 w/ origpass)
testNum++;
authinfo.username = "";
authinfo.password = "";
authinfo.realm    = "http://example2.com";

dumpNotifications();
startCallbackTimer();
isOk = prompter2.promptAuth(channel2, level, authinfo);

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
is(authinfo.username, "user2name", "Checking returned username");
is(authinfo.password, "user2pass", "Checking returned password");

// ===== test 508 =====
// test proxy login (default = no autologin), make sure it prompts.
testNum++;
proxyAuthinfo.username = "";
proxyAuthinfo.password = "";
proxyAuthinfo.realm    = "Proxy Realm";
proxyAuthinfo.flags    = Ci.nsIAuthInformation.AUTH_PROXY;

dumpNotifications();
var time1 = pwmgr.findLogins({}, mozproxy, null, "Proxy Realm")[0].QueryInterface(Ci.nsILoginMetaInfo).timeLastUsed;
startCallbackTimer();
isOk = prompter2.promptAuth(proxyChannel, level, proxyAuthinfo);
var time2 = pwmgr.findLogins({}, mozproxy, null, "Proxy Realm")[0].QueryInterface(Ci.nsILoginMetaInfo).timeLastUsed;

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
isnot(time1, time2, "Checking that timeLastUsed was updated");
is(proxyAuthinfo.username, "proxuser", "Checking returned username");
is(proxyAuthinfo.password, "proxpass", "Checking returned password");

// ===== test 509 =====
// test proxy login (with autologin)
testNum++;

// Enable the autologin pref.
prefs.setBoolPref("signon.autologin.proxy", true);

proxyAuthinfo.username = "";
proxyAuthinfo.password = "";
proxyAuthinfo.realm    = "Proxy Realm";
proxyAuthinfo.flags    = Ci.nsIAuthInformation.AUTH_PROXY;

time1 = pwmgr.findLogins({}, mozproxy, null, "Proxy Realm")[0].QueryInterface(Ci.nsILoginMetaInfo).timeLastUsed;
isOk = prompter2.promptAuth(proxyChannel, level, proxyAuthinfo);
time2 = pwmgr.findLogins({}, mozproxy, null, "Proxy Realm")[0].QueryInterface(Ci.nsILoginMetaInfo).timeLastUsed;

ok(isOk, "Checking dialog return value (accept)");
isnot(time1, time2, "Checking that timeLastUsed was updated");
is(proxyAuthinfo.username, "proxuser", "Checking returned username");
is(proxyAuthinfo.password, "proxpass", "Checking returned password");

// ===== test 510 =====
// test proxy login (with autologin), ensure it prompts after a failed auth.
testNum++;

proxyAuthinfo.username = "";
proxyAuthinfo.password = "";
proxyAuthinfo.realm    = "Proxy Realm";
proxyAuthinfo.flags    = (Ci.nsIAuthInformation.AUTH_PROXY | Ci.nsIAuthInformation.PREVIOUS_FAILED);

time1 = pwmgr.findLogins({}, mozproxy, null, "Proxy Realm")[0].QueryInterface(Ci.nsILoginMetaInfo).timeLastUsed;
startCallbackTimer();
isOk = prompter2.promptAuth(proxyChannel, level, proxyAuthinfo);
time2 = pwmgr.findLogins({}, mozproxy, null, "Proxy Realm")[0].QueryInterface(Ci.nsILoginMetaInfo).timeLastUsed;

ok(isOk, "Checking dialog return value (accept)");
ok(didDialog, "handleDialog was invoked");
isnot(time1, time2, "Checking that timeLastUsed was updated");
is(proxyAuthinfo.username, "proxuser", "Checking returned username");
is(proxyAuthinfo.password, "proxpass", "Checking returned password");

// ===== test 511 =====
// test proxy login (with autologin), ensure it prompts in Private Browsing mode.
testNum++;

proxyAuthinfo.username = "";
proxyAuthinfo.password = "";
proxyAuthinfo.realm    = "Proxy Realm";
proxyAuthinfo.flags    = Ci.nsIAuthInformation.AUTH_PROXY;


prefs.clearUserPref("signon.autologin.proxy");

// XXX check for and kill popup notification??
// XXX check for checkbox / checkstate on old prompts?
// XXX check NTLM domain stuff


var iframe = document.getElementById("iframe");
iframe.onload = handleLoad;

// clear plain HTTP auth sessions before the test, to allow
// running them more than once.
var authMgr = Cc['@mozilla.org/network/http-auth-manager;1'].
              getService(Ci.nsIHttpAuthManager);
authMgr.clearAll();

// ===== test 1000 =====
testNum = 1000;
startCallbackTimer();
iframe.src = "authenticate.sjs?user=mochiuser1&pass=mochipass1";

// ...remaining tests are driven by handleLoad()...
SimpleTest.waitForExplicitFinish();
}
</script>
</pre>
</body>
</html>