summaryrefslogtreecommitdiffstats
path: root/uriloader/exthandler/tests/mochitest/browser_protocol_ask_dialog_permission.js
blob: 7d51a9c59ab779d9de67caff8e0041243bb05894 (plain)
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
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

var { AppConstants } = ChromeUtils.importESModule(
  "resource://gre/modules/AppConstants.sys.mjs"
);

const { ExtensionPermissions } = ChromeUtils.importESModule(
  "resource://gre/modules/ExtensionPermissions.sys.mjs"
);

let gHandlerService = Cc["@mozilla.org/uriloader/handler-service;1"].getService(
  Ci.nsIHandlerService
);

const ROOT_PATH = getRootDirectory(gTestPath).replace(
  "chrome://mochitests/content/",
  ""
);

// Testing multiple protocol / origin combinations takes long on debug.
requestLongerTimeout(7);

const DIALOG_URL_APP_CHOOSER =
  "chrome://mozapps/content/handling/appChooser.xhtml";
const DIALOG_URL_PERMISSION =
  "chrome://mozapps/content/handling/permissionDialog.xhtml";

const PROTOCOL_HANDLER_OPEN_PERM_KEY = "open-protocol-handler";
const PERMISSION_KEY_DELIMITER = "^";

const TEST_PROTOS = ["foo", "bar"];

let testDir = getChromeDir(getResolvedURI(gTestPath));

const ORIGIN1 = "https://example.com";
const ORIGIN2 = "https://example.org";
const ORIGIN3 = Services.io.newFileURI(testDir).spec;
const PRINCIPAL1 =
  Services.scriptSecurityManager.createContentPrincipalFromOrigin(ORIGIN1);
const PRINCIPAL2 =
  Services.scriptSecurityManager.createContentPrincipalFromOrigin(ORIGIN2);
const PRINCIPAL3 =
  Services.scriptSecurityManager.createContentPrincipalFromOrigin(ORIGIN3);

const NULL_PRINCIPAL_SCHEME = Services.scriptSecurityManager
  .createNullPrincipal({})
  .scheme.toLowerCase();

/**
 * Get the open protocol handler permission key for a given protocol scheme.
 * @param {string} aProtocolScheme - Scheme of protocol to construct permission
 * key with.
 */
function getSkipProtoDialogPermissionKey(aProtocolScheme) {
  return (
    PROTOCOL_HANDLER_OPEN_PERM_KEY + PERMISSION_KEY_DELIMITER + aProtocolScheme
  );
}

/**
 * Creates dummy web protocol handlers used for testing.
 */
function initTestHandlers() {
  TEST_PROTOS.forEach(scheme => {
    let webHandler = Cc[
      "@mozilla.org/uriloader/web-handler-app;1"
    ].createInstance(Ci.nsIWebHandlerApp);
    webHandler.name = scheme + "Handler";
    webHandler.uriTemplate = ORIGIN1 + "/?url=%s";

    let handlerInfo = HandlerServiceTestUtils.getBlankHandlerInfo(scheme);
    handlerInfo.possibleApplicationHandlers.appendElement(webHandler);
    handlerInfo.preferredApplicationHandler = webHandler;
    gHandlerService.store(handlerInfo);
  });
}

/**
 * Update whether the protocol handler dialog is shown for our test protocol +
 * handler.
 * @param {string} scheme - Scheme of the protocol to change the ask state for.
 * @param {boolean} ask - true => show dialog, false => skip dialog.
 */
function updateAlwaysAsk(scheme, ask) {
  let handlerInfo = HandlerServiceTestUtils.getHandlerInfo(scheme);
  handlerInfo.alwaysAskBeforeHandling = ask;
  gHandlerService.store(handlerInfo);
}

/**
 * Test whether the protocol handler dialog is set to show for our
 * test protocol + handler.
 * @param {string} scheme - Scheme of the protocol to test the ask state for.
 * @param {boolean} ask - true => show dialog, false => skip dialog.
 */
function testAlwaysAsk(scheme, ask) {
  is(
    HandlerServiceTestUtils.getHandlerInfo(scheme).alwaysAskBeforeHandling,
    ask,
    "Should have correct alwaysAsk state."
  );
}

/**
 * Triggers the load via a server redirect.
 * @param {string} serverRedirect - The redirect type.
 */
function useServerRedirect(serverRedirect) {
  return async (browser, scheme) => {
    let uri = `${scheme}://test`;

    let innerParams = new URLSearchParams();
    innerParams.set("uri", uri);
    innerParams.set("redirectType", serverRedirect);
    let params = new URLSearchParams();
    params.set(
      "uri",
      "https://example.com/" +
        ROOT_PATH +
        "redirect_helper.sjs?" +
        innerParams.toString()
    );
    uri =
      "https://example.org/" +
      ROOT_PATH +
      "redirect_helper.sjs?" +
      params.toString();
    BrowserTestUtils.loadURIString(browser, uri);
  };
}

