summaryrefslogtreecommitdiffstats
path: root/browser/components/urlbar/tests/engagementTelemetry/browser/browser_glean_telemetry_impression_n_chars_n_words.js
blob: 528cc318e06b5819fb89c535b865c55b178c197a (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test for the following data of impression telemetry.
// - n_chars
// - n_words

add_setup(async function () {
  await initNCharsAndNWordsTest();
});

add_task(async function n_chars() {
  await doNCharsTest({
    trigger: () => waitForPauseImpression(),
    assert: nChars =>
      assertImpressionTelemetry([{ reason: "pause", n_chars: nChars }]),
  });

  await doNCharsWithOverMaxTextLengthCharsTest({
    trigger: () => waitForPauseImpression(),
    assert: nChars =>
      assertImpressionTelemetry([{ reason: "pause", n_chars: nChars }]),
  });
});

add_task(async function n_words() {
  await doNWordsTest({
    trigger: () => waitForPauseImpression(),
    assert: nWords =>
      assertImpressionTelemetry([{ reason: "pause", n_words: nWords }]),
  });

  await doNWordsWithOverMaxTextLengthCharsTest({
    trigger: () => waitForPauseImpression(),
    assert: nWords =>
      assertImpressionTelemetry([{ reason: "pause", n_words: nWords }]),
  });
});