summaryrefslogtreecommitdiffstats
path: root/toolkit/components/telemetry/tests/unit/test_TelemetryScalars_multistore.js
blob: 841caa4f1d82dc78c18d575211edf2002c694312 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/
*/

const CATEGORY = "telemetry.test";
const MAIN_ONLY = `${CATEGORY}.main_only`;
const SYNC_ONLY = `${CATEGORY}.sync_only`;
const MULTIPLE_STORES = `${CATEGORY}.multiple_stores`;
const MULTIPLE_STORES_STRING = `${CATEGORY}.multiple_stores_string`;
const MULTIPLE_STORES_BOOL = `${CATEGORY}.multiple_stores_bool`;
const MULTIPLE_STORES_KEYED = `${CATEGORY}.multiple_stores_keyed`;

function getParentSnapshot(store, keyed = false, clear = false) {
  return keyed
    ? Telemetry.getSnapshotForKeyedScalars(store, clear).parent
    : Telemetry.getSnapshotForScalars(store, clear).parent;
}

add_task(async function test_multistore_basics() {
  Telemetry.clearScalars();

  const expectedUint = 3785;
  const expectedBool = true;
  const expectedString = "some value";
  const expectedKey = "some key";
  Telemetry.scalarSet(MAIN_ONLY, expectedUint);
  Telemetry.scalarSet(SYNC_ONLY, expectedUint);
  Telemetry.scalarSet(MULTIPLE_STORES, expectedUint);
  Telemetry.scalarSet(MULTIPLE_STORES_STRING, expectedString);
  Telemetry.scalarSet(MULTIPLE_STORES_BOOL, expectedBool);
  Telemetry.keyedScalarSet(MULTIPLE_STORES_KEYED, expectedKey, expectedUint);

  const mainScalars = getParentSnapshot("main");
  const syncScalars = getParentSnapshot("sync");
  const mainKeyedScalars = getParentSnapshot("main", true /* keyed */);
  const syncKeyedScalars = getParentSnapshot("sync", true /* keyed */);

  Assert.ok(
    MAIN_ONLY in mainScalars,
    `Main-store scalar ${MAIN_ONLY} must be in main snapshot.`
  );
  Assert.ok(
    !(MAIN_ONLY in syncScalars),
    `Main-store scalar ${MAIN_ONLY} must not be in sync snapshot.`
  );
  Assert.equal(
    mainScalars[MAIN_ONLY],
    expectedUint,
    `Main-store scalar ${MAIN_ONLY} must have correct value.`
  );

  Assert.ok(
    SYNC_ONLY in syncScalars,
    `Sync-store scalar ${SYNC_ONLY} must be in sync snapshot.`
  );
  Assert.ok(
    !(SYNC_ONLY in mainScalars),
    `Sync-store scalar ${SYNC_ONLY} must not be in main snapshot.`
  );
  Assert.equal(
    syncScalars[SYNC_ONLY],
    expectedUint,
    `Sync-store scalar ${SYNC_ONLY} must have correct value.`
  );

  Assert.ok(
    MULTIPLE_STORES in mainScalars && MULTIPLE_STORES in syncScalars,
    `Multi-store scalar ${MULTIPLE_STORES} must be in both main and sync snapshots.`
  );
  Assert.equal(
    mainScalars[MULTIPLE_STORES],
    expectedUint,
    `Multi-store scalar ${MULTIPLE_STORES} must have correct value in main store.`
  );
  Assert.equal(
    syncScalars[MULTIPLE_STORES],
    expectedUint,
    `Multi-store scalar ${MULTIPLE_STORES} must have correct value in sync store.`
  );

  Assert.ok(
    MULTIPLE_STORES_STRING in mainScalars &&
      MULTIPLE_STORES_STRING in syncScalars,
    `Multi-store scalar ${MULTIPLE_STORES_STRING} must be in both main and sync snapshots.`
  );
  Assert.equal(
    mainScalars[MULTIPLE_STORES_STRING],
    expectedString,
    `Multi-store scalar ${MULTIPLE_STORES_STRING} must have correct value in main store.`
  );
  Assert.equal(
    syncScalars[MULTIPLE_STORES_STRING],
    expectedString,
    `Multi-store scalar ${MULTIPLE_STORES_STRING} must have correct value in sync store.`
  );

  Assert.ok(
    MULTIPLE_STORES_BOOL in mainScalars && MULTIPLE_STORES_BOOL in syncScalars,
    `Multi-store scalar ${MULTIPLE_STORES_BOOL} must be in both main and sync snapshots.`
  );
  Assert.equal(
    mainScalars[MULTIPLE_STORES_BOOL],
    expectedBool,
    `Multi-store scalar ${MULTIPLE_STORES_BOOL} must have correct value in main store.`
  );
  Assert.equal(
    syncScalars[MULTIPLE_STORES_BOOL],
    expectedBool,
    `Multi-store scalar ${MULTIPLE_STORES_BOOL} must have correct value in sync store.`
  );

  Assert.ok(
    MULTIPLE_STORES_KEYED in mainKeyedScalars &&
      MULTIPLE_STORES_KEYED in syncKeyedScalars,
    `Multi-store scalar ${MULTIPLE_STORES_KEYED} must be in both main and sync snapshots.`
  );
  Assert.ok(
    expectedKey in mainKeyedScalars[MULTIPLE_STORES_KEYED] &&
      expectedKey in syncKeyedScalars[MULTIPLE_STORES_KEYED],
    `Multi-store scalar ${MULTIPLE_STORES_KEYED} must have key ${expectedKey} in both snapshots.`
  );
  Assert.equal(
    mainKeyedScalars[MULTIPLE_STORES_KEYED][expectedKey],
    expectedUint,
    `Multi-store scalar ${MULTIPLE_STORES_KEYED} must have correct value in main store.`
  );
  Assert.equal(
    syncKeyedScalars[MULTIPLE_STORES_KEYED][expectedKey],
    expectedUint,
    `Multi-store scalar ${MULTIPLE_STORES_KEYED} must have correct value in sync store.`
  );
});