/**
 * Triggers the load with a specific principal or the browser's current
 * principal.
 * @param {nsIPrincipal} [principal] - Principal to use to trigger the load.
 */
function useTriggeringPrincipal(principal = undefined) {
  return async (browser, scheme) => {
    let uri = `${scheme}://test`;
    let triggeringPrincipal = principal ?? browser.contentPrincipal;

    info("Loading uri: " + uri);
    browser.loadURI(Services.io.newURI(uri), { triggeringPrincipal });
  };
}

/**
 * Navigates to a test URL with the given protocol scheme and waits for the
 * result.
 * @param {MozBrowser} browser - Browser to navigate.
 * @param {string} scheme - Scheme of the test url. e.g. irc
 * @param {Object} [options] - Test options.
 * @param {Object} [options.permDialogOptions] - Test options for the permission
 * dialog. If defined, we expect this dialog to be shown.
 * @param {Object} [options.chooserDialogOptions] - Test options for the chooser
 * dialog. If defined, we expect this dialog to be shown.
 * @param {Function} [options.triggerLoad] - An async callback function to
 * trigger the load. Will be passed the browser and scheme to use.
 * @param {nsIPrincipal} [options.triggeringPrincipal] - Principal to trigger
 * the load with. Defaults to the browsers content principal.
 * @returns {Promise} - A promise which resolves once the test is complete.
 */
async function testOpenProto(
  browser,
  scheme,
  {
    permDialogOptions,
    chooserDialogOptions,
    triggerLoad = useTriggeringPrincipal(),
  } = {}
) {
  let permDialogOpenPromise;
  let chooserDialogOpenPromise;

  if (permDialogOptions) {
    info("Should see permission dialog");
    permDialogOpenPromise = waitForProtocolPermissionDialog(browser, true);
  }

  if (chooserDialogOptions) {
    info("Should see chooser dialog");
    chooserDialogOpenPromise = waitForProtocolAppChooserDialog(browser, true);
  }
  await triggerLoad(browser, scheme);
  let webHandlerLoadedPromise;

  let webHandlerShouldOpen =
    (!permDialogOptions && !chooserDialogOptions) ||
    ((permDialogOptions?.actionConfirm || permDialogOptions?.actionChangeApp) &&
      chooserDialogOptions?.actionConfirm);

  // Register web handler load listener if we expect to trigger it.
  if (webHandlerShouldOpen) {
    webHandlerLoadedPromise = waitForHandlerURL(browser, scheme);
  }

  if (permDialogOpenPromise) {
    let dialog = await permDialogOpenPromise;
    let dialogEl = getDialogElementFromSubDialog(dialog);
    let dialogType = getDialogType(dialog);

    let {
      hasCheckbox,
      checkboxOrigin,
      hasChangeApp,
      chooserIsNext,
      actionCheckbox,
      actionConfirm,
      actionChangeApp,
      checkContents,
    } = permDialogOptions;

    if (actionChangeApp) {
      actionConfirm = false;
    }

    let descriptionEl = dialogEl.querySelector("#description");
    ok(
      descriptionEl && BrowserTestUtils.is_visible(descriptionEl),
      "Has a visible description element."
    );

    ok(
      !descriptionEl.innerHTML.toLowerCase().includes(NULL_PRINCIPAL_SCHEME),
      "Description does not include NullPrincipal scheme."
    );

    await testCheckbox(dialogEl, dialogType, {
      hasCheckbox,
      actionCheckbox,
      checkboxOrigin,
    });

    // Check the button label depending on whether we would show the chooser
    // dialog next or directly open the handler.
    let acceptBtnLabel = dialogEl.getButton("accept")?.label;

    if (chooserIsNext) {
      is(
        acceptBtnLabel,
        "Choose Application",
        "Accept button has choose app label"
      );
    } else {
      is(acceptBtnLabel, "Open Link", "Accept button has open link label");
    }

    let changeAppLink = dialogEl.ownerDocument.getElementById("change-app");
    if (typeof hasChangeApp == "boolean") {
      ok(changeAppLink, "Permission dialog should have changeApp link label");
      is(
        !changeAppLink.hidden,
        hasChangeApp,
        "Permission dialog change app link label"
      );
    }

    if (checkContents) {
      checkContents(dialogEl);
    }

    if (actionChangeApp) {
      let dialogClosedPromise = waitForProtocolPermissionDialog(browser, false);
      changeAppLink.click();
      await dialogClosedPromise;
    } else {
      await closeDialog(browser, dialog, actionConfirm, scheme);
    }
  }

  if (chooserDialogOpenPromise) {
    let dialog = await chooserDialogOpenPromise;
    let dialogEl = getDialogElementFromSubDialog(dialog);
    let dialogType = getDialogType(dialog);

    let { hasCheckbox, actionCheckbox, actionConfirm } = chooserDialogOptions;

    await testCheckbox(dialogEl, dialogType, {
      hasCheckbox,
      actionCheckbox,
    });

    await closeDialog(browser, dialog, actionConfirm, scheme);
  }

  if (webHandlerShouldOpen) {
    info("Waiting for web handler to open");
    await webHandlerLoadedPromise;
  } else {
    info("Web handler open canceled");
  }
}

