summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/test/browser/browser_topsites_annotation.js
blob: 7e48868fcabad484195213bba0ae2708081977fa (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test whether a visit information is annotated correctly when clicking a tile.

if (AppConstants.platform === "macosx") {
  requestLongerTimeout(4);
} else {
  requestLongerTimeout(2);
}

ChromeUtils.defineESModuleGetters(this, {
  NewTabUtils: "resource://gre/modules/NewTabUtils.sys.mjs",
  PlacesTestUtils: "resource://testing-common/PlacesTestUtils.sys.mjs",
  TelemetryTestUtils: "resource://testing-common/TelemetryTestUtils.sys.mjs",
  UrlbarTestUtils: "resource://testing-common/UrlbarTestUtils.sys.mjs",
});

const OPEN_TYPE = {
  CURRENT_BY_CLICK: 0,
  NEWTAB_BY_CLICK: 1,
  NEWTAB_BY_MIDDLECLICK: 2,
  NEWTAB_BY_CONTEXTMENU: 3,
  NEWWINDOW_BY_CONTEXTMENU: 4,
  NEWWINDOW_BY_CONTEXTMENU_OF_TILE: 5,
};

const FRECENCY = {
  TYPED: 2000,
  VISITED: 100,
  SPONSORED: -1,
  BOOKMARKED: 2075,
  MIDDLECLICK_TYPED: 100,
  MIDDLECLICK_BOOKMARKED: 175,
  NEWWINDOW_TYPED: 100,
  NEWWINDOW_BOOKMARKED: 175,
};

const {
  VISIT_SOURCE_ORGANIC,
  VISIT_SOURCE_SPONSORED,
  VISIT_SOURCE_BOOKMARKED,
} = PlacesUtils.history;

/**
 * To be used before checking database contents when they depend on a visit
 * being added to History.
 * @param {string} href the page to await notifications for.
 */
async function waitForVisitNotification(href) {
  await PlacesTestUtils.waitForNotification("page-visited", events =>
    events.some(e => e.url === href)
  );
}

async function assertDatabase({ targetURL, expected }) {
  const frecency = await PlacesTestUtils.getDatabaseValue(
    "moz_places",
    "frecency",
    { url: targetURL }
  );
  Assert.equal(frecency, expected.frecency, "Frecency is correct");

  const placesId = await PlacesTestUtils.getDatabaseValue("moz_places", "id", {
    url: targetURL,
  });
  const expectedTriggeringPlaceId = expected.triggerURL
    ? await PlacesTestUtils.getDatabaseValue("moz_places", "id", {
        url: expected.triggerURL,
      })
    : null;
  const db = await PlacesUtils.promiseDBConnection();
  const rows = await db.execute(
    "SELECT source, triggeringPlaceId FROM moz_historyvisits WHERE place_id = :place_id AND source = :source",
    {
      place_id: placesId,
      source: expected.source,
    }
  );
  Assert.equal(rows.length, 1);
  Assert.equal(
    rows[0].getResultByName("triggeringPlaceId"),
    expectedTriggeringPlaceId,
    `The triggeringPlaceId in database is correct for ${targetURL}`
  );
}

async function waitForLocationChanged(destinationURL) {
  // If nodeIconChanged of browserPlacesViews.js is called after the target node
  // is lost during test, "No DOM node set for aPlacesNode" error occur. To avoid
  // this failure, wait for the onLocationChange event that triggers
  // nodeIconChanged to occur.
  return new Promise(resolve => {
    gBrowser.addTabsProgressListener({
      async onLocationChange(aBrowser, aWebProgress, aRequest, aLocation) {
        if (aLocation.spec === destinationURL) {
          gBrowser.removeTabsProgressListener(this);
          // Wait for an empty Promise to ensure to proceed our test after
          // finishing the processing of other onLocatoinChanged events.
          await Promise.resolve();
          resolve();
        }
      },
    });
  });
}

async function openAndTest({
  linkSelector,
  linkURL,
  redirectTo = null,
  openType = OPEN_TYPE.CURRENT_BY_CLICK,
  expected,
}) {
  const destinationURL = redirectTo || linkURL;

  // Wait for content is ready.
  await SpecialPowers.spawn(
    gBrowser.selectedBrowser,
    [linkSelector, linkURL],
    async (selector, link) => {
      await ContentTaskUtils.waitForCondition(
        () => content.document.querySelector(selector).href === link
      );
    }
  );

  info("Open specific link by type and wait for loading.");
  let promiseVisited = waitForVisitNotification(destinationURL);
  if (openType === OPEN_TYPE.CURRENT_BY_CLICK) {
    const onLoad = BrowserTestUtils.browserLoaded(
      gBrowser.selectedBrowser,
      false,
      destinationURL
    );
    const onLocationChanged = waitForLocationChanged(destinationURL);

    await BrowserTestUtils.synthesizeMouseAtCenter(
      linkSelector,
      {},
      gBrowser.selectedBrowser
    );

    await onLoad;
    await onLocationChanged;
  } else if (openType === OPEN_TYPE.NEWTAB_BY_CLICK) {
    const onLoad = BrowserTestUtils.waitForNewTab(
      gBrowser,
      destinationURL,
      true
    );
    const onLocationChanged = waitForLocationChanged(destinationURL);

    await BrowserTestUtils.synthesizeMouseAtCenter(
      linkSelector,
      { ctrlKey: true, metaKey: true },
      gBrowser.selectedBrowser
    );

    const tab = await onLoad;
    await onLocationChanged;
    BrowserTestUtils.removeTab(tab);
  } else if (openType === OPEN_TYPE.NEWTAB_BY_MIDDLECLICK) {
    const onLoad = BrowserTestUtils.waitForNewTab(
      gBrowser,
      destinationURL,
      true
    );
    const onLocationChanged = waitForLocationChanged(destinationURL);

    await BrowserTestUtils.synthesizeMouseAtCenter(
      linkSelector,
      { button: 1 },
      gBrowser.selectedBrowser
    );

    const tab = await onLoad;
    await onLocationChanged;
    BrowserTestUtils.removeTab(tab);
  } else if (openType === OPEN_TYPE.NEWTAB_BY_CONTEXTMENU) {
    const onLoad = BrowserTestUtils.waitForNewTab(
      gBrowser,
      destinationURL,
      true
    );
    const onLocationChanged = waitForLocationChanged(destinationURL);

    const onPopup = BrowserTestUtils.waitForEvent(document, "popupshown");
    await BrowserTestUtils.synthesizeMouseAtCenter(
      linkSelector,
      { type: "contextmenu" },
      gBrowser.selectedBrowser
    );
    await onPopup;
    const contextMenu = document.getElementById("contentAreaContextMenu");
    const openLinkMenuItem = contextMenu.querySelector(
      "#context-openlinkintab"
    );
    contextMenu.activateItem(openLinkMenuItem);

    const tab = await onLoad;
    await onLocationChanged;
    BrowserTestUtils.removeTab(tab);
  } else if (openType === OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU) {
    const onLoad = BrowserTestUtils.waitForNewWindow({ url: destinationURL });

    const onPopup = BrowserTestUtils.waitForEvent(document, "popupshown");
    await BrowserTestUtils.synthesizeMouseAtCenter(
      linkSelector,
      { type: "contextmenu" },
      gBrowser.selectedBrowser
    );
    await onPopup;
    const contextMenu = document.getElementById("contentAreaContextMenu");
    const openLinkMenuItem = contextMenu.querySelector("#context-openlink");
    contextMenu.activateItem(openLinkMenuItem);

    const win = await onLoad;
    await BrowserTestUtils.closeWindow(win);
  } else if (openType === OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU_OF_TILE) {
    const onLoad = BrowserTestUtils.waitForNewWindow({ url: destinationURL });

    await SpecialPowers.spawn(
      gBrowser.selectedBrowser,
      [linkSelector],
      async selector => {
        const link = content.document.querySelector(selector);
        const list = link.closest("li");
        const contextMenu = list.querySelector(".context-menu-button");
        contextMenu.click();
        const target = list.querySelector(
          "[data-l10n-id=newtab-menu-open-new-window]"
        );
        target.click();
      }
    );

    const win = await onLoad;
    await BrowserTestUtils.closeWindow(win);
  }
  await promiseVisited;

  info("Check database for the destination.");
  await assertDatabase({ targetURL: destinationURL, expected });
}

async function pin(link) {
  // Setup test tile.
  NewTabUtils.pinnedLinks.pin(link, 0);
  await toggleTopsitesPref();
  await BrowserTestUtils.waitForCondition(() => {
    const sites = AboutNewTab.getTopSites();
    return (
      sites?.[0]?.url === link.url &&
      sites[0].sponsored_tile_id === link.sponsored_tile_id
    );
  }, "Waiting for top sites to be updated");
}

function unpin(link) {
  NewTabUtils.pinnedLinks.unpin(link);
}

add_setup(async function () {
  await clearHistoryAndBookmarks();
  registerCleanupFunction(async () => {
    await clearHistoryAndBookmarks();
  });
});

add_task(async function basic() {
  const SPONSORED_LINK = {
    label: "test_label",
    url: "https://example.com/",
    sponsored_position: 1,
    sponsored_tile_id: 12345,
    sponsored_impression_url: "https://impression.example.com/",
    sponsored_click_url: "https://click.example.com/",
  };
  const NORMAL_LINK = {
    label: "test_label",
    url: "https://example.com/",
  };
  const BOOKMARKS = [
    {
      parentGuid: PlacesUtils.bookmarks.toolbarGuid,
      url: Services.io.newURI("https://example.com/"),
      title: "test bookmark",
    },
  ];

  const testData = [
    {
      description: "Sponsored tile",
      link: SPONSORED_LINK,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    },
    {
      description: "Sponsored tile in new tab by click with key",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_CLICK,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    },
    {
      description: "Sponsored tile in new tab by middle click",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_MIDDLECLICK,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    },
    {
      description: "Sponsored tile in new tab by context menu",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_CONTEXTMENU,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    },
    {
      description: "Sponsored tile in new window by context menu",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    },
    {
      description: "Sponsored tile in new window by context menu of tile",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU_OF_TILE,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    },
    {
      description: "Bookmarked result",
      link: NORMAL_LINK,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_BOOKMARKED,
        frecency: FRECENCY.BOOKMARKED,
      },
    },
    {
      description: "Bookmarked result in new tab by click with key",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_CLICK,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_BOOKMARKED,
        frecency: FRECENCY.BOOKMARKED,
      },
    },
    {
      description: "Bookmarked result in new tab by middle click",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_MIDDLECLICK,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_BOOKMARKED,
        frecency: FRECENCY.MIDDLECLICK_BOOKMARKED,
      },
    },
    {
      description: "Bookmarked result in new tab by context menu",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_CONTEXTMENU,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_BOOKMARKED,
        frecency: FRECENCY.MIDDLECLICK_BOOKMARKED,
      },
    },
    {
      description: "Bookmarked result in new window by context menu",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_BOOKMARKED,
        frecency: FRECENCY.NEWWINDOW_BOOKMARKED,
      },
    },
    {
      description: "Bookmarked result in new window by context menu of tile",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU_OF_TILE,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_BOOKMARKED,
        frecency: FRECENCY.BOOKMARKED,
      },
    },
    {
      description: "Sponsored and bookmarked result",
      link: SPONSORED_LINK,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.BOOKMARKED,
      },
    },
    {
      description:
        "Sponsored and bookmarked result in new tab by click with key",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_CLICK,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.BOOKMARKED,
      },
    },
    {
      description: "Sponsored and bookmarked result in new tab by middle click",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_MIDDLECLICK,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.MIDDLECLICK_BOOKMARKED,
      },
    },
    {
      description: "Sponsored and bookmarked result in new tab by context menu",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_CONTEXTMENU,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.MIDDLECLICK_BOOKMARKED,
      },
    },
    {
      description:
        "Sponsored and bookmarked result in new window by context menu",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.NEWWINDOW_BOOKMARKED,
      },
    },
    {
      description:
        "Sponsored and bookmarked result in new window by context menu of tile",
      link: SPONSORED_LINK,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU_OF_TILE,
      bookmarks: BOOKMARKS,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.BOOKMARKED,
      },
    },
    {
      description: "Organic tile",
      link: NORMAL_LINK,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.TYPED,
      },
    },
    {
      description: "Organic tile in new tab by click with key",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_CLICK,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.TYPED,
      },
    },
    {
      description: "Organic tile in new tab by middle click",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_MIDDLECLICK,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.MIDDLECLICK_TYPED,
      },
    },
    {
      description: "Organic tile in new tab by context menu",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWTAB_BY_CONTEXTMENU,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.MIDDLECLICK_TYPED,
      },
    },
    {
      description: "Organic tile in new window by context menu",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.NEWWINDOW_TYPED,
      },
    },
    {
      description: "Organic tile in new window by context menu of tile",
      link: NORMAL_LINK,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU_OF_TILE,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.TYPED,
      },
    },
  ];

  for (const { description, link, openType, bookmarks, expected } of testData) {
    info(description);

    await BrowserTestUtils.withNewTab("about:home", async () => {
      // Setup test tile.
      await pin(link);

      for (const bookmark of bookmarks || []) {
        await PlacesUtils.bookmarks.insert(bookmark);
      }

      await openAndTest({
        linkSelector: ".top-site-button",
        linkURL: link.url,
        openType,
        expected,
      });

      await clearHistoryAndBookmarks();

      unpin(link);
    });
  }
});