add_task(async function test_multistore_uint() {
  Telemetry.clearScalars();

  // Uint scalars are the only kind with an implicit default value of 0.
  // They shouldn't report any value until set, but if you Add or SetMaximum
  // they pretend that they have been set to 0 for the purposes of that operation.

  function assertNotIn() {
    let mainScalars = getParentSnapshot("main");
    let syncScalars = getParentSnapshot("sync");

    if (!mainScalars && !syncScalars) {
      Assert.ok(true, "No scalars at all");
    } else {
      Assert.ok(
        !(MULTIPLE_STORES in mainScalars) && !(MULTIPLE_STORES in syncScalars),
        `Multi-store scalar ${MULTIPLE_STORES} must not have an initial value in either store.`
      );
    }
  }
  assertNotIn();

  // Test that Add operates on implicit 0.
  Telemetry.scalarAdd(MULTIPLE_STORES, 1);

  function assertBothEqual(val, clear = false) {
    let mainScalars = getParentSnapshot("main", false, clear);
    let syncScalars = getParentSnapshot("sync", false, clear);

    Assert.ok(
      MULTIPLE_STORES in mainScalars && MULTIPLE_STORES in syncScalars,
      `Multi-store scalar ${MULTIPLE_STORES} must be in both main and sync snapshots.`
    );
    Assert.equal(
      mainScalars[MULTIPLE_STORES],
      val,
      `Multi-store scalar ${MULTIPLE_STORES} must have the correct value in main store.`
    );
    Assert.equal(
      syncScalars[MULTIPLE_STORES],
      val,
      `Multi-store scalar ${MULTIPLE_STORES} must have the correct value in sync store.`
    );
  }

  assertBothEqual(1, true /* clear */);

  assertNotIn();

  // Test that SetMaximum operates on implicit 0.
  Telemetry.scalarSetMaximum(MULTIPLE_STORES, 1337);
  assertBothEqual(1337);

  // Test that Add works, since we're in the neighbourhood.
  Telemetry.scalarAdd(MULTIPLE_STORES, 1);
  assertBothEqual(1338, true /* clear */);

  assertNotIn();

  // Test that clearing individual stores works
  // and that afterwards the values are managed independently.
  Telemetry.scalarAdd(MULTIPLE_STORES, 1234);
  assertBothEqual(1234);
  let syncScalars = getParentSnapshot(
    "sync",
    false /* keyed */,
    true /* clear */
  );
  Assert.equal(
    syncScalars[MULTIPLE_STORES],
    1234,
    `Multi-store scalar ${MULTIPLE_STORES} must be present in a second snapshot.`
  );
  syncScalars = getParentSnapshot("sync");
  Assert.equal(
    syncScalars,
    undefined,
    `Multi-store scalar ${MULTIPLE_STORES} must not be present after clearing.`
  );
  let mainScalars = getParentSnapshot("main");
  Assert.equal(
    mainScalars[MULTIPLE_STORES],
    1234,
    `Multi-store scalar ${MULTIPLE_STORES} must maintain value in main store after sync store is cleared.`
  );

  Telemetry.scalarSetMaximum(MULTIPLE_STORES, 1);
  syncScalars = getParentSnapshot("sync");
  Assert.equal(
    syncScalars[MULTIPLE_STORES],
    1,
    `Multi-store scalar ${MULTIPLE_STORES} must return to using implicit 0 for setMax operation.`
  );
  mainScalars = getParentSnapshot("main");
  Assert.equal(
    mainScalars[MULTIPLE_STORES],
    1234,
    `Multi-store scalar ${MULTIPLE_STORES} must retain old value.`
  );

  Telemetry.scalarAdd(MULTIPLE_STORES, 1);
  syncScalars = getParentSnapshot("sync");
  Assert.equal(
    syncScalars[MULTIPLE_STORES],
    2,
    `Multi-store scalar ${MULTIPLE_STORES} must manage independently for add operations.`
  );
  mainScalars = getParentSnapshot("main");
  Assert.equal(
    mainScalars[MULTIPLE_STORES],
    1235,
    `Multi-store scalar ${MULTIPLE_STORES} must add properly.`
  );

  Telemetry.scalarSet(MULTIPLE_STORES, 9876);
  assertBothEqual(9876);
});