/**
 * Inspects the checkbox state and interacts with it.
 * @param {dialog} dialogEl
 * @param {string} dialogType - String identifier of dialog type.
 * Either "permission" or "chooser".
 * @param {Object} options - Test Options.
 * @param {boolean} [options.hasCheckbox] - Whether the dialog is expected to
 * have a visible checkbox.
 * @param {boolean} [options.hasCheckboxState] - The check state of the checkbox
 * to test for. true = checked, false = unchecked.
 * @param {boolean} [options.actionCheckbox] - The state to set on the checkbox.
 * true = checked, false = unchecked.
 */
async function testCheckbox(
  dialogEl,
  dialogType,
  { hasCheckbox, hasCheckboxState = false, actionCheckbox, checkboxOrigin }
) {
  let checkbox = dialogEl.ownerDocument.getElementById("remember");
  if (typeof hasCheckbox == "boolean") {
    is(
      checkbox && BrowserTestUtils.is_visible(checkbox),
      hasCheckbox,
      "Dialog checkbox has correct visibility."
    );

    let checkboxLabel = dialogEl.ownerDocument.getElementById("remember-label");
    is(
      checkbox && BrowserTestUtils.is_visible(checkboxLabel),
      hasCheckbox,
      "Dialog checkbox label has correct visibility."
    );
    if (hasCheckbox) {
      ok(
        !checkboxLabel.innerHTML.toLowerCase().includes(NULL_PRINCIPAL_SCHEME),
        "Dialog checkbox label does not include NullPrincipal scheme."
      );
    }
  }

  if (typeof hasCheckboxState == "boolean") {
    is(checkbox.checked, hasCheckboxState, "Dialog checkbox has correct state");
  }

  if (checkboxOrigin) {
    let doc = dialogEl.ownerDocument;
    let hostFromLabel = doc.l10n.getAttributes(
      doc.getElementById("remember-label")
    ).args.host;
    is(hostFromLabel, checkboxOrigin, "Checkbox should be for correct domain.");
  }

  if (typeof actionCheckbox == "boolean") {
    checkbox.click();
  }
}

/**
 * Get the dialog element which is a child of the SubDialogs browser frame.
 * @param {SubDialog} subDialog - Dialog to get the dialog element for.
 */
function getDialogElementFromSubDialog(subDialog) {
  let dialogEl = subDialog._frame.contentDocument.querySelector("dialog");
  ok(dialogEl, "SubDialog should have dialog element");
  return dialogEl;
}

/**
 * Wait for the test handler to be opened.
 * @param {MozBrowser} browser - The browser the load should occur in.
 * @param {string} scheme - Scheme which triggered the handler to open.
 */
function waitForHandlerURL(browser, scheme) {
  return BrowserTestUtils.browserLoaded(
    browser,
    false,
    url => url == `${ORIGIN1}/?url=${scheme}%3A%2F%2Ftest`
  );
}

/**
 * Test for open-protocol-handler permission.
 * @param {nsIPrincipal} principal - The principal to test the permission on.
 * @param {string} scheme - Scheme to generate permission key.
 * @param {boolean} hasPerm - Whether we expect the princial to set the
 * permission (true), or not (false).
 */
function testPermission(principal, scheme, hasPerm) {
  let permKey = getSkipProtoDialogPermissionKey(scheme);
  let result = Services.perms.testPermissionFromPrincipal(principal, permKey);
  let message = `${permKey} ${hasPerm ? "is" : "is not"} set for ${
    principal.origin
  }.`;
  is(result == Services.perms.ALLOW_ACTION, hasPerm, message);
}

/**
 * Get the checkbox element of the dialog used to remember the handler choice or
 * store the permission.
 * @param {SubDialog} dialog - Protocol handler dialog embedded in a SubDialog.
 * @param {string} dialogType - Type of the dialog which holds the checkbox.
 * @returns {HTMLInputElement} - Checkbox of the dialog.
 */
function getDialogCheckbox(dialog, dialogType) {
  let id;
  if (dialogType == "permission") {
    id = "remember-permission";
  } else {
    id = "remember";
  }
  return dialog._frame.contentDocument.getElementById(id);
}

function getDialogType(dialog) {
  let url = dialog._frame.currentURI.spec;

  if (url === DIALOG_URL_PERMISSION) {
    return "permission";
  }
  if (url === DIALOG_URL_APP_CHOOSER) {
    return "chooser";
  }
  throw new Error("Dialog with unexpected url");
}