add_task(async function redirection() {
  await BrowserTestUtils.withNewTab("about:home", async () => {
    const redirectTo = "https://example.com/";
    const link = {
      label: "test_label",
      url: "https://example.com/browser/browser/components/newtab/test/browser/redirect_to.sjs?/",
      sponsored_position: 1,
      sponsored_tile_id: 12345,
      sponsored_impression_url: "https://impression.example.com/",
      sponsored_click_url: "https://click.example.com/",
    };

    // Setup test tile.
    await pin(link);

    // Test with new tab.
    await openAndTest({
      linkSelector: ".top-site-button",
      linkURL: link.url,
      redirectTo,
      openType: OPEN_TYPE.NEWTAB_BY_CLICK,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });

    // Check for URL causes the redirection.
    await assertDatabase({
      targetURL: link.url,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    });
    await clearHistoryAndBookmarks();

    // Test with same tab.
    await openAndTest({
      linkSelector: ".top-site-button",
      linkURL: link.url,
      redirectTo,
      openType: OPEN_TYPE.NEWTAB_BY_CLICK,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });

    // Check for URL causes the redirection.
    await assertDatabase({
      targetURL: link.url,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    });
    await clearHistoryAndBookmarks();
    unpin(link);
  });
});

add_task(async function inherit() {
  const host = "https://example.com/";
  const sameBaseDomainHost = "https://www.example.com/";
  const path = "browser/browser/components/newtab/test/browser/";
  const firstURL = `${host}${path}annotation_first.html`;
  const secondURL = `${host}${path}annotation_second.html`;
  const thirdURL = `${sameBaseDomainHost}${path}annotation_third.html`;
  const outsideURL = "https://example.org/";

  await BrowserTestUtils.withNewTab("about:home", async () => {
    const link = {
      label: "first",
      url: firstURL,
      sponsored_position: 1,
      sponsored_tile_id: 12345,
      sponsored_impression_url: "https://impression.example.com/",
      sponsored_click_url: "https://click.example.com/",
    };

    // Setup test tile.
    await pin(link);

    info("Open the tile to show first page in same tab");
    await openAndTest({
      linkSelector: ".top-site-button",
      linkURL: link.url,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    });

    info("Open link on first page to show second page in new window");
    await openAndTest({
      linkSelector: "a",
      linkURL: secondURL,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info(
      "Open link on first page to show second page in new tab by click with key"
    );
    await openAndTest({
      linkSelector: "a",
      linkURL: secondURL,
      openType: OPEN_TYPE.NEWTAB_BY_CLICK,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info(
      "Open link on first page to show second page in new tab by middle click"
    );
    await openAndTest({
      linkSelector: "a",
      linkURL: secondURL,
      openType: OPEN_TYPE.NEWTAB_BY_MIDDLECLICK,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info("Open link on first page to show second page in same tab");
    await openAndTest({
      linkSelector: "a",
      linkURL: secondURL,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });

    info("Open link on first page to show second page in new window");
    await openAndTest({
      linkSelector: "a",
      linkURL: thirdURL,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info(
      "Open link on second page to show third page in new tab by context menu"
    );
    await openAndTest({
      linkSelector: "a",
      linkURL: thirdURL,
      openType: OPEN_TYPE.NEWTAB_BY_CONTEXTMENU,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info(
      "Open link on second page to show third page in new tab by middle click"
    );
    await openAndTest({
      linkSelector: "a",
      linkURL: thirdURL,
      openType: OPEN_TYPE.NEWTAB_BY_MIDDLECLICK,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info("Open link on second page to show third page in same tab");
    await openAndTest({
      linkSelector: "a",
      linkURL: thirdURL,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });

    info("Open link on third page to show outside domain page in same tab");
    await openAndTest({
      linkSelector: "a",
      linkURL: outsideURL,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.VISITED,
      },
    });

    info("Visit URL that has the same domain as sponsored link from URL bar");
    const onLoad = BrowserTestUtils.browserLoaded(
      gBrowser.selectedBrowser,
      false,
      host
    );
    await UrlbarTestUtils.promiseAutocompleteResultPopup({
      window,
      value: host,
      waitForFocus: SimpleTest.waitForFocus,
    });
    let promiseVisited = waitForVisitNotification(host);
    EventUtils.synthesizeKey("KEY_Enter");
    await onLoad;
    await promiseVisited;

    await assertDatabase({
      targetURL: host,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
        triggerURL: link.url,
      },
    });

    unpin(link);
    await clearHistoryAndBookmarks();
  });
});

add_task(async function timeout() {
  const base =
    "https://example.com/browser/browser/components/newtab/test/browser";
  const firstURL = `${base}/annotation_first.html`;
  const secondURL = `${base}/annotation_second.html`;

  await BrowserTestUtils.withNewTab("about:home", async () => {
    const link = {
      label: "test",
      url: firstURL,
      sponsored_position: 1,
      sponsored_tile_id: 12345,
      sponsored_impression_url: "https://impression.example.com/",
      sponsored_click_url: "https://click.example.com/",
    };

    // Setup a test tile.
    await pin(link);

    info("Open the tile");
    await openAndTest({
      linkSelector: ".top-site-button",
      linkURL: link.url,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    });

    info("Set timeout second");
    await SpecialPowers.pushPrefEnv({
      set: [["browser.places.sponsoredSession.timeoutSecs", 1]],
    });

    info("Wait 1 sec");
    // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
    await new Promise(r => setTimeout(r, 1000));

    info("Open link on first page to show second page in new window");
    await openAndTest({
      linkSelector: "a",
      linkURL: secondURL,
      openType: OPEN_TYPE.NEWWINDOW_BY_CONTEXTMENU,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.VISITED,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info(
      "Open link on first page to show second page in new tab by click with key"
    );
    await openAndTest({
      linkSelector: "a",
      linkURL: secondURL,
      openType: OPEN_TYPE.NEWTAB_BY_CLICK,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.VISITED,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info(
      "Open link on first page to show second page in new tab by middle click"
    );
    await openAndTest({
      linkSelector: "a",
      linkURL: secondURL,
      openType: OPEN_TYPE.NEWTAB_BY_MIDDLECLICK,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.VISITED,
      },
    });
    await PlacesTestUtils.clearHistoryVisits();

    info("Open link on first page to show second page");
    await openAndTest({
      linkSelector: "a",
      linkURL: secondURL,
      expected: {
        source: VISIT_SOURCE_ORGANIC,
        frecency: FRECENCY.VISITED,
      },
    });

    unpin(link);
    await clearHistoryAndBookmarks();
  });
});

add_task(async function fixup() {
  await BrowserTestUtils.withNewTab("about:home", async () => {
    const destinationURL = "https://example.com/?a";
    const link = {
      label: "test",
      url: "https://example.com?a",
      sponsored_position: 1,
      sponsored_tile_id: 12345,
      sponsored_impression_url: "https://impression.example.com/",
      sponsored_click_url: "https://click.example.com/",
    };

    info("Setup pin");
    await pin(link);

    info("Click sponsored tile");
    let promiseVisited = waitForVisitNotification(destinationURL);
    const onLoad = BrowserTestUtils.browserLoaded(
      gBrowser.selectedBrowser,
      false,
      destinationURL
    );
    const onLocationChanged = waitForLocationChanged(destinationURL);
    await BrowserTestUtils.synthesizeMouseAtCenter(
      ".top-site-button",
      {},
      gBrowser.selectedBrowser
    );
    await onLoad;
    await onLocationChanged;
    await promiseVisited;

    info("Check the DB");
    await assertDatabase({
      targetURL: destinationURL,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    });

    info("Clean up");
    unpin(link);
    await clearHistoryAndBookmarks();
  });
});

add_task(async function noTriggeringURL() {
  await BrowserTestUtils.withNewTab("about:home", async browser => {
    Services.telemetry.clearScalars();

    const dummyTriggeringSponsoredURL =
      "https://example.com/dummyTriggeringSponsoredURL";
    const targetURL = "https://example.com/";

    info("Setup dummy triggering sponsored URL");
    browser.setAttribute("triggeringSponsoredURL", dummyTriggeringSponsoredURL);
    browser.setAttribute("triggeringSponsoredURLVisitTimeMS", Date.now());

    info("Open URL whose host is the same as dummy triggering sponsored URL");
    let promiseVisited = waitForVisitNotification(targetURL);
    await UrlbarTestUtils.promiseAutocompleteResultPopup({
      window,
      value: targetURL,
      waitForFocus: SimpleTest.waitForFocus,
    });
    const onLoad = BrowserTestUtils.browserLoaded(
      gBrowser.selectedBrowser,
      false,
      targetURL
    );
    EventUtils.synthesizeKey("KEY_Enter");
    await onLoad;
    await promiseVisited;

    info("Check DB");
    await assertDatabase({
      targetURL,
      expected: {
        source: VISIT_SOURCE_SPONSORED,
        frecency: FRECENCY.SPONSORED,
      },
    });

    info("Check telemetry");
    const scalars = TelemetryTestUtils.getProcessScalars("parent", false, true);
    TelemetryTestUtils.assertScalar(
      scalars,
      "places.sponsored_visit_no_triggering_url",
      1
    );

    await clearHistoryAndBookmarks();
  });
});