add_task(async function test_empty_absence() {
  // Current semantics are we don't snapshot empty things.
  // So no {parent: {}, ...}. Instead {...}.

  Telemetry.clearScalars();

  Telemetry.scalarSet(MULTIPLE_STORES, 1);
  let snapshot = getParentSnapshot("main", false /* keyed */, true /* clear */);

  Assert.ok(
    MULTIPLE_STORES in snapshot,
    `${MULTIPLE_STORES} must be in the snapshot.`
  );
  Assert.equal(
    snapshot[MULTIPLE_STORES],
    1,
    `${MULTIPLE_STORES} must have the correct value.`
  );

  snapshot = getParentSnapshot("main", false /* keyed */, true /* clear */);
  Assert.equal(
    snapshot,
    undefined,
    `Parent snapshot must be empty if no data.`
  );

  snapshot = getParentSnapshot("sync", false /* keyed */, true /* clear */);
  Assert.ok(
    MULTIPLE_STORES in snapshot,
    `${MULTIPLE_STORES} must be in the sync snapshot.`
  );
  Assert.equal(
    snapshot[MULTIPLE_STORES],
    1,
    `${MULTIPLE_STORES} must have the correct value in the sync snapshot.`
  );
});

add_task(async function test_empty_absence_keyed() {
  // Current semantics are we don't snapshot empty things.
  // So no {parent: {}, ...}. Instead {...}.
  // And for Keyed Scalars, no {parent: { keyed_scalar: {} }, ...}. Just {...}.

  Telemetry.clearScalars();

  const key = "just a key, y'know";
  Telemetry.keyedScalarSet(MULTIPLE_STORES_KEYED, key, 1);
  let snapshot = getParentSnapshot("main", true /* keyed */, true /* clear */);

  Assert.ok(
    MULTIPLE_STORES_KEYED in snapshot,
    `${MULTIPLE_STORES_KEYED} must be in the snapshot.`
  );
  Assert.ok(
    key in snapshot[MULTIPLE_STORES_KEYED],
    `${MULTIPLE_STORES_KEYED} must have the stored key.`
  );
  Assert.equal(
    snapshot[MULTIPLE_STORES_KEYED][key],
    1,
    `${MULTIPLE_STORES_KEYED}[${key}] should have the correct value.`
  );

  snapshot = getParentSnapshot("main", true /* keyed */);
  Assert.equal(
    snapshot,
    undefined,
    `Parent snapshot should be empty if no data.`
  );
  snapshot = getParentSnapshot("sync", true /* keyed */);

  Assert.ok(
    MULTIPLE_STORES_KEYED in snapshot,
    `${MULTIPLE_STORES_KEYED} must be in the sync snapshot.`
  );
  Assert.ok(
    key in snapshot[MULTIPLE_STORES_KEYED],
    `${MULTIPLE_STORES_KEYED} must have the stored key.`
  );
  Assert.equal(
    snapshot[MULTIPLE_STORES_KEYED][key],
    1,
    `${MULTIPLE_STORES_KEYED}[${key}] should have the correct value.`
  );
});