/**
 * Exit a protocol handler SubDialog and wait for it to be fully closed.
 * @param {MozBrowser} browser - Browser element of the tab where the dialog is
 * shown.
 * @param {SubDialog} dialog - SubDialog object which holds the protocol handler
 * @param {boolean} confirm - Whether to confirm (true) or cancel (false) the
 * dialog.
 * @param {string} scheme - The scheme of the protocol the dialog is opened for.
 * dialog.
 */
async function closeDialog(browser, dialog, confirm, scheme) {
  let dialogClosedPromise = waitForSubDialog(browser, dialog._openedURL, false);
  let dialogEl = getDialogElementFromSubDialog(dialog);

  if (confirm) {
    if (getDialogType(dialog) == "chooser") {
      // Select our test protocol handler
      let listItem = dialogEl.ownerDocument.querySelector(
        `richlistitem[name="${scheme}Handler"]`
      );
      listItem.click();
    }

    dialogEl.setAttribute("buttondisabledaccept", false);
    dialogEl.acceptDialog();
  } else {
    dialogEl.cancelDialog();
  }

  return dialogClosedPromise;
}

registerCleanupFunction(function () {
  // Clean up test handlers
  TEST_PROTOS.forEach(scheme => {
    let handlerInfo = HandlerServiceTestUtils.getHandlerInfo(scheme);
    gHandlerService.remove(handlerInfo);
  });

  // Clear permissions
  Services.perms.removeAll();
});

add_setup(async function () {
  await SpecialPowers.pushPrefEnv({
    set: [["security.external_protocol_requires_permission", true]],
  });
  initTestHandlers();
});

/**
 * Tests that when "remember" is unchecked, we only allow the protocol to be
 * opened once and don't store any permission.
 */
add_task(async function test_permission_allow_once() {
  for (let scheme of TEST_PROTOS) {
    await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
      await testOpenProto(browser, scheme, {
        permDialogOptions: {
          hasCheckbox: true,
          hasChangeApp: false,
          chooserIsNext: true,
          actionConfirm: true,
        },
        chooserDialogOptions: { hasCheckbox: true, actionConfirm: true },
      });
    });

    // No permission should be set
    testPermission(PRINCIPAL1, scheme, false);
    testPermission(PRINCIPAL2, scheme, false);

    // No preferred app should be set
    testAlwaysAsk(scheme, true);

    // If we open again we should see the permission dialog
    await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
      await testOpenProto(browser, scheme, {
        permDialogOptions: {
          hasCheckbox: true,
          hasChangeApp: false,
          chooserIsNext: true,
          actionConfirm: false,
        },
      });
    });
  }
});

/**
 * Tests that when checking the "remember" checkbox, the protocol permission
 * is set correctly and allows the caller to skip the permission dialog in
 * subsequent calls.
 */
add_task(async function test_permission_allow_persist() {
  for (let [origin, principal] of [
    [ORIGIN1, PRINCIPAL1],
    [ORIGIN3, PRINCIPAL3],
  ]) {
    for (let scheme of TEST_PROTOS) {
      info("Testing with origin " + origin);
      info("testing with principal of origin " + principal.origin);
      info("testing with protocol " + scheme);

      // Set a permission for an unrelated protocol.
      // We should still see the permission dialog.
      Services.perms.addFromPrincipal(
        principal,
        getSkipProtoDialogPermissionKey("foobar"),
        Services.perms.ALLOW_ACTION
      );

      await BrowserTestUtils.withNewTab(origin, async browser => {
        await testOpenProto(browser, scheme, {
          permDialogOptions: {
            hasCheckbox: true,
            hasChangeApp: false,
            chooserIsNext: true,
            actionCheckbox: true,
            actionConfirm: true,
          },
          chooserDialogOptions: { hasCheckbox: true, actionConfirm: true },
        });
      });

      // Permission should be set
      testPermission(principal, scheme, true);
      testPermission(PRINCIPAL2, scheme, false);

      // No preferred app should be set
      testAlwaysAsk(scheme, true);

      // If we open again with the origin where we granted permission, we should
      // directly get the chooser dialog.
      await BrowserTestUtils.withNewTab(origin, async browser => {
        await testOpenProto(browser, scheme, {
          chooserDialogOptions: {
            hasCheckbox: true,
            actionConfirm: false,
          },
        });
      });

      // If we open with the other origin, we should see the permission dialog
      await BrowserTestUtils.withNewTab(ORIGIN2, async browser => {
        await testOpenProto(browser, scheme, {
          permDialogOptions: {
            hasCheckbox: true,
            hasChangeApp: false,
            chooserIsNext: true,
            actionConfirm: false,
          },
        });
      });

      // Cleanup permissions
      Services.perms.removeAll();
    }
  }
});

/**
 * Tests that if a preferred protocol handler is set, the permission dialog
 * shows the application name and a link which leads to the app chooser.
 */
