summaryrefslogtreecommitdiffstats
path: root/mobile/android/actors/tests/mochitests/head.js
blob: 01288ca8221eccd58e6e53aa450a6876baabc929 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

// Bug 1799977: Using workaround to test telemtry in plain mochitests
const GleanTest = new Proxy(
  {},
  {
    get(target, categoryName, receiver) {
      return new Proxy(
        {},
        {
          // eslint-disable-next-line no-shadow
          get(target, metricName, receiver) {
            return {
              // The only API we actually implement right now.
              async testGetValue() {
                return SpecialPowers.spawnChrome(
                  [categoryName, metricName],
                  // eslint-disable-next-line no-shadow
                  async (categoryName, metricName) => {
                    await Services.fog.testFlushAllChildren();
                    const window = this.browsingContext.topChromeWindow;
                    return window.Glean[categoryName][
                      metricName
                    ].testGetValue();
                  }
                );
              },
              async testGetValueLabel(label) {
                return SpecialPowers.spawnChrome(
                  [categoryName, metricName, label],
                  // eslint-disable-next-line no-shadow
                  async (categoryName, metricName, label) => {
                    await Services.fog.testFlushAllChildren();
                    const window = this.browsingContext.topChromeWindow;
                    return window.Glean[categoryName][metricName][
                      label
                    ].testGetValue();
                  }
                );
              },
            };
          },
        }
      );
    },
  }
);