add_task(async function test_multistore_default_values() {
  Telemetry.clearScalars();

  const expectedUint = 3785;
  const expectedKey = "some key";
  Telemetry.scalarSet(MAIN_ONLY, expectedUint);
  Telemetry.scalarSet(SYNC_ONLY, expectedUint);
  Telemetry.scalarSet(MULTIPLE_STORES, expectedUint);
  Telemetry.keyedScalarSet(MULTIPLE_STORES_KEYED, expectedKey, expectedUint);

  let mainScalars;
  let mainKeyedScalars;

  // Getting snapshot and NOT clearing (using default values for optional parameters)
  mainScalars = Telemetry.getSnapshotForScalars().parent;
  mainKeyedScalars = Telemetry.getSnapshotForKeyedScalars().parent;

  Assert.equal(
    mainScalars[MAIN_ONLY],
    expectedUint,
    `Main-store scalar ${MAIN_ONLY} must have correct value.`
  );
  Assert.ok(
    !(SYNC_ONLY in mainScalars),
    `Sync-store scalar ${SYNC_ONLY} must not be in main snapshot.`
  );
  Assert.equal(
    mainScalars[MULTIPLE_STORES],
    expectedUint,
    `Multi-store scalar ${MULTIPLE_STORES} must have correct value in main store.`
  );
  Assert.equal(
    mainKeyedScalars[MULTIPLE_STORES_KEYED][expectedKey],
    expectedUint,
    `Multi-store scalar ${MULTIPLE_STORES_KEYED} must have correct value in main store.`
  );

  // Getting snapshot and clearing
  mainScalars = Telemetry.getSnapshotForScalars("main", true).parent;
  mainKeyedScalars = Telemetry.getSnapshotForKeyedScalars("main", true).parent;

  Assert.equal(
    mainScalars[MAIN_ONLY],
    expectedUint,
    `Main-store scalar ${MAIN_ONLY} must have correct value.`
  );
  Assert.ok(
    !(SYNC_ONLY in mainScalars),
    `Sync-store scalar ${SYNC_ONLY} must not be in main snapshot.`
  );
  Assert.equal(
    mainScalars[MULTIPLE_STORES],
    expectedUint,
    `Multi-store scalar ${MULTIPLE_STORES} must have correct value in main store.`
  );
  Assert.equal(
    mainKeyedScalars[MULTIPLE_STORES_KEYED][expectedKey],
    expectedUint,
    `Multi-store scalar ${MULTIPLE_STORES_KEYED} must have correct value in main store.`
  );

  // Getting snapshot (with default values), should be empty now
  mainScalars = Telemetry.getSnapshotForScalars().parent || {};
  mainKeyedScalars = Telemetry.getSnapshotForKeyedScalars().parent || {};

  Assert.ok(
    !(MAIN_ONLY in mainScalars),
    `Main-store scalar ${MAIN_ONLY} must not be in main snapshot.`
  );
  Assert.ok(
    !(MULTIPLE_STORES in mainScalars),
    `Multi-store scalar ${MULTIPLE_STORES} must not be in main snapshot.`
  );
  Assert.ok(
    !(MULTIPLE_STORES_KEYED in mainKeyedScalars),
    `Multi-store scalar ${MULTIPLE_STORES_KEYED} must not be in main snapshot.`
  );
});