add_task(async function test_permission_application_set() {
  let scheme = TEST_PROTOS[0];
  updateAlwaysAsk(scheme, false);
  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    await testOpenProto(browser, scheme, {
      permDialogOptions: {
        hasCheckbox: true,
        hasChangeApp: true,
        chooserIsNext: false,
        actionChangeApp: true,
      },
      chooserDialogOptions: { hasCheckbox: true, actionConfirm: true },
    });
  });

  // Cleanup
  updateAlwaysAsk(scheme, true);
});

/**
 * Tests that we correctly handle system principals. They should always
 * skip the permission dialog.
 */
add_task(async function test_permission_system_principal() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    await testOpenProto(browser, scheme, {
      chooserDialogOptions: { hasCheckbox: true, actionConfirm: false },
      triggerLoad: useTriggeringPrincipal(
        Services.scriptSecurityManager.getSystemPrincipal()
      ),
    });
  });
});

/**
 * Tests that we don't show the permission dialog if the permission is disabled
 * by pref.
 */
add_task(async function test_permission_disabled() {
  let scheme = TEST_PROTOS[0];

  await SpecialPowers.pushPrefEnv({
    set: [["security.external_protocol_requires_permission", false]],
  });

  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    await testOpenProto(browser, scheme, {
      chooserDialogOptions: { hasCheckbox: true, actionConfirm: true },
    });
  });

  await SpecialPowers.popPrefEnv();
});

/**
 * Tests that we directly open the handler if permission and handler are set.
 */
add_task(async function test_app_and_permission_set() {
  let scheme = TEST_PROTOS[1];

  updateAlwaysAsk(scheme, false);
  Services.perms.addFromPrincipal(
    PRINCIPAL2,
    getSkipProtoDialogPermissionKey(scheme),
    Services.perms.ALLOW_ACTION
  );

  await BrowserTestUtils.withNewTab(ORIGIN2, async browser => {
    await testOpenProto(browser, scheme);
  });

  // Cleanup
  Services.perms.removeAll();
  updateAlwaysAsk(scheme, true);
});

/**
 * Tests that the alwaysAsk state is not updated if the user cancels the dialog
 */
add_task(async function test_change_app_checkbox_cancel() {
  let scheme = TEST_PROTOS[0];

  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    await testOpenProto(browser, scheme, {
      permDialogOptions: {
        hasCheckbox: true,
        chooserIsNext: true,
        hasChangeApp: false,
        actionConfirm: true,
      },
      chooserDialogOptions: {
        hasCheckbox: true,
        actionCheckbox: true, // Activate checkbox
        actionConfirm: false, // Cancel dialog
      },
    });
  });

  // Should not have applied value from checkbox
  testAlwaysAsk(scheme, true);
});

/**
 * Tests that the external protocol dialogs behave correctly when a null
 * principal is passed.
 */
add_task(async function test_null_principal() {
  let scheme = TEST_PROTOS[0];

  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    await testOpenProto(browser, scheme, {
      triggerLoad: () => {
        let uri = `${scheme}://test`;
        ContentTask.spawn(browser, { uri }, args => {
          let frame = content.document.createElement("iframe");
          frame.src = `data:text/html,<script>location.href="${args.uri}"</script>`;
          content.document.body.appendChild(frame);
        });
      },
      permDialogOptions: {
        hasCheckbox: false,
        chooserIsNext: true,
        hasChangeApp: false,
        actionConfirm: true,
      },
      chooserDialogOptions: {
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });
  });
});

/**
 * Tests that the external protocol dialogs behave correctly when no principal
 * is passed.
 */
add_task(async function test_no_principal() {
  let scheme = TEST_PROTOS[1];

  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    await testOpenProto(browser, scheme, {
      triggerLoad: () => {
        let uri = `${scheme}://test`;

        let contentDispatchChooser = Cc[
          "@mozilla.org/content-dispatch-chooser;1"
        ].createInstance(Ci.nsIContentDispatchChooser);

        let handler = HandlerServiceTestUtils.getHandlerInfo(scheme);

        contentDispatchChooser.handleURI(
          handler,
          Services.io.newURI(uri),
          null,
          browser.browsingContext
        );
      },
      permDialogOptions: {
        hasCheckbox: false,
        chooserIsNext: true,
        hasChangeApp: false,
        actionConfirm: true,
      },
      chooserDialogOptions: {
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });
  });
});

/**
 * Tests that if a URI scheme has a non-standard protocol, an OS default exists,
 * and the user hasn't selected an alternative only the permission dialog is shown.
 */
add_task(async function test_non_standard_protocol() {
  let scheme = null;
  // TODO add a scheme for Windows 10 or greater once support is added (see bug 1764599).
  if (AppConstants.platform == "macosx") {
    scheme = "itunes";
  } else {
    info(
      "Skipping this test since there isn't a suitable default protocol on this platform"
    );
    return;
  }

  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    await testOpenProto(browser, scheme, {
      permDialogOptions: {
        hasCheckbox: true,
        hasChangeApp: true,
        chooserIsNext: false,
        actionChangeApp: false,
      },
    });
  });
});

/**
 * Tests that we show the permission dialog for extension content scripts.
 */
add_task(async function test_extension_content_script_permission() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    let testExtension;

    await testOpenProto(browser, scheme, {
      triggerLoad: async () => {
        let uri = `${scheme}://test`;

        const EXTENSION_DATA = {
          manifest: {
            content_scripts: [
              {
                matches: [browser.currentURI.spec],
                js: ["navigate.js"],
              },
            ],
            browser_specific_settings: {
              gecko: { id: "allowed@mochi.test" },
            },
          },
          files: {
            "navigate.js": `window.location.href = "${uri}";`,
          },
          useAddonManager: "permanent",
        };

        testExtension = ExtensionTestUtils.loadExtension(EXTENSION_DATA);
        await testExtension.startup();
      },
      permDialogOptions: {
        hasCheckbox: true,
        chooserIsNext: true,
        hasChangeApp: false,
        actionCheckbox: true,
        actionConfirm: true,
        checkContents: dialogEl => {
          let description = dialogEl.querySelector("#description");
          let { id, args } =
            description.ownerDocument.l10n.getAttributes(description);
          is(
            id,
            "permission-dialog-description-extension",
            "Should be using the correct string."
          );
          is(
            args.extension,
            "Generated extension",
            "Should have the correct extension name."
          );
        },
      },
      chooserDialogOptions: {
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });

    let extensionPrincipal =
      Services.scriptSecurityManager.createContentPrincipal(
        Services.io.newURI(`moz-extension://${testExtension.uuid}/`),
        {}
      );
    let extensionPrivatePrincipal =
      Services.scriptSecurityManager.createContentPrincipal(
        Services.io.newURI(`moz-extension://${testExtension.uuid}/`),
        { privateBrowsingId: 1 }
      );

    let key = getSkipProtoDialogPermissionKey(scheme);
    is(
      Services.perms.testPermissionFromPrincipal(extensionPrincipal, key),
      Services.perms.ALLOW_ACTION,
      "Should have permanently allowed the extension"
    );
    is(
      Services.perms.testPermissionFromPrincipal(
        extensionPrivatePrincipal,
        key
      ),
      Services.perms.UNKNOWN_ACTION,
      "Should not have changed the private principal permission"
    );
    is(
      Services.perms.testPermissionFromPrincipal(PRINCIPAL1, key),
      Services.perms.UNKNOWN_ACTION,
      "Should not have allowed the page"
    );

    await testExtension.unload();

    is(
      Services.perms.testPermissionFromPrincipal(extensionPrincipal, key),
      Services.perms.UNKNOWN_ACTION,
      "Should have cleared the extension's normal principal permission"
    );
    is(
      Services.perms.testPermissionFromPrincipal(
        extensionPrivatePrincipal,
        key
      ),
      Services.perms.UNKNOWN_ACTION,
      "Should have cleared the private browsing principal"
    );
  });
});

/**
 * Tests that we show the permission dialog for extension content scripts.
 */
add_task(async function test_extension_private_content_script_permission() {
  let scheme = TEST_PROTOS[0];
  let win = await BrowserTestUtils.openNewBrowserWindow({ private: true });

  await BrowserTestUtils.withNewTab(
    { gBrowser: win.gBrowser, url: ORIGIN1 },
    async browser => {
      let testExtension;

      await testOpenProto(browser, scheme, {
        triggerLoad: async () => {
          let uri = `${scheme}://test`;

          const EXTENSION_DATA = {
            manifest: {
              content_scripts: [
                {
                  matches: [browser.currentURI.spec],
                  js: ["navigate.js"],
                },
              ],
              browser_specific_settings: {
                gecko: { id: "allowed@mochi.test" },
              },
            },
            files: {
              "navigate.js": `window.location.href = "${uri}";`,
            },
            useAddonManager: "permanent",
          };

          testExtension = ExtensionTestUtils.loadExtension(EXTENSION_DATA);
          await testExtension.startup();
          let perms = {
            permissions: ["internal:privateBrowsingAllowed"],
            origins: [],
          };
          await ExtensionPermissions.add("allowed@mochi.test", perms);
          let addon = await AddonManager.getAddonByID("allowed@mochi.test");
          await addon.reload();
        },
        permDialogOptions: {
          hasCheckbox: true,
          chooserIsNext: true,
          hasChangeApp: false,
          actionCheckbox: true,
          actionConfirm: true,
          checkContents: dialogEl => {
            let description = dialogEl.querySelector("#description");
            let { id, args } =
              description.ownerDocument.l10n.getAttributes(description);
            is(
              id,
              "permission-dialog-description-extension",
              "Should be using the correct string."
            );
            is(
              args.extension,
              "Generated extension",
              "Should have the correct extension name."
            );
          },
        },
        chooserDialogOptions: {
          hasCheckbox: true,
          actionConfirm: false, // Cancel dialog
        },
      });

      let extensionPrincipal =
        Services.scriptSecurityManager.createContentPrincipal(
          Services.io.newURI(`moz-extension://${testExtension.uuid}/`),
          {}
        );
      let extensionPrivatePrincipal =
        Services.scriptSecurityManager.createContentPrincipal(
          Services.io.newURI(`moz-extension://${testExtension.uuid}/`),
          { privateBrowsingId: 1 }
        );

      let key = getSkipProtoDialogPermissionKey(scheme);
      is(
        Services.perms.testPermissionFromPrincipal(extensionPrincipal, key),
        Services.perms.UNKNOWN_ACTION,
        "Should not have changed the extension's normal principal permission"
      );
      is(
        Services.perms.testPermissionFromPrincipal(
          extensionPrivatePrincipal,
          key
        ),
        Services.perms.ALLOW_ACTION,
        "Should have allowed the private browsing principal"
      );
      is(
        Services.perms.testPermissionFromPrincipal(PRINCIPAL1, key),
        Services.perms.UNKNOWN_ACTION,
        "Should not have allowed the page"
      );

      await testExtension.unload();

      is(
        Services.perms.testPermissionFromPrincipal(extensionPrincipal, key),
        Services.perms.UNKNOWN_ACTION,
        "Should have cleared the extension's normal principal permission"
      );
      is(
        Services.perms.testPermissionFromPrincipal(
          extensionPrivatePrincipal,
          key
        ),
        Services.perms.UNKNOWN_ACTION,
        "Should have cleared the private browsing principal"
      );
    }
  );

  await BrowserTestUtils.closeWindow(win);
});

/**
 * Tests that we do not show the permission dialog for extension content scripts
 * when the page already has permission.
 */
add_task(async function test_extension_allowed_content() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    let testExtension;

    let key = getSkipProtoDialogPermissionKey(scheme);
    Services.perms.addFromPrincipal(
      PRINCIPAL1,
      key,
      Services.perms.ALLOW_ACTION,
      Services.perms.EXPIRE_NEVER
    );

    await testOpenProto(browser, scheme, {
      triggerLoad: async () => {
        let uri = `${scheme}://test`;

        const EXTENSION_DATA = {
          manifest: {
            content_scripts: [
              {
                matches: [browser.currentURI.spec],
                js: ["navigate.js"],
              },
            ],
          },
          files: {
            "navigate.js": `window.location.href = "${uri}";`,
          },
        };

        testExtension = ExtensionTestUtils.loadExtension(EXTENSION_DATA);
        await testExtension.startup();
      },
      chooserDialogOptions: {
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });

    let extensionPrincipal =
      Services.scriptSecurityManager.createContentPrincipal(
        Services.io.newURI(`moz-extension://${testExtension.uuid}/`),
        {}
      );

    is(
      Services.perms.testPermissionFromPrincipal(extensionPrincipal, key),
      Services.perms.UNKNOWN_ACTION,
      "Should not have permanently allowed the extension"
    );

    await testExtension.unload();
    Services.perms.removeFromPrincipal(PRINCIPAL1, key);
  });
});

/**
 * Tests that we do not show the permission dialog for extension content scripts
 * when the extension already has permission.
 */
add_task(async function test_extension_allowed_extension() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    let testExtension;

    let key = getSkipProtoDialogPermissionKey(scheme);

    await testOpenProto(browser, scheme, {
      triggerLoad: async () => {
        const EXTENSION_DATA = {
          manifest: {
            permissions: [`${ORIGIN1}/*`],
          },
          background() {
            browser.test.onMessage.addListener(async (msg, uri) => {
              switch (msg) {
                case "engage":
                  browser.tabs.executeScript({
                    code: `window.location.href = "${uri}";`,
                  });
                  break;
                default:
                  browser.test.fail(`Unexpected message received: ${msg}`);
              }
            });
          },
        };

        testExtension = ExtensionTestUtils.loadExtension(EXTENSION_DATA);
        await testExtension.startup();

        let extensionPrincipal =
          Services.scriptSecurityManager.createContentPrincipal(
            Services.io.newURI(`moz-extension://${testExtension.uuid}/`),
            {}
          );
        Services.perms.addFromPrincipal(
          extensionPrincipal,
          key,
          Services.perms.ALLOW_ACTION,
          Services.perms.EXPIRE_NEVER
        );

        testExtension.sendMessage("engage", `${scheme}://test`);
      },
      chooserDialogOptions: {
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });

    await testExtension.unload();
    Services.perms.removeFromPrincipal(PRINCIPAL1, key);
  });
});

/**
 * Tests that we show the permission dialog for extensions directly opening a
 * protocol.
 */
add_task(async function test_extension_principal() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab(ORIGIN1, async browser => {
    let testExtension;

    await testOpenProto(browser, scheme, {
      triggerLoad: async () => {
        const EXTENSION_DATA = {
          background() {
            browser.test.onMessage.addListener(async (msg, url) => {
              switch (msg) {
                case "engage":
                  browser.tabs.update({
                    url,
                  });
                  break;
                default:
                  browser.test.fail(`Unexpected message received: ${msg}`);
              }
            });
          },
        };

        testExtension = ExtensionTestUtils.loadExtension(EXTENSION_DATA);
        await testExtension.startup();
        testExtension.sendMessage("engage", `${scheme}://test`);
      },
      permDialogOptions: {
        hasCheckbox: true,
        chooserIsNext: true,
        hasChangeApp: false,
        actionCheckbox: true,
        actionConfirm: true,
        checkContents: dialogEl => {
          let description = dialogEl.querySelector("#description");
          let { id, args } =
            description.ownerDocument.l10n.getAttributes(description);
          is(
            id,
            "permission-dialog-description-extension",
            "Should be using the correct string."
          );
          is(
            args.extension,
            "Generated extension",
            "Should have the correct extension name."
          );
        },
      },
      chooserDialogOptions: {
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });

    let extensionPrincipal =
      Services.scriptSecurityManager.createContentPrincipal(
        Services.io.newURI(`moz-extension://${testExtension.uuid}/`),
        {}
      );

    let key = getSkipProtoDialogPermissionKey(scheme);
    is(
      Services.perms.testPermissionFromPrincipal(extensionPrincipal, key),
      Services.perms.ALLOW_ACTION,
      "Should have permanently allowed the extension"
    );
    is(
      Services.perms.testPermissionFromPrincipal(PRINCIPAL1, key),
      Services.perms.UNKNOWN_ACTION,
      "Should not have allowed the page"
    );

    await testExtension.unload();
  });
});

/**
 * Test that we use the redirect principal for the dialog when applicable.
 */
add_task(async function test_redirect_principal() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab("about:blank", async browser => {
    await testOpenProto(browser, scheme, {
      triggerLoad: useServerRedirect("location"),
      permDialogOptions: {
        checkboxOrigin: ORIGIN1,
        chooserIsNext: true,
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });
  });
});

/**
 * Test that we use the redirect principal for the dialog for refresh headers.
 */
add_task(async function test_redirect_principal() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab("about:blank", async browser => {
    await testOpenProto(browser, scheme, {
      triggerLoad: useServerRedirect("refresh"),
      permDialogOptions: {
        checkboxOrigin: ORIGIN1,
        chooserIsNext: true,
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });
  });
});

/**
 * Test that we use the redirect principal for the dialog for meta refreshes.
 */
add_task(async function test_redirect_principal() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab("about:blank", async browser => {
    await testOpenProto(browser, scheme, {
      triggerLoad: useServerRedirect("meta-refresh"),
      permDialogOptions: {
        checkboxOrigin: ORIGIN1,
        chooserIsNext: true,
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });
  });
});

/**
 * Test that we use the redirect principal for the dialog for JS redirects.
 */
add_task(async function test_redirect_principal_js() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab("about:blank", async browser => {
    await testOpenProto(browser, scheme, {
      triggerLoad: () => {
        let uri = `${scheme}://test`;

        let innerParams = new URLSearchParams();
        innerParams.set("uri", uri);
        let params = new URLSearchParams();
        params.set(
          "uri",
          "https://example.com/" +
            ROOT_PATH +
            "script_redirect.html?" +
            innerParams.toString()
        );
        uri =
          "https://example.org/" +
          ROOT_PATH +
          "script_redirect.html?" +
          params.toString();
        BrowserTestUtils.loadURIString(browser, uri);
      },
      permDialogOptions: {
        checkboxOrigin: ORIGIN1,
        chooserIsNext: true,
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });
  });
});

/**
 * Test that we use the redirect principal for the dialog for link clicks.
 */
add_task(async function test_redirect_principal_links() {
  let scheme = TEST_PROTOS[0];
  await BrowserTestUtils.withNewTab("about:blank", async browser => {
    await testOpenProto(browser, scheme, {
      triggerLoad: async () => {
        let uri = `${scheme}://test`;

        let params = new URLSearchParams();
        params.set("uri", uri);
        uri =
          "https://example.com/" +
          ROOT_PATH +
          "redirect_helper.sjs?" +
          params.toString();
        await ContentTask.spawn(browser, { uri }, args => {
          let textLink = content.document.createElement("a");
          textLink.href = args.uri;
          textLink.textContent = "click me";
          content.document.body.appendChild(textLink);
          textLink.click();
        });
      },
      permDialogOptions: {
        checkboxOrigin: ORIGIN1,
        chooserIsNext: true,
        hasCheckbox: true,
        actionConfirm: false, // Cancel dialog
      },
    });
  });
});